@everymatrix/general-tutorial-slider 1.31.1 → 1.32.4
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/LICENSE +21 -0
- package/package.json +3 -2
- package/dist/cjs/general-tutorial-slider.cjs.entry.js +0 -344
- package/dist/cjs/general-tutorial-slider.cjs.js +0 -19
- package/dist/cjs/index-18ec3908.js +0 -1282
- package/dist/cjs/index.cjs.js +0 -2
- package/dist/cjs/loader.cjs.js +0 -21
- package/dist/collection/collection-manifest.json +0 -12
- package/dist/collection/components/general-tutorial-slider/general-tutorial-slider.css +0 -168
- package/dist/collection/components/general-tutorial-slider/general-tutorial-slider.js +0 -526
- package/dist/collection/index.js +0 -1
- package/dist/collection/utils/locale.utils.js +0 -40
- package/dist/collection/utils/utils.js +0 -39
- package/dist/components/general-tutorial-slider.d.ts +0 -11
- package/dist/components/general-tutorial-slider.js +0 -377
- package/dist/components/index.d.ts +0 -26
- package/dist/components/index.js +0 -1
- package/dist/esm/general-tutorial-slider.entry.js +0 -340
- package/dist/esm/general-tutorial-slider.js +0 -17
- package/dist/esm/index-a2165162.js +0 -1256
- package/dist/esm/index.js +0 -1
- package/dist/esm/loader.js +0 -17
- package/dist/esm/polyfills/core-js.js +0 -11
- package/dist/esm/polyfills/css-shim.js +0 -1
- package/dist/esm/polyfills/dom.js +0 -79
- package/dist/esm/polyfills/es5-html-element.js +0 -1
- package/dist/esm/polyfills/index.js +0 -34
- package/dist/esm/polyfills/system.js +0 -6
- package/dist/general-tutorial-slider/general-tutorial-slider.esm.js +0 -1
- package/dist/general-tutorial-slider/index.esm.js +0 -0
- package/dist/general-tutorial-slider/p-a5ce3c59.entry.js +0 -1
- package/dist/general-tutorial-slider/p-a878ee14.js +0 -1
- package/dist/index.cjs.js +0 -1
- package/dist/index.js +0 -1
- package/dist/stencil.config.js +0 -22
- package/dist/types/Users/sebastian.strulea/Documents/work/widgets-stencil/packages/general-tutorial-slider/.stencil/packages/general-tutorial-slider/stencil.config.d.ts +0 -2
- package/dist/types/components/general-tutorial-slider/general-tutorial-slider.d.ts +0 -90
- package/dist/types/components.d.ts +0 -141
- package/dist/types/index.d.ts +0 -1
- package/dist/types/stencil-public-runtime.d.ts +0 -1565
- package/dist/types/utils/locale.utils.d.ts +0 -1
- package/dist/types/utils/utils.d.ts +0 -9
- package/loader/cdn.js +0 -3
- package/loader/index.cjs.js +0 -3
- package/loader/index.d.ts +0 -12
- package/loader/index.es2017.js +0 -3
- package/loader/index.js +0 -4
- package/loader/package.json +0 -10
|
@@ -1,90 +0,0 @@
|
|
|
1
|
-
export declare class GeneralTutorialSlider {
|
|
2
|
-
/**
|
|
3
|
-
* Client custom styling via inline style
|
|
4
|
-
*/
|
|
5
|
-
clientStyling: string;
|
|
6
|
-
/**
|
|
7
|
-
* Client custom styling via url
|
|
8
|
-
*/
|
|
9
|
-
clientStylingUrl: string;
|
|
10
|
-
/**
|
|
11
|
-
* Language of the widget
|
|
12
|
-
*/
|
|
13
|
-
language: string;
|
|
14
|
-
/**
|
|
15
|
-
* Endpoint URL for the source of data
|
|
16
|
-
*/
|
|
17
|
-
cmsEndpoint: string;
|
|
18
|
-
/**
|
|
19
|
-
* User roles
|
|
20
|
-
*/
|
|
21
|
-
userRoles: string;
|
|
22
|
-
/**
|
|
23
|
-
* CMS Endpoint stage
|
|
24
|
-
*/
|
|
25
|
-
cmsEnv: string;
|
|
26
|
-
/**
|
|
27
|
-
* Show slider dots
|
|
28
|
-
*/
|
|
29
|
-
showSliderDots: boolean;
|
|
30
|
-
/**
|
|
31
|
-
* Show slider navigate arrows
|
|
32
|
-
*/
|
|
33
|
-
showSliderArrows: boolean;
|
|
34
|
-
/**
|
|
35
|
-
* Show slider navigate arrows on mobile
|
|
36
|
-
*/
|
|
37
|
-
showSliderArrowsMobile: boolean;
|
|
38
|
-
/**
|
|
39
|
-
* Auto-scroll will only function if it is set to true, and otherwise it will be ignored.
|
|
40
|
-
*/
|
|
41
|
-
enableAutoScroll: boolean;
|
|
42
|
-
/**
|
|
43
|
-
* Set interval period for slider
|
|
44
|
-
*/
|
|
45
|
-
intervalPeriod: number;
|
|
46
|
-
/**
|
|
47
|
-
* Set the number of slides you wish to display.
|
|
48
|
-
*/
|
|
49
|
-
scrollItems: any;
|
|
50
|
-
/**
|
|
51
|
-
* Set the number of slides you wish to display.
|
|
52
|
-
*/
|
|
53
|
-
itemsPerPage: number;
|
|
54
|
-
el: HTMLElement;
|
|
55
|
-
hasErrors: boolean;
|
|
56
|
-
private limitStylingAppends;
|
|
57
|
-
private isLoading;
|
|
58
|
-
activeIndex: number;
|
|
59
|
-
tutorialElementWidth: number;
|
|
60
|
-
private userAgent;
|
|
61
|
-
private stylingContainer;
|
|
62
|
-
private tutorialData;
|
|
63
|
-
isMobile: boolean;
|
|
64
|
-
allElementsWidth: number;
|
|
65
|
-
tutorialsElement: HTMLElement;
|
|
66
|
-
slider: HTMLElement;
|
|
67
|
-
xDown: any;
|
|
68
|
-
yDown: any;
|
|
69
|
-
watchEndpoint(newValue: string, oldValue: string): void;
|
|
70
|
-
connectedCallback(): void;
|
|
71
|
-
componentWillLoad(): Promise<void>;
|
|
72
|
-
componentDidLoad(): void;
|
|
73
|
-
componentDidRender(): void;
|
|
74
|
-
componentDidUpdate(): void;
|
|
75
|
-
disconnectedCallback(): void;
|
|
76
|
-
getGeneralTutorialSlider(): Promise<any>;
|
|
77
|
-
resizeHandler: () => void;
|
|
78
|
-
move(direction: any): void;
|
|
79
|
-
recalculateItemsPerPage(): void;
|
|
80
|
-
goTo(index: number): void;
|
|
81
|
-
handleTouchStart(evt: any): void;
|
|
82
|
-
getTouches(evt: any): void;
|
|
83
|
-
handleTouchMove(evt: any): void;
|
|
84
|
-
setActive(index: number): void;
|
|
85
|
-
orientationChangeHandler: () => void;
|
|
86
|
-
setClientStyling: () => void;
|
|
87
|
-
setClientStylingURL: () => void;
|
|
88
|
-
renderDots(): Array<HTMLElement>;
|
|
89
|
-
render(): void;
|
|
90
|
-
}
|
|
@@ -1,141 +0,0 @@
|
|
|
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
|
-
export namespace Components {
|
|
9
|
-
interface GeneralTutorialSlider {
|
|
10
|
-
/**
|
|
11
|
-
* Client custom styling via inline style
|
|
12
|
-
*/
|
|
13
|
-
"clientStyling": string;
|
|
14
|
-
/**
|
|
15
|
-
* Client custom styling via url
|
|
16
|
-
*/
|
|
17
|
-
"clientStylingUrl": string;
|
|
18
|
-
/**
|
|
19
|
-
* Endpoint URL for the source of data
|
|
20
|
-
*/
|
|
21
|
-
"cmsEndpoint": string;
|
|
22
|
-
/**
|
|
23
|
-
* CMS Endpoint stage
|
|
24
|
-
*/
|
|
25
|
-
"cmsEnv": string;
|
|
26
|
-
/**
|
|
27
|
-
* Auto-scroll will only function if it is set to true, and otherwise it will be ignored.
|
|
28
|
-
*/
|
|
29
|
-
"enableAutoScroll": boolean;
|
|
30
|
-
/**
|
|
31
|
-
* Set interval period for slider
|
|
32
|
-
*/
|
|
33
|
-
"intervalPeriod": number;
|
|
34
|
-
/**
|
|
35
|
-
* Set the number of slides you wish to display.
|
|
36
|
-
*/
|
|
37
|
-
"itemsPerPage": number;
|
|
38
|
-
/**
|
|
39
|
-
* Language of the widget
|
|
40
|
-
*/
|
|
41
|
-
"language": string;
|
|
42
|
-
/**
|
|
43
|
-
* Set the number of slides you wish to display.
|
|
44
|
-
*/
|
|
45
|
-
"scrollItems": any;
|
|
46
|
-
/**
|
|
47
|
-
* Show slider navigate arrows
|
|
48
|
-
*/
|
|
49
|
-
"showSliderArrows": boolean;
|
|
50
|
-
/**
|
|
51
|
-
* Show slider navigate arrows on mobile
|
|
52
|
-
*/
|
|
53
|
-
"showSliderArrowsMobile": boolean;
|
|
54
|
-
/**
|
|
55
|
-
* Show slider dots
|
|
56
|
-
*/
|
|
57
|
-
"showSliderDots": boolean;
|
|
58
|
-
/**
|
|
59
|
-
* User roles
|
|
60
|
-
*/
|
|
61
|
-
"userRoles": string;
|
|
62
|
-
}
|
|
63
|
-
}
|
|
64
|
-
declare global {
|
|
65
|
-
interface HTMLGeneralTutorialSliderElement extends Components.GeneralTutorialSlider, HTMLStencilElement {
|
|
66
|
-
}
|
|
67
|
-
var HTMLGeneralTutorialSliderElement: {
|
|
68
|
-
prototype: HTMLGeneralTutorialSliderElement;
|
|
69
|
-
new (): HTMLGeneralTutorialSliderElement;
|
|
70
|
-
};
|
|
71
|
-
interface HTMLElementTagNameMap {
|
|
72
|
-
"general-tutorial-slider": HTMLGeneralTutorialSliderElement;
|
|
73
|
-
}
|
|
74
|
-
}
|
|
75
|
-
declare namespace LocalJSX {
|
|
76
|
-
interface GeneralTutorialSlider {
|
|
77
|
-
/**
|
|
78
|
-
* Client custom styling via inline style
|
|
79
|
-
*/
|
|
80
|
-
"clientStyling"?: string;
|
|
81
|
-
/**
|
|
82
|
-
* Client custom styling via url
|
|
83
|
-
*/
|
|
84
|
-
"clientStylingUrl"?: string;
|
|
85
|
-
/**
|
|
86
|
-
* Endpoint URL for the source of data
|
|
87
|
-
*/
|
|
88
|
-
"cmsEndpoint": string;
|
|
89
|
-
/**
|
|
90
|
-
* CMS Endpoint stage
|
|
91
|
-
*/
|
|
92
|
-
"cmsEnv"?: string;
|
|
93
|
-
/**
|
|
94
|
-
* Auto-scroll will only function if it is set to true, and otherwise it will be ignored.
|
|
95
|
-
*/
|
|
96
|
-
"enableAutoScroll"?: boolean;
|
|
97
|
-
/**
|
|
98
|
-
* Set interval period for slider
|
|
99
|
-
*/
|
|
100
|
-
"intervalPeriod"?: number;
|
|
101
|
-
/**
|
|
102
|
-
* Set the number of slides you wish to display.
|
|
103
|
-
*/
|
|
104
|
-
"itemsPerPage"?: number;
|
|
105
|
-
/**
|
|
106
|
-
* Language of the widget
|
|
107
|
-
*/
|
|
108
|
-
"language"?: string;
|
|
109
|
-
/**
|
|
110
|
-
* Set the number of slides you wish to display.
|
|
111
|
-
*/
|
|
112
|
-
"scrollItems"?: any;
|
|
113
|
-
/**
|
|
114
|
-
* Show slider navigate arrows
|
|
115
|
-
*/
|
|
116
|
-
"showSliderArrows"?: boolean;
|
|
117
|
-
/**
|
|
118
|
-
* Show slider navigate arrows on mobile
|
|
119
|
-
*/
|
|
120
|
-
"showSliderArrowsMobile"?: boolean;
|
|
121
|
-
/**
|
|
122
|
-
* Show slider dots
|
|
123
|
-
*/
|
|
124
|
-
"showSliderDots"?: boolean;
|
|
125
|
-
/**
|
|
126
|
-
* User roles
|
|
127
|
-
*/
|
|
128
|
-
"userRoles"?: string;
|
|
129
|
-
}
|
|
130
|
-
interface IntrinsicElements {
|
|
131
|
-
"general-tutorial-slider": GeneralTutorialSlider;
|
|
132
|
-
}
|
|
133
|
-
}
|
|
134
|
-
export { LocalJSX as JSX };
|
|
135
|
-
declare module "@stencil/core" {
|
|
136
|
-
export namespace JSX {
|
|
137
|
-
interface IntrinsicElements {
|
|
138
|
-
"general-tutorial-slider": LocalJSX.GeneralTutorialSlider & JSXBase.HTMLAttributes<HTMLGeneralTutorialSliderElement>;
|
|
139
|
-
}
|
|
140
|
-
}
|
|
141
|
-
}
|
package/dist/types/index.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './components';
|