@manifoldco/ui
Advanced tools
Comparing version 0.0.17-alpha.0 to 0.0.17-alpha.1
@@ -39,2 +39,7 @@ { | ||
{ | ||
"name": "preserveEvent", | ||
"type": "Boolean", | ||
"attr": "preserve-event" | ||
}, | ||
{ | ||
"name": "product", | ||
@@ -271,2 +276,41 @@ "attr": "product" | ||
{ | ||
"tag": "manifold-data-resource-list", | ||
"dependencies": [ | ||
"context-consumer" | ||
], | ||
"componentClass": "ManifoldDataResourceList", | ||
"componentPath": "components/manifold-data-resource-list/manifold-data-resource-list.js", | ||
"styles": {}, | ||
"props": [ | ||
{ | ||
"name": "connection", | ||
"attr": "connection" | ||
}, | ||
{ | ||
"name": "linkFormat", | ||
"type": "String", | ||
"attr": "link-format" | ||
}, | ||
{ | ||
"name": "preserveEvent", | ||
"type": "Boolean", | ||
"attr": "preserve-event" | ||
} | ||
], | ||
"states": [ | ||
{ | ||
"name": "resources" | ||
} | ||
], | ||
"hostElement": { | ||
"name": "el" | ||
}, | ||
"events": [ | ||
{ | ||
"event": "manifold-resourceList-click", | ||
"method": "clickEvent" | ||
} | ||
] | ||
}, | ||
{ | ||
"tag": "manifold-featured-service", | ||
@@ -485,2 +529,7 @@ "dependencies": [], | ||
{ | ||
"name": "preserveEvent", | ||
"type": "Boolean", | ||
"attr": "preserve-event" | ||
}, | ||
{ | ||
"name": "products", | ||
@@ -551,2 +600,7 @@ "type": "String", | ||
{ | ||
"name": "preserveEvent", | ||
"type": "Boolean", | ||
"attr": "preserve-event" | ||
}, | ||
{ | ||
"name": "products", | ||
@@ -759,2 +813,7 @@ "attr": "products" | ||
{ | ||
"name": "preserveEvent", | ||
"type": "Boolean", | ||
"attr": "preserve-event" | ||
}, | ||
{ | ||
"name": "product", | ||
@@ -849,2 +908,7 @@ "attr": "product" | ||
{ | ||
"name": "preserveEvent", | ||
"type": "Boolean", | ||
"attr": "preserve-event" | ||
}, | ||
{ | ||
"name": "productLabel", | ||
@@ -1170,2 +1234,7 @@ "type": "String", | ||
{ | ||
"name": "preserveEvent", | ||
"type": "Boolean", | ||
"attr": "preserve-event" | ||
}, | ||
{ | ||
"name": "productId", | ||
@@ -1219,2 +1288,7 @@ "type": "String", | ||
"attr": "link-format" | ||
}, | ||
{ | ||
"name": "preserveEvent", | ||
"type": "Boolean", | ||
"attr": "preserve-event" | ||
} | ||
@@ -1221,0 +1295,0 @@ ], |
export class ManifoldActivePlan { | ||
constructor() { | ||
this.plans = []; | ||
this.preserveEvent = false; | ||
this.selectPlan = (planId) => { | ||
@@ -17,3 +18,3 @@ this.selectedPlanId = planId; | ||
h("div", null, | ||
h("manifold-plan-details", { hideCta: this.hideCta, isExistingResource: this.isExistingResource, linkFormat: this.linkFormat, plan: this.plans.find(plan => plan.id === this.selectedPlanId), product: this.product, regions: this.regions })), | ||
h("manifold-plan-details", { hideCta: this.hideCta, isExistingResource: this.isExistingResource, linkFormat: this.linkFormat, plan: this.plans.find(plan => plan.id === this.selectedPlanId), preserveEvent: this.preserveEvent, product: this.product, regions: this.regions })), | ||
]; | ||
@@ -40,2 +41,6 @@ } | ||
}, | ||
"preserveEvent": { | ||
"type": Boolean, | ||
"attr": "preserve-event" | ||
}, | ||
"product": { | ||
@@ -42,0 +47,0 @@ "type": "Any", |
@@ -9,2 +9,3 @@ import serviceTemplates from '../../data/templates'; | ||
this.hideTemplates = false; | ||
this.preserveEvent = false; | ||
this.products = []; | ||
@@ -42,3 +43,3 @@ this.services = []; | ||
}; | ||
this.renderServiceCard = ({ id, body: { name, tagline, label, logo_url }, }) => (h("manifold-service-card", { "data-label": label, description: tagline, isFeatured: this.featured && this.featured.includes(label), label: label, linkFormat: this.linkFormat, logo: logo_url, name: name, productId: id })); | ||
this.renderServiceCard = ({ id, body: { name, tagline, label, logo_url }, }) => (h("manifold-service-card", { "data-label": label, description: tagline, isFeatured: this.featured && this.featured.includes(label), label: label, linkFormat: this.linkFormat, logo: logo_url, name: name, preserveEvent: this.preserveEvent, productId: id })); | ||
} | ||
@@ -118,3 +119,3 @@ componentWillLoad() { | ||
this.categorizedServices(category).map(service => this.renderServiceCard(service)), | ||
!this.hideTemplates && (h("manifold-template-card", { category: category, linkFormat: this.linkFormat })), | ||
!this.hideTemplates && (h("manifold-template-card", { category: category, preserveEvent: this.preserveEvent, linkFormat: this.linkFormat })), | ||
]) | ||
@@ -159,2 +160,6 @@ : this.filteredServices.map(service => this.renderServiceCard(service)), | ||
}, | ||
"preserveEvent": { | ||
"type": Boolean, | ||
"attr": "preserve-event" | ||
}, | ||
"products": { | ||
@@ -161,0 +166,0 @@ "type": "Any", |
@@ -9,2 +9,3 @@ import Tunnel from '../../data/connection'; | ||
this.hideCategories = false; | ||
this.preserveEvent = false; | ||
this.parsedExcludes = []; | ||
@@ -33,3 +34,3 @@ this.parsedFeatured = []; | ||
render() { | ||
return (h("manifold-marketplace-grid", { excludes: this.parsedExcludes, featured: this.parsedFeatured, hideCategories: this.hideCategories, hideTemplates: this.hideTemplates, linkFormat: this.linkFormat, products: this.parsedProducts, services: this.services })); | ||
return (h("manifold-marketplace-grid", { excludes: this.parsedExcludes, featured: this.parsedFeatured, hideCategories: this.hideCategories, hideTemplates: this.hideTemplates, linkFormat: this.linkFormat, preserveEvent: this.preserveEvent, products: this.parsedProducts, services: this.services })); | ||
} | ||
@@ -74,2 +75,6 @@ static get is() { return "manifold-marketplace"; } | ||
}, | ||
"preserveEvent": { | ||
"type": Boolean, | ||
"attr": "preserve-event" | ||
}, | ||
"products": { | ||
@@ -76,0 +81,0 @@ "type": String, |
@@ -10,6 +10,9 @@ import { arrow_right } from '@manifoldco/icons'; | ||
this.isExistingResource = false; | ||
this.preserveEvent = false; | ||
this.regionId = globalRegion.id; | ||
this.features = {}; | ||
this.onClick = (e) => { | ||
if (!this.linkFormat && this.plan && this.product) { | ||
if (!this.plan || !this.product) | ||
return; | ||
if (!this.linkFormat || this.preserveEvent) { | ||
e.preventDefault(); | ||
@@ -118,3 +121,3 @@ const detail = { | ||
return undefined; | ||
if (typeof this.linkFormat !== 'string') | ||
if (!this.linkFormat || this.preserveEvent) | ||
return undefined; | ||
@@ -207,2 +210,6 @@ const params = new URLSearchParams(); | ||
}, | ||
"preserveEvent": { | ||
"type": Boolean, | ||
"attr": "preserve-event" | ||
}, | ||
"product": { | ||
@@ -209,0 +216,0 @@ "type": "Any", |
@@ -7,2 +7,3 @@ import Tunnel from '../../data/connection'; | ||
this.connection = connections.prod; | ||
this.preserveEvent = false; | ||
} | ||
@@ -30,3 +31,3 @@ regionsChange(newRegions) { | ||
return null; | ||
return (h("manifold-active-plan", { hideCta: this.hideCta, isExistingResource: !!this.resourceId, linkFormat: this.linkFormat, plans: this.plans, product: this.product, regions: this.parsedRegions })); | ||
return (h("manifold-active-plan", { hideCta: this.hideCta, isExistingResource: !!this.resourceId, linkFormat: this.linkFormat, plans: this.plans, preserveEvent: this.preserveEvent, product: this.product, regions: this.parsedRegions })); | ||
} | ||
@@ -57,2 +58,6 @@ static get is() { return "manifold-plan-selector"; } | ||
}, | ||
"preserveEvent": { | ||
"type": Boolean, | ||
"attr": "preserve-event" | ||
}, | ||
"product": { | ||
@@ -59,0 +64,0 @@ "state": true |
@@ -7,5 +7,6 @@ import Tunnel from '../../data/connection'; | ||
this.connection = connections.prod; | ||
this.preserveEvent = false; | ||
this.isFree = false; | ||
this.onClick = (e) => { | ||
if (!this.linkFormat) { | ||
if (!this.linkFormat || this.preserveEvent) { | ||
e.preventDefault(); | ||
@@ -90,2 +91,6 @@ const detail = { | ||
}, | ||
"preserveEvent": { | ||
"type": Boolean, | ||
"attr": "preserve-event" | ||
}, | ||
"productId": { | ||
@@ -92,0 +97,0 @@ "type": String, |
@@ -5,4 +5,5 @@ import { categoryIcon } from '../../utils/marketplace'; | ||
constructor() { | ||
this.preserveEvent = false; | ||
this.onClick = (e) => { | ||
if (!this.linkFormat) { | ||
if (!this.linkFormat || this.preserveEvent) { | ||
e.preventDefault(); | ||
@@ -46,2 +47,6 @@ const detail = { category: this.category }; | ||
"attr": "link-format" | ||
}, | ||
"preserveEvent": { | ||
"type": Boolean, | ||
"attr": "preserve-event" | ||
} | ||
@@ -48,0 +53,0 @@ }; } |
export const connections = { | ||
stage: { | ||
billing: 'https://api.billing.stage.manifold.co/v1', | ||
catalog: 'https://api.catalog.stage.manifold.co/v1', | ||
@@ -8,2 +9,3 @@ gateway: 'https://api.stage.manifold.co/v1', | ||
prod: { | ||
billing: 'https://api.billing.manifold.co/v1', | ||
catalog: 'https://api.catalog.manifold.co/v1', | ||
@@ -10,0 +12,0 @@ gateway: 'https://api.manifold.co/v1', |
// manifold: Host Data, ES Module/es2017 Target | ||
export const COMPONENTS = [["context-consumer","ye0ydyx1",0,[["context",1],["el",64],["renderer",1,0,1,1],["subscribe",1],["unsubscribe",16]]],["manifold-active-plan","6c9p2eol",1,[["hideCta",1,0,"hide-cta",4],["isExistingResource",1,0,"is-existing-resource",4],["linkFormat",1,0,"link-format",2],["plans",1],["product",1],["regions",1],["selectedPlanId",16]],1],["manifold-badge","ttnyxwty",1,0,1],["manifold-connection","fl4e7kon",0,[["env",1,0,1,2]]],["manifold-cost-display","ttnyxwty",1,[["baseCost",1,0,"base-cost",8],["compact",1,0,1,4],["el",64],["isCustomizable",1,0,"is-customizable",4],["measuredFeatures",1]],1],["manifold-data-product-logo","pjsobluu",0,[["alt",1,0,1,2],["connection",1],["el",64],["product",16],["productLabel",1,0,"product-label",2]]],["manifold-data-product-name","lwupmyng",0,[["connection",1],["el",64],["product",16],["productLabel",1,0,"product-label",2]]],["manifold-data-provision-button","r1h1ignk",0,[["connection",1],["el",64],["features",1],["formLabel",1,0,"form-label",2],["inputId",1,0,"input-id",2],["ownerId",1,0,"owner-id",2],["planId",1,0,"plan-id",2],["productId",2,0,"product-id",2],["productLabel",1,0,"product-label",2],["regionId",1,0,"region-id",2],["resourceName",16]]],["manifold-featured-service","ttnyxwty",1,[["logo",1,0,1,2],["name",1,0,1,2],["productGradient",1,0,"product-gradient",2]],1],["manifold-icon","llrkhz7d",1,[["color",1,0,1,2],["element",64],["gradient",1,0,1,2],["icon",1,0,1,2],["marginLeft",1,0,"margin-left",4],["marginRight",1,0,"margin-right",4],["title",1,0,1,2]],1],["manifold-image-gallery","ttnyxwty",1,[["images",1],["selectedImage",16],["title",1,0,1,2]],1],["manifold-lazy-image","efrzkgln",0,[["alt",1,0,1,2],["itemprop",1,0,1,2],["observer",16],["src",1,0,1,2]]],["manifold-link-button","ttnyxwty",1,[["href",1,0,1,2],["onClick",1],["rel",1,0,1,2],["target",1,0,1,2]],1],["manifold-marketplace","efrzkgln",0,[["connection",1],["el",64],["excludes",1,0,1,2],["featured",1,0,1,2],["hideCategories",1,0,"hide-categories",4],["hideTemplates",1,0,"hide-templates",4],["linkFormat",1,0,"link-format",2],["parsedExcludes",16],["parsedFeatured",16],["parsedProducts",16],["products",1,0,1,2],["services",16]]],["manifold-marketplace-grid","efrzkgln",1,[["activeCategory",16],["el",64],["excludes",1],["featured",1],["filter",16],["hideCategories",1,0,"hide-categories",4],["hideTemplates",1,0,"hide-templates",4],["linkFormat",1,0,"link-format",2],["observer",16],["products",1],["scrollToCategory",16],["search",16],["services",1]],1],["manifold-number-input","se7vlh0z",1,[["decrementDisabledLabel",1,0,"decrement-disabled-label",2],["error",1,0,1,2],["increment",1,0,1,8],["incrementDisabledLabel",1,0,"increment-disabled-label",2],["max",1,0,1,8],["min",1,0,1,8],["name",1,0,1,2],["suffix",1,0,1,2],["value",2,0,1,8]],1],["manifold-plan-cost","ttnyxwty",0,[["allFeatures",1],["baseCost",16],["compact",1,0,1,4],["connection",1],["controller",16],["customizable",1,0,1,4],["el",64],["planId",1,0,"plan-id",2],["selectedFeatures",1]]],["manifold-plan-details","se7vlh0z",1,[["features",16],["hideCta",1,0,"hide-cta",4],["isExistingResource",1,0,"is-existing-resource",4],["linkFormat",1,0,"link-format",2],["plan",1],["product",1],["regionId",16],["regions",1]],1],["manifold-plan-menu","6c9p2eol",1,[["plans",1],["selectPlan",1],["selectedPlanId",1,0,"selected-plan-id",2]],1],["manifold-plan-selector","6c9p2eol",0,[["connection",1],["el",64],["hideCta",1,0,"hide-cta",4],["linkFormat",1,0,"link-format",2],["parsedRegions",16],["plans",16],["product",16],["productLabel",1,0,"product-label",2],["regions",1,0,1,2],["resourceId",1,0,"resource-id",2]],1],["manifold-product","6sc6tdt8",0,[["connection",1],["el",64],["hideCta",1,0,"hide-cta",4],["linkFormat",1,0,"link-format",2],["product",16],["productLabel",1,0,"product-label",2],["provider",16]]],["manifold-product-details","ttnyxwty",1,[["product",1]],1],["manifold-product-page","ttnyxwty",1,[["hideCta",1,0,"hide-cta",4],["linkFormat",1,0,"link-format",2],["product",1],["provider",1]],1],["manifold-region-selector","se7vlh0z",0,[["allowedRegions",1],["ariaLabel",1,0,"aria-label",2],["connection",1],["el",64],["globalRegion",16],["name",1,0,1,2],["preferredRegions",1],["regions",16],["value",1,0,1,2]]],["manifold-resource-details","p3ogeupb",0,[["connection",1],["el",64],["resource",16],["resourceId",1,0,"resource-id",2]]],["manifold-select","ewbawxtk",1,[["defaultValue",1,0,"default-value",2],["name",1,0,1,2],["options",1],["required",1,0,1,4]],2],["manifold-service-card","efrzkgln",1,[["connection",1],["description",1,0,1,2],["el",64],["isFeatured",1,0,"is-featured",4],["isFree",16],["label",1,0,1,2],["linkFormat",1,0,"link-format",2],["logo",1,0,1,2],["name",1,0,1,2],["productId",1,0,"product-id",2]],1],["manifold-template-card","efrzkgln",1,[["category",1,0,1,2],["linkFormat",1,0,"link-format",2]],1],["manifold-toast","efrzkgln",1,[["alertType",1,0,"alert-type",2],["dismissable",1,0,1,4],["el",64],["icon",1,0,1,2],["lastHeight",16],["observer",16],["status",16]],1],["manifold-toggle","se7vlh0z",1,[["ariaLabelledby",1,0,"aria-labelledby",2],["defaultValue",1,0,"default-value",4],["disabled",1,0,1,4],["label",1,0,1,2],["name",1,0,1,2]],2],["manifold-tooltip","ttnyxwty",1,[["labelText",1,0,"label-text",2]],1]] | ||
export const COMPONENTS = [["context-consumer","ye0ydyx1",0,[["context",1],["el",64],["renderer",1,0,1,1],["subscribe",1],["unsubscribe",16]]],["manifold-active-plan","goleacm3",1,[["hideCta",1,0,"hide-cta",4],["isExistingResource",1,0,"is-existing-resource",4],["linkFormat",1,0,"link-format",2],["plans",1],["preserveEvent",1,0,"preserve-event",4],["product",1],["regions",1],["selectedPlanId",16]],1],["manifold-badge","03ru3o1u",1,0,1],["manifold-connection","zjmcsnd8",0,[["env",1,0,1,2]]],["manifold-cost-display","03ru3o1u",1,[["baseCost",1,0,"base-cost",8],["compact",1,0,1,4],["el",64],["isCustomizable",1,0,"is-customizable",4],["measuredFeatures",1]],1],["manifold-data-product-logo","t3o3uzes",0,[["alt",1,0,1,2],["connection",1],["el",64],["product",16],["productLabel",1,0,"product-label",2]]],["manifold-data-product-name","akvyxd3e",0,[["connection",1],["el",64],["product",16],["productLabel",1,0,"product-label",2]]],["manifold-data-provision-button","guv8xgxj",0,[["connection",1],["el",64],["features",1],["formLabel",1,0,"form-label",2],["inputId",1,0,"input-id",2],["ownerId",1,0,"owner-id",2],["planId",1,0,"plan-id",2],["productId",2,0,"product-id",2],["productLabel",1,0,"product-label",2],["regionId",1,0,"region-id",2],["resourceName",16]]],["manifold-data-resource-list","l630awus",0,[["connection",1],["el",64],["linkFormat",1,0,"link-format",2],["preserveEvent",1,0,"preserve-event",4],["resources",16]]],["manifold-featured-service","03ru3o1u",1,[["logo",1,0,1,2],["name",1,0,1,2],["productGradient",1,0,"product-gradient",2]],1],["manifold-icon","llrkhz7d",1,[["color",1,0,1,2],["element",64],["gradient",1,0,1,2],["icon",1,0,1,2],["marginLeft",1,0,"margin-left",4],["marginRight",1,0,"margin-right",4],["title",1,0,1,2]],1],["manifold-image-gallery","03ru3o1u",1,[["images",1],["selectedImage",16],["title",1,0,1,2]],1],["manifold-lazy-image","umjbzxw0",0,[["alt",1,0,1,2],["itemprop",1,0,1,2],["observer",16],["src",1,0,1,2]]],["manifold-link-button","03ru3o1u",1,[["href",1,0,1,2],["onClick",1],["rel",1,0,1,2],["target",1,0,1,2]],1],["manifold-marketplace","umjbzxw0",0,[["connection",1],["el",64],["excludes",1,0,1,2],["featured",1,0,1,2],["hideCategories",1,0,"hide-categories",4],["hideTemplates",1,0,"hide-templates",4],["linkFormat",1,0,"link-format",2],["parsedExcludes",16],["parsedFeatured",16],["parsedProducts",16],["preserveEvent",1,0,"preserve-event",4],["products",1,0,1,2],["services",16]]],["manifold-marketplace-grid","umjbzxw0",1,[["activeCategory",16],["el",64],["excludes",1],["featured",1],["filter",16],["hideCategories",1,0,"hide-categories",4],["hideTemplates",1,0,"hide-templates",4],["linkFormat",1,0,"link-format",2],["observer",16],["preserveEvent",1,0,"preserve-event",4],["products",1],["scrollToCategory",16],["search",16],["services",1]],1],["manifold-number-input","an2geh4t",1,[["decrementDisabledLabel",1,0,"decrement-disabled-label",2],["error",1,0,1,2],["increment",1,0,1,8],["incrementDisabledLabel",1,0,"increment-disabled-label",2],["max",1,0,1,8],["min",1,0,1,8],["name",1,0,1,2],["suffix",1,0,1,2],["value",2,0,1,8]],1],["manifold-plan-cost","03ru3o1u",0,[["allFeatures",1],["baseCost",16],["compact",1,0,1,4],["connection",1],["controller",16],["customizable",1,0,1,4],["el",64],["planId",1,0,"plan-id",2],["selectedFeatures",1]]],["manifold-plan-details","an2geh4t",1,[["features",16],["hideCta",1,0,"hide-cta",4],["isExistingResource",1,0,"is-existing-resource",4],["linkFormat",1,0,"link-format",2],["plan",1],["preserveEvent",1,0,"preserve-event",4],["product",1],["regionId",16],["regions",1]],1],["manifold-plan-menu","goleacm3",1,[["plans",1],["selectPlan",1],["selectedPlanId",1,0,"selected-plan-id",2]],1],["manifold-plan-selector","goleacm3",0,[["connection",1],["el",64],["hideCta",1,0,"hide-cta",4],["linkFormat",1,0,"link-format",2],["parsedRegions",16],["plans",16],["preserveEvent",1,0,"preserve-event",4],["product",16],["productLabel",1,0,"product-label",2],["regions",1,0,1,2],["resourceId",1,0,"resource-id",2]],1],["manifold-product","miotsssn",0,[["connection",1],["el",64],["hideCta",1,0,"hide-cta",4],["linkFormat",1,0,"link-format",2],["product",16],["productLabel",1,0,"product-label",2],["provider",16]]],["manifold-product-details","03ru3o1u",1,[["product",1]],1],["manifold-product-page","03ru3o1u",1,[["hideCta",1,0,"hide-cta",4],["linkFormat",1,0,"link-format",2],["product",1],["provider",1]],1],["manifold-region-selector","an2geh4t",0,[["allowedRegions",1],["ariaLabel",1,0,"aria-label",2],["connection",1],["el",64],["globalRegion",16],["name",1,0,1,2],["preferredRegions",1],["regions",16],["value",1,0,1,2]]],["manifold-resource-details","8mh2f5jc",0,[["connection",1],["el",64],["resource",16],["resourceId",1,0,"resource-id",2]]],["manifold-select","ewbawxtk",1,[["defaultValue",1,0,"default-value",2],["name",1,0,1,2],["options",1],["required",1,0,1,4]],2],["manifold-service-card","umjbzxw0",1,[["connection",1],["description",1,0,1,2],["el",64],["isFeatured",1,0,"is-featured",4],["isFree",16],["label",1,0,1,2],["linkFormat",1,0,"link-format",2],["logo",1,0,1,2],["name",1,0,1,2],["preserveEvent",1,0,"preserve-event",4],["productId",1,0,"product-id",2]],1],["manifold-template-card","umjbzxw0",1,[["category",1,0,1,2],["linkFormat",1,0,"link-format",2],["preserveEvent",1,0,"preserve-event",4]],1],["manifold-toast","umjbzxw0",1,[["alertType",1,0,"alert-type",2],["dismissable",1,0,1,4],["el",64],["icon",1,0,1,2],["lastHeight",16],["observer",16],["status",16]],1],["manifold-toggle","an2geh4t",1,[["ariaLabelledby",1,0,"aria-labelledby",2],["defaultValue",1,0,"default-value",4],["disabled",1,0,1,4],["label",1,0,1,2],["name",1,0,1,2]],2],["manifold-tooltip","03ru3o1u",1,[["labelText",1,0,"label-text",2]],1]] |
// manifold: Host Data, ES Module/es5 Target | ||
export var COMPONENTS = [["context-consumer","ye0ydyx1",0,[["context",1],["el",64],["renderer",1,0,1,1],["subscribe",1],["unsubscribe",16]]],["manifold-active-plan","6c9p2eol",1,[["hideCta",1,0,"hide-cta",4],["isExistingResource",1,0,"is-existing-resource",4],["linkFormat",1,0,"link-format",2],["plans",1],["product",1],["regions",1],["selectedPlanId",16]],1],["manifold-badge","ttnyxwty",1,0,1],["manifold-connection","fl4e7kon",0,[["env",1,0,1,2]]],["manifold-cost-display","ttnyxwty",1,[["baseCost",1,0,"base-cost",8],["compact",1,0,1,4],["el",64],["isCustomizable",1,0,"is-customizable",4],["measuredFeatures",1]],1],["manifold-data-product-logo","pjsobluu",0,[["alt",1,0,1,2],["connection",1],["el",64],["product",16],["productLabel",1,0,"product-label",2]]],["manifold-data-product-name","lwupmyng",0,[["connection",1],["el",64],["product",16],["productLabel",1,0,"product-label",2]]],["manifold-data-provision-button","r1h1ignk",0,[["connection",1],["el",64],["features",1],["formLabel",1,0,"form-label",2],["inputId",1,0,"input-id",2],["ownerId",1,0,"owner-id",2],["planId",1,0,"plan-id",2],["productId",2,0,"product-id",2],["productLabel",1,0,"product-label",2],["regionId",1,0,"region-id",2],["resourceName",16]]],["manifold-featured-service","ttnyxwty",1,[["logo",1,0,1,2],["name",1,0,1,2],["productGradient",1,0,"product-gradient",2]],1],["manifold-icon","llrkhz7d",1,[["color",1,0,1,2],["element",64],["gradient",1,0,1,2],["icon",1,0,1,2],["marginLeft",1,0,"margin-left",4],["marginRight",1,0,"margin-right",4],["title",1,0,1,2]],1],["manifold-image-gallery","ttnyxwty",1,[["images",1],["selectedImage",16],["title",1,0,1,2]],1],["manifold-lazy-image","efrzkgln",0,[["alt",1,0,1,2],["itemprop",1,0,1,2],["observer",16],["src",1,0,1,2]]],["manifold-link-button","ttnyxwty",1,[["href",1,0,1,2],["onClick",1],["rel",1,0,1,2],["target",1,0,1,2]],1],["manifold-marketplace","efrzkgln",0,[["connection",1],["el",64],["excludes",1,0,1,2],["featured",1,0,1,2],["hideCategories",1,0,"hide-categories",4],["hideTemplates",1,0,"hide-templates",4],["linkFormat",1,0,"link-format",2],["parsedExcludes",16],["parsedFeatured",16],["parsedProducts",16],["products",1,0,1,2],["services",16]]],["manifold-marketplace-grid","efrzkgln",1,[["activeCategory",16],["el",64],["excludes",1],["featured",1],["filter",16],["hideCategories",1,0,"hide-categories",4],["hideTemplates",1,0,"hide-templates",4],["linkFormat",1,0,"link-format",2],["observer",16],["products",1],["scrollToCategory",16],["search",16],["services",1]],1],["manifold-number-input","se7vlh0z",1,[["decrementDisabledLabel",1,0,"decrement-disabled-label",2],["error",1,0,1,2],["increment",1,0,1,8],["incrementDisabledLabel",1,0,"increment-disabled-label",2],["max",1,0,1,8],["min",1,0,1,8],["name",1,0,1,2],["suffix",1,0,1,2],["value",2,0,1,8]],1],["manifold-plan-cost","ttnyxwty",0,[["allFeatures",1],["baseCost",16],["compact",1,0,1,4],["connection",1],["controller",16],["customizable",1,0,1,4],["el",64],["planId",1,0,"plan-id",2],["selectedFeatures",1]]],["manifold-plan-details","se7vlh0z",1,[["features",16],["hideCta",1,0,"hide-cta",4],["isExistingResource",1,0,"is-existing-resource",4],["linkFormat",1,0,"link-format",2],["plan",1],["product",1],["regionId",16],["regions",1]],1],["manifold-plan-menu","6c9p2eol",1,[["plans",1],["selectPlan",1],["selectedPlanId",1,0,"selected-plan-id",2]],1],["manifold-plan-selector","6c9p2eol",0,[["connection",1],["el",64],["hideCta",1,0,"hide-cta",4],["linkFormat",1,0,"link-format",2],["parsedRegions",16],["plans",16],["product",16],["productLabel",1,0,"product-label",2],["regions",1,0,1,2],["resourceId",1,0,"resource-id",2]],1],["manifold-product","6sc6tdt8",0,[["connection",1],["el",64],["hideCta",1,0,"hide-cta",4],["linkFormat",1,0,"link-format",2],["product",16],["productLabel",1,0,"product-label",2],["provider",16]]],["manifold-product-details","ttnyxwty",1,[["product",1]],1],["manifold-product-page","ttnyxwty",1,[["hideCta",1,0,"hide-cta",4],["linkFormat",1,0,"link-format",2],["product",1],["provider",1]],1],["manifold-region-selector","se7vlh0z",0,[["allowedRegions",1],["ariaLabel",1,0,"aria-label",2],["connection",1],["el",64],["globalRegion",16],["name",1,0,1,2],["preferredRegions",1],["regions",16],["value",1,0,1,2]]],["manifold-resource-details","p3ogeupb",0,[["connection",1],["el",64],["resource",16],["resourceId",1,0,"resource-id",2]]],["manifold-select","ewbawxtk",1,[["defaultValue",1,0,"default-value",2],["name",1,0,1,2],["options",1],["required",1,0,1,4]],2],["manifold-service-card","efrzkgln",1,[["connection",1],["description",1,0,1,2],["el",64],["isFeatured",1,0,"is-featured",4],["isFree",16],["label",1,0,1,2],["linkFormat",1,0,"link-format",2],["logo",1,0,1,2],["name",1,0,1,2],["productId",1,0,"product-id",2]],1],["manifold-template-card","efrzkgln",1,[["category",1,0,1,2],["linkFormat",1,0,"link-format",2]],1],["manifold-toast","efrzkgln",1,[["alertType",1,0,"alert-type",2],["dismissable",1,0,1,4],["el",64],["icon",1,0,1,2],["lastHeight",16],["observer",16],["status",16]],1],["manifold-toggle","se7vlh0z",1,[["ariaLabelledby",1,0,"aria-labelledby",2],["defaultValue",1,0,"default-value",4],["disabled",1,0,1,4],["label",1,0,1,2],["name",1,0,1,2]],2],["manifold-tooltip","ttnyxwty",1,[["labelText",1,0,"label-text",2]],1]] | ||
export var COMPONENTS = [["context-consumer","ye0ydyx1",0,[["context",1],["el",64],["renderer",1,0,1,1],["subscribe",1],["unsubscribe",16]]],["manifold-active-plan","goleacm3",1,[["hideCta",1,0,"hide-cta",4],["isExistingResource",1,0,"is-existing-resource",4],["linkFormat",1,0,"link-format",2],["plans",1],["preserveEvent",1,0,"preserve-event",4],["product",1],["regions",1],["selectedPlanId",16]],1],["manifold-badge","03ru3o1u",1,0,1],["manifold-connection","zjmcsnd8",0,[["env",1,0,1,2]]],["manifold-cost-display","03ru3o1u",1,[["baseCost",1,0,"base-cost",8],["compact",1,0,1,4],["el",64],["isCustomizable",1,0,"is-customizable",4],["measuredFeatures",1]],1],["manifold-data-product-logo","t3o3uzes",0,[["alt",1,0,1,2],["connection",1],["el",64],["product",16],["productLabel",1,0,"product-label",2]]],["manifold-data-product-name","akvyxd3e",0,[["connection",1],["el",64],["product",16],["productLabel",1,0,"product-label",2]]],["manifold-data-provision-button","guv8xgxj",0,[["connection",1],["el",64],["features",1],["formLabel",1,0,"form-label",2],["inputId",1,0,"input-id",2],["ownerId",1,0,"owner-id",2],["planId",1,0,"plan-id",2],["productId",2,0,"product-id",2],["productLabel",1,0,"product-label",2],["regionId",1,0,"region-id",2],["resourceName",16]]],["manifold-data-resource-list","l630awus",0,[["connection",1],["el",64],["linkFormat",1,0,"link-format",2],["preserveEvent",1,0,"preserve-event",4],["resources",16]]],["manifold-featured-service","03ru3o1u",1,[["logo",1,0,1,2],["name",1,0,1,2],["productGradient",1,0,"product-gradient",2]],1],["manifold-icon","llrkhz7d",1,[["color",1,0,1,2],["element",64],["gradient",1,0,1,2],["icon",1,0,1,2],["marginLeft",1,0,"margin-left",4],["marginRight",1,0,"margin-right",4],["title",1,0,1,2]],1],["manifold-image-gallery","03ru3o1u",1,[["images",1],["selectedImage",16],["title",1,0,1,2]],1],["manifold-lazy-image","umjbzxw0",0,[["alt",1,0,1,2],["itemprop",1,0,1,2],["observer",16],["src",1,0,1,2]]],["manifold-link-button","03ru3o1u",1,[["href",1,0,1,2],["onClick",1],["rel",1,0,1,2],["target",1,0,1,2]],1],["manifold-marketplace","umjbzxw0",0,[["connection",1],["el",64],["excludes",1,0,1,2],["featured",1,0,1,2],["hideCategories",1,0,"hide-categories",4],["hideTemplates",1,0,"hide-templates",4],["linkFormat",1,0,"link-format",2],["parsedExcludes",16],["parsedFeatured",16],["parsedProducts",16],["preserveEvent",1,0,"preserve-event",4],["products",1,0,1,2],["services",16]]],["manifold-marketplace-grid","umjbzxw0",1,[["activeCategory",16],["el",64],["excludes",1],["featured",1],["filter",16],["hideCategories",1,0,"hide-categories",4],["hideTemplates",1,0,"hide-templates",4],["linkFormat",1,0,"link-format",2],["observer",16],["preserveEvent",1,0,"preserve-event",4],["products",1],["scrollToCategory",16],["search",16],["services",1]],1],["manifold-number-input","an2geh4t",1,[["decrementDisabledLabel",1,0,"decrement-disabled-label",2],["error",1,0,1,2],["increment",1,0,1,8],["incrementDisabledLabel",1,0,"increment-disabled-label",2],["max",1,0,1,8],["min",1,0,1,8],["name",1,0,1,2],["suffix",1,0,1,2],["value",2,0,1,8]],1],["manifold-plan-cost","03ru3o1u",0,[["allFeatures",1],["baseCost",16],["compact",1,0,1,4],["connection",1],["controller",16],["customizable",1,0,1,4],["el",64],["planId",1,0,"plan-id",2],["selectedFeatures",1]]],["manifold-plan-details","an2geh4t",1,[["features",16],["hideCta",1,0,"hide-cta",4],["isExistingResource",1,0,"is-existing-resource",4],["linkFormat",1,0,"link-format",2],["plan",1],["preserveEvent",1,0,"preserve-event",4],["product",1],["regionId",16],["regions",1]],1],["manifold-plan-menu","goleacm3",1,[["plans",1],["selectPlan",1],["selectedPlanId",1,0,"selected-plan-id",2]],1],["manifold-plan-selector","goleacm3",0,[["connection",1],["el",64],["hideCta",1,0,"hide-cta",4],["linkFormat",1,0,"link-format",2],["parsedRegions",16],["plans",16],["preserveEvent",1,0,"preserve-event",4],["product",16],["productLabel",1,0,"product-label",2],["regions",1,0,1,2],["resourceId",1,0,"resource-id",2]],1],["manifold-product","miotsssn",0,[["connection",1],["el",64],["hideCta",1,0,"hide-cta",4],["linkFormat",1,0,"link-format",2],["product",16],["productLabel",1,0,"product-label",2],["provider",16]]],["manifold-product-details","03ru3o1u",1,[["product",1]],1],["manifold-product-page","03ru3o1u",1,[["hideCta",1,0,"hide-cta",4],["linkFormat",1,0,"link-format",2],["product",1],["provider",1]],1],["manifold-region-selector","an2geh4t",0,[["allowedRegions",1],["ariaLabel",1,0,"aria-label",2],["connection",1],["el",64],["globalRegion",16],["name",1,0,1,2],["preferredRegions",1],["regions",16],["value",1,0,1,2]]],["manifold-resource-details","8mh2f5jc",0,[["connection",1],["el",64],["resource",16],["resourceId",1,0,"resource-id",2]]],["manifold-select","ewbawxtk",1,[["defaultValue",1,0,"default-value",2],["name",1,0,1,2],["options",1],["required",1,0,1,4]],2],["manifold-service-card","umjbzxw0",1,[["connection",1],["description",1,0,1,2],["el",64],["isFeatured",1,0,"is-featured",4],["isFree",16],["label",1,0,1,2],["linkFormat",1,0,"link-format",2],["logo",1,0,1,2],["name",1,0,1,2],["preserveEvent",1,0,"preserve-event",4],["productId",1,0,"product-id",2]],1],["manifold-template-card","umjbzxw0",1,[["category",1,0,1,2],["linkFormat",1,0,"link-format",2],["preserveEvent",1,0,"preserve-event",4]],1],["manifold-toast","umjbzxw0",1,[["alertType",1,0,"alert-type",2],["dismissable",1,0,1,4],["el",64],["icon",1,0,1,2],["lastHeight",16],["observer",16],["status",16]],1],["manifold-toggle","an2geh4t",1,[["ariaLabelledby",1,0,"aria-labelledby",2],["defaultValue",1,0,"default-value",4],["disabled",1,0,1,4],["label",1,0,1,2],["name",1,0,1,2]],2],["manifold-tooltip","03ru3o1u",1,[["labelText",1,0,"label-text",2]],1]] |
@@ -1,1 +0,1 @@ | ||
!function(e,t,n,o,i,a,r,l,d,s,c,m,f,u){for(c=e.manifold=e.manifold||{},(m=t.createElement("style")).innerHTML=d+"{visibility:hidden}.hydrated{visibility:inherit}",m.setAttribute("data-styles",""),f=t.head.querySelector("meta[charset]"),t.head.insertBefore(m,f?f.nextSibling:t.head.firstChild),function(e,t,n){(e["s-apps"]=e["s-apps"]||[]).push("manifold"),n.componentOnReady||(n.componentOnReady=function(){var t=this;function n(n){if(t.nodeName.indexOf("-")>0){for(var o=e["s-apps"],i=0,a=0;a<o.length;a++)if(e[o[a]].componentOnReady){if(e[o[a]].componentOnReady(t,n))return;i++}if(i<o.length)return void(e["s-cr"]=e["s-cr"]||[]).push([t,n])}n(null)}return e.Promise?new e.Promise(n):{then:n}})}(e,0,s),i=i||c.resourcesUrl,m=(f=t.querySelectorAll("script")).length-1;m>=0&&!(u=f[m]).src&&!u.hasAttribute("data-resources-url");m--);f=u.getAttribute("data-resources-url"),!i&&f&&(i=f),!i&&u.src&&(i=(f=u.src.split("/").slice(0,-1)).join("/")+(f.length?"/":"")+"manifold/"),m=t.createElement("script"),function(e,t,n,o){return!(t.search.indexOf("core=esm")>0)&&(!(!(t.search.indexOf("core=es5")>0||"file:"===t.protocol)&&e.customElements&&e.customElements.define&&e.fetch&&e.CSS&&e.CSS.supports&&e.CSS.supports("color","var(--c)")&&"noModule"in n)||function(e){try{return new Function('import("")'),!1}catch(e){}return!0}())}(e,e.location,m)?m.src=i+"manifold.berapije.js":(m.src=i+"manifold.milkiwjf.js",m.setAttribute("type","module"),m.setAttribute("crossorigin",!0)),m.setAttribute("data-resources-url",i),m.setAttribute("data-namespace","manifold"),t.head.appendChild(m)}(window,document,0,0,0,0,0,0,"context-consumer,manifold-active-plan,manifold-badge,manifold-connection,manifold-cost-display,manifold-data-product-logo,manifold-data-product-name,manifold-data-provision-button,manifold-featured-service,manifold-icon,manifold-image-gallery,manifold-lazy-image,manifold-link-button,manifold-marketplace,manifold-marketplace-grid,manifold-number-input,manifold-plan-cost,manifold-plan-details,manifold-plan-menu,manifold-plan-selector,manifold-product,manifold-product-details,manifold-product-page,manifold-region-selector,manifold-resource-details,manifold-select,manifold-service-card,manifold-template-card,manifold-toast,manifold-toggle,manifold-tooltip",HTMLElement.prototype); | ||
!function(e,t,n,o,i,a,r,l,d,s,c,m,f,u){for(c=e.manifold=e.manifold||{},(m=t.createElement("style")).innerHTML=d+"{visibility:hidden}.hydrated{visibility:inherit}",m.setAttribute("data-styles",""),f=t.head.querySelector("meta[charset]"),t.head.insertBefore(m,f?f.nextSibling:t.head.firstChild),function(e,t,n){(e["s-apps"]=e["s-apps"]||[]).push("manifold"),n.componentOnReady||(n.componentOnReady=function(){var t=this;function n(n){if(t.nodeName.indexOf("-")>0){for(var o=e["s-apps"],i=0,a=0;a<o.length;a++)if(e[o[a]].componentOnReady){if(e[o[a]].componentOnReady(t,n))return;i++}if(i<o.length)return void(e["s-cr"]=e["s-cr"]||[]).push([t,n])}n(null)}return e.Promise?new e.Promise(n):{then:n}})}(e,0,s),i=i||c.resourcesUrl,m=(f=t.querySelectorAll("script")).length-1;m>=0&&!(u=f[m]).src&&!u.hasAttribute("data-resources-url");m--);f=u.getAttribute("data-resources-url"),!i&&f&&(i=f),!i&&u.src&&(i=(f=u.src.split("/").slice(0,-1)).join("/")+(f.length?"/":"")+"manifold/"),m=t.createElement("script"),function(e,t,n,o){return!(t.search.indexOf("core=esm")>0)&&(!(!(t.search.indexOf("core=es5")>0||"file:"===t.protocol)&&e.customElements&&e.customElements.define&&e.fetch&&e.CSS&&e.CSS.supports&&e.CSS.supports("color","var(--c)")&&"noModule"in n)||function(e){try{return new Function('import("")'),!1}catch(e){}return!0}())}(e,e.location,m)?m.src=i+"manifold.9ivcoadw.js":(m.src=i+"manifold.8zqlogvv.js",m.setAttribute("type","module"),m.setAttribute("crossorigin",!0)),m.setAttribute("data-resources-url",i),m.setAttribute("data-namespace","manifold"),t.head.appendChild(m)}(window,document,0,0,0,0,0,0,"context-consumer,manifold-active-plan,manifold-badge,manifold-connection,manifold-cost-display,manifold-data-product-logo,manifold-data-product-name,manifold-data-provision-button,manifold-data-resource-list,manifold-featured-service,manifold-icon,manifold-image-gallery,manifold-lazy-image,manifold-link-button,manifold-marketplace,manifold-marketplace-grid,manifold-number-input,manifold-plan-cost,manifold-plan-details,manifold-plan-menu,manifold-plan-selector,manifold-product,manifold-product-details,manifold-product-page,manifold-region-selector,manifold-resource-details,manifold-select,manifold-service-card,manifold-template-card,manifold-toast,manifold-toggle,manifold-tooltip",HTMLElement.prototype); |
@@ -26,2 +26,3 @@ /* tslint:disable */ | ||
'plans': Catalog.ExpandedPlan[]; | ||
'preserveEvent': boolean; | ||
'product'?: Catalog.ExpandedProduct; | ||
@@ -35,2 +36,3 @@ 'regions'?: string[]; | ||
'plans'?: Catalog.ExpandedPlan[]; | ||
'preserveEvent'?: boolean; | ||
'product'?: Catalog.ExpandedProduct; | ||
@@ -164,2 +166,32 @@ 'regions'?: string[]; | ||
interface ManifoldDataResourceList { | ||
/** | ||
* _(hidden)_ Passed by `<manifold-connection>` | ||
*/ | ||
'connection': Connection; | ||
/** | ||
* Link format structure, with `:resource` placeholder | ||
*/ | ||
'linkFormat'?: string; | ||
/** | ||
* Should the JS event still fire, even if link-format is passed? | ||
*/ | ||
'preserveEvent': boolean; | ||
} | ||
interface ManifoldDataResourceListAttributes extends StencilHTMLAttributes { | ||
/** | ||
* _(hidden)_ Passed by `<manifold-connection>` | ||
*/ | ||
'connection'?: Connection; | ||
/** | ||
* Link format structure, with `:resource` placeholder | ||
*/ | ||
'linkFormat'?: string; | ||
'onManifold-resourceList-click'?: (event: CustomEvent) => void; | ||
/** | ||
* Should the JS event still fire, even if link-format is passed? | ||
*/ | ||
'preserveEvent'?: boolean; | ||
} | ||
interface ManifoldFeaturedService { | ||
@@ -250,2 +282,3 @@ 'logo': string; | ||
'linkFormat'?: string; | ||
'preserveEvent': boolean; | ||
'products'?: string[]; | ||
@@ -260,2 +293,3 @@ 'services'?: Catalog.Product[]; | ||
'linkFormat'?: string; | ||
'preserveEvent'?: boolean; | ||
'products'?: string[]; | ||
@@ -291,2 +325,6 @@ 'services'?: Catalog.Product[]; | ||
/** | ||
* Should the JS event still fire, even if link-format is passed? | ||
*/ | ||
'preserveEvent': boolean; | ||
/** | ||
* Comma-separated list of shown products (labels) | ||
@@ -322,2 +360,6 @@ */ | ||
/** | ||
* Should the JS event still fire, even if link-format is passed? | ||
*/ | ||
'preserveEvent'?: boolean; | ||
/** | ||
* Comma-separated list of shown products (labels) | ||
@@ -374,2 +416,3 @@ */ | ||
'plan'?: Catalog.ExpandedPlan; | ||
'preserveEvent': boolean; | ||
'product'?: Catalog.Product; | ||
@@ -386,2 +429,3 @@ 'regions'?: string[]; | ||
'plan'?: Catalog.ExpandedPlan; | ||
'preserveEvent'?: boolean; | ||
'product'?: Catalog.Product; | ||
@@ -416,2 +460,6 @@ 'regions'?: string[]; | ||
/** | ||
* Should the JS event still fire, even if link-format is passed? | ||
*/ | ||
'preserveEvent': boolean; | ||
/** | ||
* URL-friendly slug (e.g. `"jawsdb-mysql"`) | ||
@@ -443,2 +491,6 @@ */ | ||
/** | ||
* Should the JS event still fire, even if link-format is passed? | ||
*/ | ||
'preserveEvent'?: boolean; | ||
/** | ||
* URL-friendly slug (e.g. `"jawsdb-mysql"`) | ||
@@ -576,2 +628,3 @@ */ | ||
'name'?: string; | ||
'preserveEvent': boolean; | ||
'productId'?: string; | ||
@@ -588,2 +641,3 @@ } | ||
'onManifold-marketplace-click'?: (event: CustomEvent) => void; | ||
'preserveEvent'?: boolean; | ||
'productId'?: string; | ||
@@ -595,2 +649,3 @@ } | ||
'linkFormat'?: string; | ||
'preserveEvent': boolean; | ||
} | ||
@@ -601,2 +656,3 @@ interface ManifoldTemplateCardAttributes extends StencilHTMLAttributes { | ||
'onManifold-template-click'?: (event: CustomEvent) => void; | ||
'preserveEvent'?: boolean; | ||
} | ||
@@ -666,2 +722,3 @@ | ||
'ManifoldDataProvisionButton': Components.ManifoldDataProvisionButton; | ||
'ManifoldDataResourceList': Components.ManifoldDataResourceList; | ||
'ManifoldFeaturedService': Components.ManifoldFeaturedService; | ||
@@ -700,2 +757,3 @@ 'ManifoldIcon': Components.ManifoldIcon; | ||
'manifold-data-provision-button': Components.ManifoldDataProvisionButtonAttributes; | ||
'manifold-data-resource-list': Components.ManifoldDataResourceListAttributes; | ||
'manifold-featured-service': Components.ManifoldFeaturedServiceAttributes; | ||
@@ -769,2 +827,8 @@ 'manifold-icon': Components.ManifoldIconAttributes; | ||
interface HTMLManifoldDataResourceListElement extends Components.ManifoldDataResourceList, HTMLStencilElement {} | ||
var HTMLManifoldDataResourceListElement: { | ||
prototype: HTMLManifoldDataResourceListElement; | ||
new (): HTMLManifoldDataResourceListElement; | ||
}; | ||
interface HTMLManifoldFeaturedServiceElement extends Components.ManifoldFeaturedService, HTMLStencilElement {} | ||
@@ -916,2 +980,3 @@ var HTMLManifoldFeaturedServiceElement: { | ||
'manifold-data-provision-button': HTMLManifoldDataProvisionButtonElement | ||
'manifold-data-resource-list': HTMLManifoldDataResourceListElement | ||
'manifold-featured-service': HTMLManifoldFeaturedServiceElement | ||
@@ -950,2 +1015,3 @@ 'manifold-icon': HTMLManifoldIconElement | ||
'manifold-data-provision-button': HTMLManifoldDataProvisionButtonElement; | ||
'manifold-data-resource-list': HTMLManifoldDataResourceListElement; | ||
'manifold-featured-service': HTMLManifoldFeaturedServiceElement; | ||
@@ -952,0 +1018,0 @@ 'manifold-icon': HTMLManifoldIconElement; |
@@ -7,2 +7,3 @@ import '../../stencil.core'; | ||
plans: Catalog.ExpandedPlan[]; | ||
preserveEvent: boolean; | ||
product?: Catalog.ExpandedProduct; | ||
@@ -9,0 +10,0 @@ regions?: string[]; |
@@ -9,2 +9,3 @@ import '../../stencil.core'; | ||
linkFormat?: string; | ||
preserveEvent: boolean; | ||
products?: string[]; | ||
@@ -11,0 +12,0 @@ services?: Catalog.Product[]; |
@@ -17,2 +17,4 @@ import '../../stencil.core'; | ||
linkFormat?: string; | ||
/** Should the JS event still fire, even if link-format is passed? */ | ||
preserveEvent: boolean; | ||
/** Comma-separated list of shown products (labels) */ | ||
@@ -19,0 +21,0 @@ products?: string; |
@@ -8,2 +8,3 @@ import '../../stencil.core'; | ||
plan?: Catalog.ExpandedPlan; | ||
preserveEvent: boolean; | ||
product?: Catalog.Product; | ||
@@ -10,0 +11,0 @@ regions?: string[]; |
@@ -11,2 +11,4 @@ import '../../stencil.core'; | ||
linkFormat?: string; | ||
/** Should the JS event still fire, even if link-format is passed? */ | ||
preserveEvent: boolean; | ||
/** URL-friendly slug (e.g. `"jawsdb-mysql"`) */ | ||
@@ -13,0 +15,0 @@ productLabel: string; |
@@ -11,5 +11,6 @@ import '../../stencil.core'; | ||
label?: string; | ||
linkFormat?: string; | ||
logo?: string; | ||
preserveEvent: boolean; | ||
productId?: string; | ||
linkFormat?: string; | ||
isFree: boolean; | ||
@@ -16,0 +17,0 @@ marketplaceClick: EventEmitter; |
@@ -7,2 +7,3 @@ import '../../stencil.core'; | ||
linkFormat?: string; | ||
preserveEvent: boolean; | ||
readonly formattedLink: string; | ||
@@ -9,0 +10,0 @@ onClick: (e: Event) => void; |
export interface Connection { | ||
billing: string; | ||
catalog: string; | ||
@@ -3,0 +4,0 @@ gateway: string; |
@@ -21,2 +21,7 @@ { | ||
"required": false | ||
}, | ||
{ | ||
"label": "preserve-event", | ||
"description": "", | ||
"required": false | ||
} | ||
@@ -131,2 +136,18 @@ ] | ||
{ | ||
"label": "manifold-data-resource-list", | ||
"description": "Creates an unstyled, unordered list with `<a>` tags.\n\n```html\n<manifold-data-resource-list />\n```", | ||
"attributes": [ | ||
{ | ||
"label": "link-format", | ||
"description": "Link format structure, with `:resource` placeholder", | ||
"required": false | ||
}, | ||
{ | ||
"label": "preserve-event", | ||
"description": "Should the JS event still fire, even if link-format is passed?", | ||
"required": false | ||
} | ||
] | ||
}, | ||
{ | ||
"label": "manifold-featured-service", | ||
@@ -259,2 +280,7 @@ "description": "", | ||
"required": false | ||
}, | ||
{ | ||
"label": "preserve-event", | ||
"description": "", | ||
"required": false | ||
} | ||
@@ -293,2 +319,7 @@ ] | ||
{ | ||
"label": "preserve-event", | ||
"description": "Should the JS event still fire, even if link-format is passed?", | ||
"required": false | ||
}, | ||
{ | ||
"label": "products", | ||
@@ -390,2 +421,7 @@ "description": "Comma-separated list of shown products (labels)", | ||
"required": false | ||
}, | ||
{ | ||
"label": "preserve-event", | ||
"description": "", | ||
"required": false | ||
} | ||
@@ -420,2 +456,7 @@ ] | ||
{ | ||
"label": "preserve-event", | ||
"description": "Should the JS event still fire, even if link-format is passed?", | ||
"required": false | ||
}, | ||
{ | ||
"label": "product-label", | ||
@@ -567,2 +608,7 @@ "description": "URL-friendly slug (e.g. `\"jawsdb-mysql\"`)", | ||
{ | ||
"label": "preserve-event", | ||
"description": "", | ||
"required": false | ||
}, | ||
{ | ||
"label": "product-id", | ||
@@ -587,2 +633,7 @@ "description": "", | ||
"required": false | ||
}, | ||
{ | ||
"label": "preserve-event", | ||
"description": "", | ||
"required": false | ||
} | ||
@@ -589,0 +640,0 @@ ] |
@@ -54,3 +54,3 @@ { | ||
}, | ||
"version": "0.0.17-alpha.0" | ||
"version": "0.0.17-alpha.1" | ||
} |
1705755
306
18495
128