@manifoldco/component-plan-matrix
Advanced tools
Comparing version 0.0.1 to 0.0.2
@@ -5,7 +5,7 @@ 'use strict'; | ||
const core = require('./core-3fc7b630.js'); | ||
const core = require('./core-dcd23087.js'); | ||
const defineCustomElements = (win, options) => { | ||
return core.patchEsm().then(() => { | ||
core.bootstrapLazy([["manifold-button_2.cjs",[[0,"manifold-pricing"],[0,"manifold-button",{"text":[1],"href":[1]}]]]], options); | ||
core.bootstrapLazy([["manifold-button_3.cjs",[[0,"manifold-plan-matrix"],[0,"manifold-button",{"text":[1],"href":[1]}],[0,"manifold-checkbox",{"inputId":[1,"input-id"],"name":[1],"checked":[4]}]]]], options); | ||
}); | ||
@@ -12,0 +12,0 @@ }; |
'use strict'; | ||
const core = require('./core-3fc7b630.js'); | ||
const core = require('./core-dcd23087.js'); | ||
core.patchBrowser().then(options => { | ||
return core.bootstrapLazy([["manifold-button_2.cjs",[[0,"manifold-pricing"],[0,"manifold-button",{"text":[1],"href":[1]}]]]], options); | ||
return core.bootstrapLazy([["manifold-button_3.cjs",[[0,"manifold-plan-matrix"],[0,"manifold-button",{"text":[1],"href":[1]}],[0,"manifold-checkbox",{"inputId":[1,"input-id"],"name":[1],"checked":[4]}]]]], options); | ||
}); |
{ | ||
"entries": [ | ||
"components/manifold-button/manifold-button.js", | ||
"components/manifold-pricing/manifold-pricing.js" | ||
"components/manifold-checkbox/manifold-checkbox.js", | ||
"components/manifold-plan-matrix/manifold-plan-matrix.js" | ||
], | ||
"compiler": { | ||
"name": "@stencil/core", | ||
"version": "1.8.8", | ||
"version": "1.8.9", | ||
"typescriptVersion": "3.7.5" | ||
@@ -10,0 +11,0 @@ }, |
import { h } from "@stencil/core"; | ||
export class ManifoldButton { | ||
render() { | ||
return h("a", { href: this.href }, this.text); | ||
return (h("a", { class: "mp--button", href: this.href }, this.text)); | ||
} | ||
@@ -6,0 +6,0 @@ static get is() { return "manifold-button"; } |
@@ -561,5 +561,5 @@ /* | ||
} | ||
CustomStyle.prototype.initShim = function () { | ||
CustomStyle.prototype.i = function () { | ||
var _this = this; | ||
if (this.didInit) { | ||
if (this.didInit || !this.win.requestAnimationFrame) { | ||
return Promise.resolve(); | ||
@@ -653,8 +653,6 @@ } | ||
}()); | ||
var win = window; | ||
function needsShim() { | ||
return !(win.CSS && win.CSS.supports && win.CSS.supports('color', 'var(--c)')); | ||
} | ||
if (!win.__stencil_cssshim && needsShim()) { | ||
win.__stencil_cssshim = new CustomStyle(win, document); | ||
} | ||
(function (win) { | ||
if (win && !win.__cssshim && (!(win.CSS && win.CSS.supports && win.CSS.supports('color', 'var(--c)')))) { | ||
win.__cssshim = new CustomStyle(win, win.document); | ||
} | ||
})(typeof window !== 'undefined' && window); |
@@ -1,1 +0,1 @@ | ||
import{p as f,b as i}from"./p-e94b0dfb.js";f().then(f=>i([["p-wgcfxzhq",[[0,"manifold-pricing"],[0,"manifold-button",{text:[1],href:[1]}]]]],f)); | ||
import{p as m,b as a}from"./p-1013ffb9.js";m().then(m=>a([["p-lmm2f9cr",[[0,"manifold-plan-matrix"],[0,"manifold-button",{text:[1],href:[1]}],[0,"manifold-checkbox",{inputId:[1,"input-id"],name:[1],checked:[4]}]]]],m)); |
@@ -17,3 +17,8 @@ /* eslint-disable */ | ||
} | ||
interface ManifoldPricing {} | ||
interface ManifoldCheckbox { | ||
'checked': boolean; | ||
'inputId': string; | ||
'name': string; | ||
} | ||
interface ManifoldPlanMatrix {} | ||
} | ||
@@ -30,10 +35,17 @@ | ||
interface HTMLManifoldPricingElement extends Components.ManifoldPricing, HTMLStencilElement {} | ||
var HTMLManifoldPricingElement: { | ||
prototype: HTMLManifoldPricingElement; | ||
new (): HTMLManifoldPricingElement; | ||
interface HTMLManifoldCheckboxElement extends Components.ManifoldCheckbox, HTMLStencilElement {} | ||
var HTMLManifoldCheckboxElement: { | ||
prototype: HTMLManifoldCheckboxElement; | ||
new (): HTMLManifoldCheckboxElement; | ||
}; | ||
interface HTMLManifoldPlanMatrixElement extends Components.ManifoldPlanMatrix, HTMLStencilElement {} | ||
var HTMLManifoldPlanMatrixElement: { | ||
prototype: HTMLManifoldPlanMatrixElement; | ||
new (): HTMLManifoldPlanMatrixElement; | ||
}; | ||
interface HTMLElementTagNameMap { | ||
'manifold-button': HTMLManifoldButtonElement; | ||
'manifold-pricing': HTMLManifoldPricingElement; | ||
'manifold-checkbox': HTMLManifoldCheckboxElement; | ||
'manifold-plan-matrix': HTMLManifoldPlanMatrixElement; | ||
} | ||
@@ -47,7 +59,13 @@ } | ||
} | ||
interface ManifoldPricing {} | ||
interface ManifoldCheckbox { | ||
'checked'?: boolean; | ||
'inputId'?: string; | ||
'name'?: string; | ||
} | ||
interface ManifoldPlanMatrix {} | ||
interface IntrinsicElements { | ||
'manifold-button': ManifoldButton; | ||
'manifold-pricing': ManifoldPricing; | ||
'manifold-checkbox': ManifoldCheckbox; | ||
'manifold-plan-matrix': ManifoldPlanMatrix; | ||
} | ||
@@ -63,3 +81,4 @@ } | ||
'manifold-button': LocalJSX.ManifoldButton & JSXBase.HTMLAttributes<HTMLManifoldButtonElement>; | ||
'manifold-pricing': LocalJSX.ManifoldPricing & JSXBase.HTMLAttributes<HTMLManifoldPricingElement>; | ||
'manifold-checkbox': LocalJSX.ManifoldCheckbox & JSXBase.HTMLAttributes<HTMLManifoldCheckboxElement>; | ||
'manifold-plan-matrix': LocalJSX.ManifoldPlanMatrix & JSXBase.HTMLAttributes<HTMLManifoldPlanMatrixElement>; | ||
} | ||
@@ -66,0 +85,0 @@ } |
{ | ||
"name": "@manifoldco/component-plan-matrix", | ||
"version": "0.0.1", | ||
"version": "0.0.2", | ||
"private": false, | ||
@@ -13,3 +13,4 @@ "description": "Stencil Component Starter", | ||
"collection:main": "dist/collection/index.js", | ||
"unpkg": "dist/mui-pricing-table/mui-pricing-table.js", | ||
"unpkg": "dist/manifold-plan-matrix/manifold-plan-matrix.js", | ||
"license": "MIT", | ||
"files": [ | ||
@@ -27,3 +28,4 @@ "dist/", | ||
"lint:js": "eslint --ext .js,.ts,.tsx src", | ||
"prepublishOnly": "npm run build && npm version --from-git", | ||
"prepare": "node scripts/version-from-git", | ||
"prepublishOnly": "npm run build", | ||
"start": "stencil build --dev --watch --serve", | ||
@@ -34,5 +36,8 @@ "storybook": "start-storybook -p 6006", | ||
}, | ||
"dependencies": { | ||
"@manifoldco/icons": "0.0.6" | ||
}, | ||
"devDependencies": { | ||
"@manifoldco/eslint-plugin-stencil": "^0.4.1", | ||
"@stencil/core": "^1.8.8", | ||
"@stencil/core": "^1.8.9", | ||
"@stencil/postcss": "^1.0.1", | ||
@@ -43,4 +48,4 @@ "@storybook/addon-a11y": "^5.3.13", | ||
"@storybook/html": "^5.3.13", | ||
"@typescript-eslint/eslint-plugin": "^2.19.2", | ||
"@typescript-eslint/parser": "^2.19.2", | ||
"@typescript-eslint/eslint-plugin": "^2.20.0", | ||
"@typescript-eslint/parser": "^2.20.0", | ||
"babel-loader": "^8.0.6", | ||
@@ -55,3 +60,3 @@ "eslint": "^6.8.0", | ||
"prettier": "^1.19.1", | ||
"stylelint": "^13.1.0", | ||
"stylelint": "^13.2.0", | ||
"stylelint-config-prettier": "^8.0.1", | ||
@@ -61,5 +66,3 @@ "stylelint-config-rational-order": "^0.1.2", | ||
"wait-on": "^4.0.0" | ||
}, | ||
"license": "MIT", | ||
"dependencies": {} | ||
} | ||
} |
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
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
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
Long strings
Supply chain riskContains long string literals, which may be a sign of obfuscated or packed code.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
Dynamic require
Supply chain riskDynamic require can indicate the package is performing dangerous or unsafe dynamic code execution.
Found 1 instance in 1 package
Long strings
Supply chain riskContains long string literals, which may be a sign of obfuscated or packed code.
Found 1 instance in 1 package
734755
68
11083
5
1
+ Added@manifoldco/icons@0.0.6
+ Added@manifoldco/icons@0.0.6(transitive)