@manifoldco/manifold-init
Advanced tools
Comparing version 0.7.2 to 0.7.3
@@ -5,4 +5,4 @@ 'use strict'; | ||
const index = require('./index-1ab6c73d.js'); | ||
const core = require('./core-d44bce36.js'); | ||
const index = require('./index-68e739cb.js'); | ||
const core = require('./core-ed75bb53.js'); | ||
@@ -44,3 +44,3 @@ const ConnectedButton = class { | ||
version: 0, | ||
componentVersion: '0.7.2', | ||
componentVersion: '0.7.3', | ||
}); | ||
@@ -47,0 +47,0 @@ } |
@@ -5,3 +5,3 @@ 'use strict'; | ||
const core = require('./core-d44bce36.js'); | ||
const core = require('./core-ed75bb53.js'); | ||
@@ -8,0 +8,0 @@ |
@@ -5,3 +5,3 @@ 'use strict'; | ||
const index = require('./index-1ab6c73d.js'); | ||
const index = require('./index-68e739cb.js'); | ||
@@ -8,0 +8,0 @@ const defineCustomElements = (win, options) => index.patchEsm().then(() => { |
'use strict'; | ||
const index = require('./index-1ab6c73d.js'); | ||
const index = require('./index-68e739cb.js'); | ||
@@ -5,0 +5,0 @@ index.patchBrowser().then(options => { |
@@ -8,3 +8,3 @@ { | ||
"name": "@stencil/core", | ||
"version": "1.12.3", | ||
"version": "1.12.4", | ||
"typescriptVersion": "3.8.3" | ||
@@ -11,0 +11,0 @@ }, |
@@ -37,4 +37,4 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { | ||
}; | ||
import { r as registerInstance, h, g as getElement, c as createEvent } from './index-19d1abb4.js'; | ||
import { i as initialize } from './core-6104b230.js'; | ||
import { r as registerInstance, h, g as getElement, c as createEvent } from './index-2b32c7ac.js'; | ||
import { i as initialize } from './core-2feb1cea.js'; | ||
var ConnectedButton = /** @class */ (function () { | ||
@@ -116,3 +116,3 @@ function class_1(hostRef) { | ||
version: 0, | ||
componentVersion: '0.7.2', | ||
componentVersion: '0.7.3', | ||
})]; | ||
@@ -119,0 +119,0 @@ case 2: |
@@ -1,3 +0,3 @@ | ||
import { r as registerInstance, h, g as getElement, c as createEvent } from './index-19d1abb4.js'; | ||
import { i as initialize } from './core-6104b230.js'; | ||
import { r as registerInstance, h, g as getElement, c as createEvent } from './index-2b32c7ac.js'; | ||
import { i as initialize } from './core-2feb1cea.js'; | ||
@@ -39,3 +39,3 @@ const ConnectedButton = class { | ||
version: 0, | ||
componentVersion: '0.7.2', | ||
componentVersion: '0.7.3', | ||
}); | ||
@@ -42,0 +42,0 @@ } |
@@ -1,1 +0,1 @@ | ||
export{i as initialize}from"./p-e3a16c65.js"; | ||
export{i as initialize}from"./p-27befac8.js"; |
@@ -1,1 +0,1 @@ | ||
import{p as t,b as e}from"./p-17fe885f.js";t().then(t=>e([["p-f2881f9d",[[0,"connected-button",{success:[32],badRequest:[32],unauthenticated:[32],planCost:[32]}],[0,"manifold-init",{env:[1],authToken:[1025,"auth-token"],authType:[1,"auth-type"],clientId:[1,"client-id"],initialize:[64]}]]]],t)); | ||
import{p as t,b as e}from"./p-84762226.js";t().then(t=>e([["p-c5d480c5",[[0,"connected-button",{success:[32],badRequest:[32],unauthenticated:[32],planCost:[32]}],[0,"manifold-init",{env:[1],authToken:[1025,"auth-token"],authType:[1,"auth-type"],clientId:[1,"client-id"],initialize:[64]}]]]],t)); |
@@ -638,2 +638,3 @@ declare type CustomMethodDecorator<T> = (target: Object, propertyKey: string | symbol, descriptor: TypedPropertyDescriptor<T>) => TypedPropertyDescriptor<T> | void; | ||
slot?: string; | ||
onSlotchange?: (event: Event) => void; | ||
} | ||
@@ -815,3 +816,2 @@ interface AnchorHTMLAttributes<T> extends HTMLAttributes<T> { | ||
indeterminate?: boolean; | ||
inputmode?: string; | ||
list?: string; | ||
@@ -1097,2 +1097,4 @@ max?: number | string; | ||
inputmode?: string; | ||
enterKeyHint?: string; | ||
enterkeyhint?: string; | ||
is?: string; | ||
@@ -1235,2 +1237,3 @@ radioGroup?: string; | ||
'horiz-origin-x'?: number | string; | ||
'href'?: string; | ||
'ideographic'?: number | string; | ||
@@ -1237,0 +1240,0 @@ 'image-rendering'?: number | string; |
@@ -11,2 +11,5 @@ export interface Analytics { | ||
} | ||
interface Payload { | ||
[k: string]: string | number | boolean | Payload; | ||
} | ||
/** | ||
@@ -44,5 +47,3 @@ * Based on `name`, what data should be sent? | ||
name: 'click'; | ||
properties: { | ||
planId: string; | ||
}; | ||
properties: Payload; | ||
}; | ||
@@ -49,0 +50,0 @@ export declare type EventEvent = { |
@@ -19,3 +19,3 @@ { | ||
], | ||
"version": "0.7.2", | ||
"version": "0.7.3", | ||
"description": "Manifold UI Initialization", | ||
@@ -59,3 +59,3 @@ "main": "dist/index.js", | ||
"@types/node": "^13.7.0", | ||
"@types/puppeteer": "1.20.3", | ||
"@types/puppeteer": "2.0.1", | ||
"@typescript-eslint/eslint-plugin": "^1.13.0", | ||
@@ -62,0 +62,0 @@ "@typescript-eslint/parser": "^1.13.0", |
@@ -13,2 +13,6 @@ export interface Analytics { | ||
interface Payload { | ||
[k: string]: string | number | boolean | Payload; | ||
} | ||
/** | ||
@@ -52,5 +56,3 @@ * Based on `name`, what data should be sent? | ||
name: 'click'; | ||
properties: { | ||
planId: string; | ||
}; | ||
properties: Payload; | ||
}; | ||
@@ -57,0 +59,0 @@ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
775051
10573
29