@maggioli-design-system/mds-progress
Advanced tools
Comparing version 2.6.2 to 2.7.0
@@ -8,3 +8,3 @@ 'use strict'; | ||
/* | ||
Stencil Client Patch Browser v4.5.0 | MIT Licensed | https://stenciljs.com | ||
Stencil Client Patch Browser v4.7.1 | MIT Licensed | https://stenciljs.com | ||
*/ | ||
@@ -11,0 +11,0 @@ const patchBrowser = () => { |
@@ -7,3 +7,3 @@ { | ||
"name": "@stencil/core", | ||
"version": "4.5.0", | ||
"version": "4.7.1", | ||
"typescriptVersion": "5.2.2" | ||
@@ -10,0 +10,0 @@ }, |
@@ -63,2 +63,6 @@ const typographyDictionary = [ | ||
]; | ||
export { typographyDictionary, typographyInfoDictionary, typographyReadingVariationsDictionary, typographyMonoDictionary, typographyReadDictionary, typographySmallerDictionary, typographyTitleDictionary, typographyTooltipDictionary, typographyVariationsDictionary, }; | ||
const typographyInputDictionary = [ | ||
'snippet', | ||
'detail', | ||
]; | ||
export { typographyDictionary, typographyInfoDictionary, typographyInputDictionary, typographyMonoDictionary, typographyReadDictionary, typographyReadingVariationsDictionary, typographySmallerDictionary, typographyTitleDictionary, typographyTooltipDictionary, typographyVariationsDictionary, }; |
{ | ||
"timestamp": "2023-10-19T09:57:20", | ||
"timestamp": "2023-11-08T15:47:59", | ||
"compiler": { | ||
"name": "@stencil/core", | ||
"version": "4.5.0", | ||
"version": "4.7.1", | ||
"typescriptVersion": "5.2.2" | ||
@@ -7,0 +7,0 @@ }, |
@@ -5,3 +5,3 @@ import { p as promiseResolve, b as bootstrapLazy } from './index-84dce283.js'; | ||
/* | ||
Stencil Client Patch Browser v4.5.0 | MIT Licensed | https://stenciljs.com | ||
Stencil Client Patch Browser v4.7.1 | MIT Licensed | https://stenciljs.com | ||
*/ | ||
@@ -8,0 +8,0 @@ const patchBrowser = () => { |
{ | ||
"timestamp": "2023-10-19T09:57:20", | ||
"timestamp": "2023-11-08T15:47:59", | ||
"compiler": { | ||
@@ -12,7 +12,7 @@ "name": "node", | ||
"entries": 1, | ||
"bundles": 69, | ||
"bundles": 68, | ||
"outputs": [ | ||
{ | ||
"name": "dist-collection", | ||
"files": 28, | ||
"files": 27, | ||
"generatedFiles": [ | ||
@@ -32,3 +32,3 @@ "./dist/collection/common/aria.js", | ||
"./dist/collection/dictionary/icon.js", | ||
"./dist/collection/dictionary/input-text-type.js", | ||
"./dist/collection/dictionary/input.js", | ||
"./dist/collection/dictionary/loading.js", | ||
@@ -43,4 +43,3 @@ "./dist/collection/dictionary/typography.js", | ||
"./dist/collection/type/form-rel.js", | ||
"./dist/collection/type/input-text-type.js", | ||
"./dist/collection/type/input-value-type.js", | ||
"./dist/collection/type/input.js", | ||
"./dist/collection/type/loading.js", | ||
@@ -88,5 +87,5 @@ "./dist/collection/type/typography.js", | ||
"./dist/mds-progress/p-576b3fa7.js", | ||
"./dist/mds-progress/p-8adca417.system.js", | ||
"./dist/mds-progress/p-a257dbdb.system.js", | ||
"./dist/mds-progress/p-aeb5044e.system.entry.js", | ||
"./dist/mds-progress/p-f0741149.system.js", | ||
"./www/build/index.esm.js", | ||
@@ -98,5 +97,5 @@ "./www/build/mds-progress.esm.js", | ||
"./www/build/p-576b3fa7.js", | ||
"./www/build/p-8adca417.system.js", | ||
"./www/build/p-a257dbdb.system.js", | ||
"./www/build/p-aeb5044e.system.entry.js", | ||
"./www/build/p-f0741149.system.js" | ||
"./www/build/p-aeb5044e.system.entry.js" | ||
] | ||
@@ -594,3 +593,3 @@ }, | ||
], | ||
"./src/dictionary/input-text-type.ts": [], | ||
"./src/dictionary/input.ts": [], | ||
"./src/dictionary/loading.ts": [], | ||
@@ -605,4 +604,3 @@ "./src/dictionary/typography.ts": [], | ||
"./src/type/form-rel.ts": [], | ||
"./src/type/input-text-type.ts": [], | ||
"./src/type/input-value-type.ts": [], | ||
"./src/type/input.ts": [], | ||
"./src/type/loading.ts": [], | ||
@@ -609,0 +607,0 @@ "./src/type/typography.ts": [], |
@@ -10,2 +10,3 @@ declare const typographyDictionary: string[]; | ||
declare const typographyTooltipDictionary: string[]; | ||
export { typographyDictionary, typographyInfoDictionary, typographyReadingVariationsDictionary, typographyMonoDictionary, typographyReadDictionary, typographySmallerDictionary, typographyTitleDictionary, typographyTooltipDictionary, typographyVariationsDictionary, }; | ||
declare const typographyInputDictionary: string[]; | ||
export { typographyDictionary, typographyInfoDictionary, typographyInputDictionary, typographyMonoDictionary, typographyReadDictionary, typographyReadingVariationsDictionary, typographySmallerDictionary, typographyTitleDictionary, typographyTooltipDictionary, typographyVariationsDictionary, }; |
@@ -1,4 +0,4 @@ | ||
import { InputValueType } from '@type/input-value-type'; | ||
import { InputValueType } from '@type/input'; | ||
export interface InputValue { | ||
value: InputValueType; | ||
} |
@@ -1137,2 +1137,3 @@ declare type CustomMethodDecorator<T> = (target: Object, propertyKey: string | symbol, descriptor: TypedPropertyDescriptor<T>) => TypedPropertyDescriptor<T> | void; | ||
interface SourceHTMLAttributes<T> extends HTMLAttributes<T> { | ||
height?: number; | ||
media?: string; | ||
@@ -1143,2 +1144,3 @@ sizes?: string; | ||
type?: string; | ||
width?: number; | ||
} | ||
@@ -1145,0 +1147,0 @@ interface StyleHTMLAttributes<T> extends HTMLAttributes<T> { |
@@ -10,1 +10,2 @@ export type TypographyType = 'action' | 'caption' | 'snippet' | 'detail' | 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'hack' | 'label' | 'option' | 'paragraph' | 'tip'; | ||
export type TypographyTooltipType = 'caption' | 'detail' | 'tip'; | ||
export type TypographyInputType = 'snippet' | 'detail'; |
{ | ||
"timestamp": "2023-10-19T09:23:19", | ||
"timestamp": "2023-11-08T14:31:27", | ||
"compiler": { | ||
"name": "@stencil/core", | ||
"version": "4.5.0", | ||
"version": "4.7.1", | ||
"typescriptVersion": "5.2.2" | ||
@@ -409,2 +409,12 @@ }, | ||
}, | ||
"src/type/input.ts::InputControlsLayoutType": { | ||
"declaration": "export type InputControlsLayoutType =\n | 'horizontal'\n | 'vertical'", | ||
"docstring": "", | ||
"path": "src/type/input.ts" | ||
}, | ||
"src/type/input.ts::InputControlsIconType": { | ||
"declaration": "export type InputControlsIconType =\n | 'arrow'\n | 'arithmetic'", | ||
"docstring": "", | ||
"path": "src/type/input.ts" | ||
}, | ||
"src/type/variant.ts::ThemeStatusVariantType": { | ||
@@ -415,19 +425,19 @@ "declaration": "export type ThemeStatusVariantType =\n | 'error'\n | 'info'\n | 'success'\n | 'warning'", | ||
}, | ||
"src/type/input-text-type.ts::InputTextType": { | ||
"src/type/input.ts::InputTextType": { | ||
"declaration": "export type InputTextType =\n | 'date'\n | 'email'\n | 'number'\n | 'password'\n | 'search'\n | 'tel'\n | 'text'\n | 'textarea'\n | 'time'\n | 'url'", | ||
"docstring": "", | ||
"path": "src/type/input-text-type.ts" | ||
"path": "src/type/input.ts" | ||
}, | ||
"src/type/input-value-type.ts::InputValueType": { | ||
"declaration": "export type InputValueType =\n | null\n | number\n | string\n | undefined", | ||
"src/type/typography.ts::TypographyInputType": { | ||
"declaration": "export type TypographyInputType =\n | 'snippet'\n | 'detail'", | ||
"docstring": "", | ||
"path": "src/type/input-value-type.ts" | ||
"path": "src/type/typography.ts" | ||
}, | ||
"src/components/mds-input/meta/interfaces.ts::InputValue": { | ||
"declaration": "export interface InputValue {\n value: InputValueType\n}", | ||
"src/components/mds-input/meta/event-detail.ts::MdsInputEventDetail": { | ||
"declaration": "export interface MdsInputEventDetail {\n value?: string\n}", | ||
"docstring": "", | ||
"path": "src/components/mds-input/meta/interfaces.ts" | ||
"path": "src/components/mds-input/meta/event-detail.ts" | ||
}, | ||
"src/components/mds-input-field/meta/types.ts::ValidationModelType": { | ||
"declaration": "export type ValidationModelType =\n | 'cf'\n | 'email'\n | 'isbn'\n | 'piva'", | ||
"declaration": "export type ValidationModelType =\n | 'cc'\n | 'cf'\n | 'email'\n | 'isbn'\n | 'piva'", | ||
"docstring": "", | ||
@@ -451,2 +461,7 @@ "path": "src/components/mds-input-field/meta/types.ts" | ||
}, | ||
"src/type/input.ts::InputValueType": { | ||
"declaration": "export type InputValueType =\n | null\n | number\n | string\n | undefined", | ||
"docstring": "", | ||
"path": "src/type/input.ts" | ||
}, | ||
"src/type/typography.ts::TypographyType": { | ||
@@ -453,0 +468,0 @@ "declaration": "export type TypographyType =\n | 'action'\n | 'caption'\n | 'snippet'\n | 'detail'\n | 'h1'\n | 'h2'\n | 'h3'\n | 'h4'\n | 'h5'\n | 'h6'\n | 'hack'\n | 'label'\n | 'option'\n | 'paragraph'\n | 'tip'", |
{ | ||
"name": "@maggioli-design-system/mds-progress", | ||
"version": "2.6.2", | ||
"version": "2.7.0", | ||
"description": "mds-progress is a web-component from Magma Design System, built with StencilJS, TypeScript, Storybook. It's based on the web-component standard and it's designed to be agnostic from the JavaScirpt framework you are using.", | ||
@@ -27,4 +27,4 @@ "main": "dist/index.cjs.js", | ||
"dependencies": { | ||
"@maggioli-design-system/styles": "^11.7.0", | ||
"@stencil/core": "^4.3.0" | ||
"@maggioli-design-system/styles": "13.0.0", | ||
"@stencil/core": "4.7.1" | ||
}, | ||
@@ -31,0 +31,0 @@ "license": "MIT", |
@@ -72,8 +72,14 @@ const typographyDictionary = [ | ||
const typographyInputDictionary = [ | ||
'snippet', | ||
'detail', | ||
] | ||
export { | ||
typographyDictionary, | ||
typographyInfoDictionary, | ||
typographyReadingVariationsDictionary, | ||
typographyInputDictionary, | ||
typographyMonoDictionary, | ||
typographyReadDictionary, | ||
typographyReadingVariationsDictionary, | ||
typographySmallerDictionary, | ||
@@ -80,0 +86,0 @@ typographyTitleDictionary, |
@@ -77,2 +77,3 @@ [ | ||
"mgg/face-to-face-meeting", | ||
"mgg/factory", | ||
"mgg/farmer", | ||
@@ -103,2 +104,4 @@ "mgg/field", | ||
"mgg/google-check-small", | ||
"mgg/google-keyboard-double-arrow-down", | ||
"mgg/google-keyboard-double-arrow-up", | ||
"mgg/google-place-item", | ||
@@ -202,2 +205,15 @@ "mgg/group-assigned-automatically-system", | ||
"mgg/todo", | ||
"mgg/todo-action-businessman-view", | ||
"mgg/todo-action-certificate", | ||
"mgg/todo-action-contract", | ||
"mgg/todo-action-currency-euro", | ||
"mgg/todo-action-graduate", | ||
"mgg/todo-action-graduation-hat", | ||
"mgg/todo-action-judge", | ||
"mgg/todo-action-money", | ||
"mgg/todo-action-protocol", | ||
"mgg/todo-action-upload", | ||
"mgg/todo-action-wkf-document-checked", | ||
"mgg/todo-action-wkf-people-checked", | ||
"mgg/todo-action-wkf-set-pub-date", | ||
"mgg/todo-completed", | ||
@@ -229,2 +245,3 @@ "mgg/todo-completed-re-executable", | ||
"mi/baseline/account-balance-wallet", | ||
"mi/baseline/add", | ||
"mi/baseline/adobe", | ||
@@ -270,2 +287,3 @@ "mi/baseline/agriculture", | ||
"mi/baseline/radio-button-unchecked", | ||
"mi/baseline/remove", | ||
"mi/baseline/route", | ||
@@ -272,0 +290,0 @@ "mi/baseline/settings", |
@@ -66,2 +66,3 @@ [ | ||
"mgg/face-to-face-meeting", | ||
"mgg/factory", | ||
"mgg/farmer", | ||
@@ -92,2 +93,4 @@ "mgg/field", | ||
"mgg/google-check-small", | ||
"mgg/google-keyboard-double-arrow-down", | ||
"mgg/google-keyboard-double-arrow-up", | ||
"mgg/google-place-item", | ||
@@ -190,2 +193,15 @@ "mgg/group-assigned-automatically-system", | ||
"mgg/terminal", | ||
"mgg/todo-action-businessman-view", | ||
"mgg/todo-action-certificate", | ||
"mgg/todo-action-contract", | ||
"mgg/todo-action-currency-euro", | ||
"mgg/todo-action-graduate", | ||
"mgg/todo-action-graduation-hat", | ||
"mgg/todo-action-judge", | ||
"mgg/todo-action-money", | ||
"mgg/todo-action-protocol", | ||
"mgg/todo-action-upload", | ||
"mgg/todo-action-wkf-document-checked", | ||
"mgg/todo-action-wkf-people-checked", | ||
"mgg/todo-action-wkf-set-pub-date", | ||
"mgg/todo-completed-re-executable", | ||
@@ -192,0 +208,0 @@ "mgg/todo-completed", |
@@ -1,2 +0,2 @@ | ||
import { InputValueType } from '@type/input-value-type' | ||
import { InputValueType } from '@type/input' | ||
@@ -3,0 +3,0 @@ export interface InputValue { |
@@ -62,1 +62,5 @@ export type TypographyType = | ||
| 'tip' | ||
export type TypographyInputType = | ||
| 'snippet' | ||
| 'detail' |
Sorry, the diff of this file is too big to display
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
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
813095
11441
149
+ Added@fontsource/karla@5.0.16(transitive)
+ Added@fontsource/merriweather@5.0.8(transitive)
+ Added@fontsource/roboto@5.0.8(transitive)
+ Added@fontsource/roboto-mono@5.0.14(transitive)
+ Added@maggioli-design-system/design-tokens@11.0.0(transitive)
+ Added@maggioli-design-system/styles@13.0.0(transitive)
+ Added@stencil/core@4.7.1(transitive)
- Removed@fontsource/karla@5.1.0(transitive)
- Removed@fontsource/merriweather@5.1.0(transitive)
- Removed@fontsource/roboto@5.1.0(transitive)
- Removed@fontsource/roboto-mono@5.1.0(transitive)
- Removed@maggioli-design-system/design-tokens@10.7.0(transitive)
- Removed@maggioli-design-system/styles@11.7.0(transitive)
- Removed@stencil/core@4.23.0(transitive)
Updated@stencil/core@4.7.1