@maggioli-design-system/mds-accordion-timer-item 1.0.0
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/cjs/index-2ee34dd7.js +1180 -0
- package/dist/cjs/index.cjs.js +2 -0
- package/dist/cjs/loader.cjs.js +21 -0
- package/dist/cjs/mds-accordion-timer-item.cjs.entry.js +100 -0
- package/dist/cjs/mds-accordion-timer-item.cjs.js +19 -0
- package/dist/collection/collection-manifest.json +12 -0
- package/dist/collection/components/mds-accordion-timer-item/mds-accordion-timer-item.css +109 -0
- package/dist/collection/components/mds-accordion-timer-item/mds-accordion-timer-item.js +206 -0
- package/dist/collection/components/mds-accordion-timer-item/test/mds-accordion-timer-item.stories.js +49 -0
- package/dist/collection/dictionary/autocomplete.js +59 -0
- package/dist/collection/dictionary/button.js +26 -0
- package/dist/collection/dictionary/color.js +19 -0
- package/dist/collection/dictionary/icon.js +3 -0
- package/dist/collection/dictionary/input-text-type.js +13 -0
- package/dist/collection/dictionary/loading.js +5 -0
- package/dist/collection/dictionary/typography.js +37 -0
- package/dist/collection/dictionary/variant.js +64 -0
- package/dist/collection/fixtures/cities.js +110 -0
- package/dist/collection/interface/input-value.js +1 -0
- package/dist/collection/types/autocomplete.js +1 -0
- package/dist/collection/types/button.js +1 -0
- package/dist/collection/types/form-rel.js +1 -0
- package/dist/collection/types/input-text-type.js +1 -0
- package/dist/collection/types/input-value-type.js +1 -0
- package/dist/collection/types/loading.js +1 -0
- package/dist/collection/types/typography.js +1 -0
- package/dist/collection/types/variant.js +1 -0
- package/dist/custom-elements/index.d.ts +45 -0
- package/dist/custom-elements/index.js +112 -0
- package/dist/esm/index-4339770f.js +1153 -0
- package/dist/esm/index.js +1 -0
- package/dist/esm/loader.js +17 -0
- package/dist/esm/mds-accordion-timer-item.entry.js +96 -0
- package/dist/esm/mds-accordion-timer-item.js +17 -0
- package/dist/esm/polyfills/core-js.js +11 -0
- package/dist/esm/polyfills/css-shim.js +1 -0
- package/dist/esm/polyfills/dom.js +79 -0
- package/dist/esm/polyfills/es5-html-element.js +1 -0
- package/dist/esm/polyfills/index.js +34 -0
- package/dist/esm/polyfills/system.js +6 -0
- package/dist/esm-es5/index-4339770f.js +1 -0
- package/dist/esm-es5/index.js +0 -0
- package/dist/esm-es5/loader.js +1 -0
- package/dist/esm-es5/mds-accordion-timer-item.entry.js +1 -0
- package/dist/esm-es5/mds-accordion-timer-item.js +1 -0
- package/dist/index.cjs.js +1 -0
- package/dist/index.js +1 -0
- package/dist/mds-accordion-timer-item/index.esm.js +0 -0
- package/dist/mds-accordion-timer-item/mds-accordion-timer-item.esm.js +1 -0
- package/dist/mds-accordion-timer-item/mds-accordion-timer-item.js +130 -0
- package/dist/mds-accordion-timer-item/p-08901cb1.entry.js +1 -0
- package/dist/mds-accordion-timer-item/p-50ea2036.system.js +1 -0
- package/dist/mds-accordion-timer-item/p-7e30d5f8.js +1 -0
- package/dist/mds-accordion-timer-item/p-9b9f6cb9.system.js +1 -0
- package/dist/mds-accordion-timer-item/p-c7b8cf9d.system.js +1 -0
- package/dist/mds-accordion-timer-item/p-d8623772.system.entry.js +1 -0
- package/dist/stats.json +705 -0
- package/dist/types/components/mds-accordion-timer-item/mds-accordion-timer-item.d.ts +43 -0
- package/dist/types/components.d.ts +90 -0
- package/dist/types/dictionary/autocomplete.d.ts +2 -0
- package/dist/types/dictionary/button.d.ts +5 -0
- package/dist/types/dictionary/color.d.ts +3 -0
- package/dist/types/dictionary/icon.d.ts +2 -0
- package/dist/types/dictionary/input-text-type.d.ts +2 -0
- package/dist/types/dictionary/loading.d.ts +2 -0
- package/dist/types/dictionary/typography.d.ts +5 -0
- package/dist/types/dictionary/variant.d.ts +9 -0
- package/dist/types/fixtures/cities.d.ts +2 -0
- package/dist/types/interface/input-value.d.ts +4 -0
- package/dist/types/stencil-public-runtime.d.ts +1563 -0
- package/dist/types/types/autocomplete.d.ts +2 -0
- package/dist/types/types/button.d.ts +4 -0
- package/dist/types/types/form-rel.d.ts +1 -0
- package/dist/types/types/input-text-type.d.ts +1 -0
- package/dist/types/types/input-value-type.d.ts +1 -0
- package/dist/types/types/loading.d.ts +1 -0
- package/dist/types/types/typography.d.ts +4 -0
- package/dist/types/types/variant.d.ts +10 -0
- package/loader/cdn.js +3 -0
- package/loader/index.cjs.js +3 -0
- package/loader/index.d.ts +12 -0
- package/loader/index.es2017.js +3 -0
- package/loader/index.js +4 -0
- package/loader/package.json +10 -0
- package/package.json +47 -0
- package/readme.md +54 -0
- package/src/components/mds-accordion-timer-item/mds-accordion-timer-item.css +69 -0
- package/src/components/mds-accordion-timer-item/mds-accordion-timer-item.tsx +99 -0
- package/src/components/mds-accordion-timer-item/readme.md +39 -0
- package/src/components/mds-accordion-timer-item/test/mds-accordion-timer-item.e2e.ts +11 -0
- package/src/components/mds-accordion-timer-item/test/mds-accordion-timer-item.spec.tsx +18 -0
- package/src/components/mds-accordion-timer-item/test/mds-accordion-timer-item.stories.js +49 -0
- package/src/components.d.ts +90 -0
- package/src/dictionary/autocomplete.ts +62 -0
- package/src/dictionary/button.ts +35 -0
- package/src/dictionary/color.ts +24 -0
- package/src/dictionary/icon.ts +5 -0
- package/src/dictionary/input-text-type.ts +17 -0
- package/src/dictionary/loading.ts +9 -0
- package/src/dictionary/typography.ts +46 -0
- package/src/dictionary/variant.ts +81 -0
- package/src/fixtures/cities.ts +116 -0
- package/src/interface/input-value.ts +5 -0
- package/src/types/autocomplete.ts +69 -0
- package/src/types/button.ts +24 -0
- package/src/types/form-rel.ts +11 -0
- package/src/types/input-text-type.ts +11 -0
- package/src/types/input-value-type.ts +5 -0
- package/src/types/loading.ts +3 -0
- package/src/types/typography.ts +35 -0
- package/src/types/variant.ts +72 -0
- package/www/build/index.esm.js +0 -0
- package/www/build/mds-accordion-timer-item.esm.js +1 -0
- package/www/build/mds-accordion-timer-item.js +130 -0
- package/www/build/p-08901cb1.entry.js +1 -0
- package/www/build/p-50ea2036.system.js +1 -0
- package/www/build/p-7e30d5f8.js +1 -0
- package/www/build/p-9b9f6cb9.system.js +1 -0
- package/www/build/p-c7b8cf9d.system.js +1 -0
- package/www/build/p-d8623772.system.entry.js +1 -0
- package/www/host.config.json +15 -0
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { EventEmitter } from '../../stencil-public-runtime';
|
|
2
|
+
import { TypographyPrimaryType } from '../../types/typography';
|
|
3
|
+
export declare class MdsAccordionTimerItem {
|
|
4
|
+
isActive: boolean;
|
|
5
|
+
/**
|
|
6
|
+
* Specifies the typography of the element
|
|
7
|
+
*/
|
|
8
|
+
readonly typography?: TypographyPrimaryType;
|
|
9
|
+
/**
|
|
10
|
+
* Specifies if the accordion item is opened or not
|
|
11
|
+
*/
|
|
12
|
+
readonly active?: boolean;
|
|
13
|
+
/**
|
|
14
|
+
* Specifies the title shown when the accordion is closed or opened
|
|
15
|
+
*/
|
|
16
|
+
readonly description: string;
|
|
17
|
+
/**
|
|
18
|
+
* A value between 0 and 100 that rapresents the status progress
|
|
19
|
+
*/
|
|
20
|
+
readonly progress?: number;
|
|
21
|
+
/**
|
|
22
|
+
* Used automatically by MdsAccordionTimer wrapper to handle it's siblings
|
|
23
|
+
*/
|
|
24
|
+
readonly uuid?: number;
|
|
25
|
+
componentWillLoad(): void;
|
|
26
|
+
private toggle;
|
|
27
|
+
private mouseEnter;
|
|
28
|
+
private mouseLeave;
|
|
29
|
+
/**
|
|
30
|
+
* Emits when the accordion is clicked by the mouse
|
|
31
|
+
*/
|
|
32
|
+
clickActive: EventEmitter<string>;
|
|
33
|
+
/**
|
|
34
|
+
* Emits when the accordion is hovered by the mouse
|
|
35
|
+
*/
|
|
36
|
+
mouseEnterActive: EventEmitter<string>;
|
|
37
|
+
/**
|
|
38
|
+
* Emits when the accordion is hovered by the mouse
|
|
39
|
+
*/
|
|
40
|
+
mouseLeaveActive: EventEmitter<string>;
|
|
41
|
+
validateOpened(newValue: boolean): void;
|
|
42
|
+
render(): any;
|
|
43
|
+
}
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
/* eslint-disable */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/**
|
|
4
|
+
* This is an autogenerated file created by the Stencil compiler.
|
|
5
|
+
* It contains typing information for all components that exist in this project.
|
|
6
|
+
*/
|
|
7
|
+
import { HTMLStencilElement, JSXBase } from "./stencil-public-runtime";
|
|
8
|
+
import { TypographyPrimaryType } from "./types/typography";
|
|
9
|
+
export namespace Components {
|
|
10
|
+
interface MdsAccordionTimerItem {
|
|
11
|
+
/**
|
|
12
|
+
* Specifies if the accordion item is opened or not
|
|
13
|
+
*/
|
|
14
|
+
"active"?: boolean;
|
|
15
|
+
/**
|
|
16
|
+
* Specifies the title shown when the accordion is closed or opened
|
|
17
|
+
*/
|
|
18
|
+
"description": string;
|
|
19
|
+
/**
|
|
20
|
+
* A value between 0 and 100 that rapresents the status progress
|
|
21
|
+
*/
|
|
22
|
+
"progress"?: number;
|
|
23
|
+
/**
|
|
24
|
+
* Specifies the typography of the element
|
|
25
|
+
*/
|
|
26
|
+
"typography"?: TypographyPrimaryType;
|
|
27
|
+
/**
|
|
28
|
+
* Used automatically by MdsAccordionTimer wrapper to handle it's siblings
|
|
29
|
+
*/
|
|
30
|
+
"uuid"?: number;
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
declare global {
|
|
34
|
+
interface HTMLMdsAccordionTimerItemElement extends Components.MdsAccordionTimerItem, HTMLStencilElement {
|
|
35
|
+
}
|
|
36
|
+
var HTMLMdsAccordionTimerItemElement: {
|
|
37
|
+
prototype: HTMLMdsAccordionTimerItemElement;
|
|
38
|
+
new (): HTMLMdsAccordionTimerItemElement;
|
|
39
|
+
};
|
|
40
|
+
interface HTMLElementTagNameMap {
|
|
41
|
+
"mds-accordion-timer-item": HTMLMdsAccordionTimerItemElement;
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
declare namespace LocalJSX {
|
|
45
|
+
interface MdsAccordionTimerItem {
|
|
46
|
+
/**
|
|
47
|
+
* Specifies if the accordion item is opened or not
|
|
48
|
+
*/
|
|
49
|
+
"active"?: boolean;
|
|
50
|
+
/**
|
|
51
|
+
* Specifies the title shown when the accordion is closed or opened
|
|
52
|
+
*/
|
|
53
|
+
"description": string;
|
|
54
|
+
/**
|
|
55
|
+
* Emits when the accordion is clicked by the mouse
|
|
56
|
+
*/
|
|
57
|
+
"onClickActive"?: (event: CustomEvent<string>) => void;
|
|
58
|
+
/**
|
|
59
|
+
* Emits when the accordion is hovered by the mouse
|
|
60
|
+
*/
|
|
61
|
+
"onMouseEnterActive"?: (event: CustomEvent<string>) => void;
|
|
62
|
+
/**
|
|
63
|
+
* Emits when the accordion is hovered by the mouse
|
|
64
|
+
*/
|
|
65
|
+
"onMouseLeaveActive"?: (event: CustomEvent<string>) => void;
|
|
66
|
+
/**
|
|
67
|
+
* A value between 0 and 100 that rapresents the status progress
|
|
68
|
+
*/
|
|
69
|
+
"progress"?: number;
|
|
70
|
+
/**
|
|
71
|
+
* Specifies the typography of the element
|
|
72
|
+
*/
|
|
73
|
+
"typography"?: TypographyPrimaryType;
|
|
74
|
+
/**
|
|
75
|
+
* Used automatically by MdsAccordionTimer wrapper to handle it's siblings
|
|
76
|
+
*/
|
|
77
|
+
"uuid"?: number;
|
|
78
|
+
}
|
|
79
|
+
interface IntrinsicElements {
|
|
80
|
+
"mds-accordion-timer-item": MdsAccordionTimerItem;
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
export { LocalJSX as JSX };
|
|
84
|
+
declare module "@stencil/core" {
|
|
85
|
+
export namespace JSX {
|
|
86
|
+
interface IntrinsicElements {
|
|
87
|
+
"mds-accordion-timer-item": LocalJSX.MdsAccordionTimerItem & JSXBase.HTMLAttributes<HTMLMdsAccordionTimerItemElement>;
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
declare const buttonVariantDictionary: string[];
|
|
2
|
+
declare const buttonToneVariantDictionary: string[];
|
|
3
|
+
declare const buttonSizeDictionary: string[];
|
|
4
|
+
declare const buttonIconPositionDictionary: string[];
|
|
5
|
+
export { buttonSizeDictionary, buttonToneVariantDictionary, buttonVariantDictionary, buttonIconPositionDictionary, };
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
declare const typographyDictionary: string[];
|
|
2
|
+
declare const typographyMonoDictionary: string[];
|
|
3
|
+
declare const typographyPrimaryDictionary: string[];
|
|
4
|
+
declare const typographySecondaryDictionary: string[];
|
|
5
|
+
export { typographyDictionary, typographyMonoDictionary, typographyPrimaryDictionary, typographySecondaryDictionary, };
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
declare const themeVariantDictionary: string[];
|
|
2
|
+
declare const themeLuminanceVariantDictionary: string[];
|
|
3
|
+
declare const themeStatusVariantDictionary: string[];
|
|
4
|
+
declare const themeFullVariantDictionary: string[];
|
|
5
|
+
declare const themeLabelVariantDictionary: string[];
|
|
6
|
+
declare const toneVariantDictionary: string[];
|
|
7
|
+
declare const toneSimpleVariantDictionary: string[];
|
|
8
|
+
declare const toneMinimalVariantDictionary: string[];
|
|
9
|
+
export { themeFullVariantDictionary, themeLabelVariantDictionary, themeLuminanceVariantDictionary, themeStatusVariantDictionary, themeVariantDictionary, toneMinimalVariantDictionary, toneSimpleVariantDictionary, toneVariantDictionary, };
|