@ppg_pl/pallete 0.0.1
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/README.md +51 -0
- package/dist/cjs/index-f418fc60.js +1340 -0
- package/dist/cjs/index.cjs.js +2 -0
- package/dist/cjs/loader.cjs.js +21 -0
- package/dist/cjs/my-backdrop_8.cjs.entry.js +8109 -0
- package/dist/cjs/pallete.cjs.js +19 -0
- package/dist/collection/collection-manifest.json +19 -0
- package/dist/collection/components/api/index.js +19 -0
- package/dist/collection/components/api/services.js +81 -0
- package/dist/collection/components/my-backdrop/my-backdrop.css +21 -0
- package/dist/collection/components/my-backdrop/my-backdrop.js +13 -0
- package/dist/collection/components/my-colorbox/my-colorbox.css +60 -0
- package/dist/collection/components/my-colorbox/my-colorbox.js +145 -0
- package/dist/collection/components/my-colorinfo/my-colorinfo.js +197 -0
- package/dist/collection/components/my-component/my-component.css +18 -0
- package/dist/collection/components/my-component/my-component.js +106 -0
- package/dist/collection/components/my-loader/my-loader.css +85 -0
- package/dist/collection/components/my-loader/my-loader.js +18 -0
- package/dist/collection/components/my-modal/assets/arrow_down.png +0 -0
- package/dist/collection/components/my-modal/assets/close.png +0 -0
- package/dist/collection/components/my-modal/my-modal.css +323 -0
- package/dist/collection/components/my-modal/my-modal.js +430 -0
- package/dist/collection/components/my-search/assets/search.svg +15 -0
- package/dist/collection/components/my-search/my-search.css +43 -0
- package/dist/collection/components/my-search/my-search.js +112 -0
- package/dist/collection/components/my-slider/index.js +145 -0
- package/dist/collection/components/my-slider/my-slider.css +96 -0
- package/dist/collection/gtmUtils.js +3 -0
- package/dist/collection/index.js +1 -0
- package/dist/collection/types.js +1 -0
- package/dist/components/gtmUtils.js +5 -0
- package/dist/components/index.d.ts +29 -0
- package/dist/components/index.js +9 -0
- package/dist/components/index2.js +5458 -0
- package/dist/components/my-backdrop.d.ts +11 -0
- package/dist/components/my-backdrop.js +6 -0
- package/dist/components/my-backdrop2.js +29 -0
- package/dist/components/my-colorbox.d.ts +11 -0
- package/dist/components/my-colorbox.js +6 -0
- package/dist/components/my-colorbox2.js +61 -0
- package/dist/components/my-colorinfo.d.ts +11 -0
- package/dist/components/my-colorinfo.js +6 -0
- package/dist/components/my-colorinfo2.js +64 -0
- package/dist/components/my-component.d.ts +11 -0
- package/dist/components/my-component.js +216 -0
- package/dist/components/my-loader.d.ts +11 -0
- package/dist/components/my-loader.js +6 -0
- package/dist/components/my-loader2.js +29 -0
- package/dist/components/my-modal.d.ts +11 -0
- package/dist/components/my-modal.js +6 -0
- package/dist/components/my-modal2.js +2451 -0
- package/dist/components/my-search.d.ts +11 -0
- package/dist/components/my-search.js +6 -0
- package/dist/components/my-search2.js +55 -0
- package/dist/components/my-slider.d.ts +11 -0
- package/dist/components/my-slider.js +6 -0
- package/dist/esm/index-367ea408.js +1312 -0
- package/dist/esm/index.js +1 -0
- package/dist/esm/loader.js +17 -0
- package/dist/esm/my-backdrop_8.entry.js +8098 -0
- package/dist/esm/pallete.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/index.cjs.js +1 -0
- package/dist/index.js +1 -0
- package/dist/pallete/assets/arrow_down.png +0 -0
- package/dist/pallete/assets/close.png +0 -0
- package/dist/pallete/assets/search.svg +15 -0
- package/dist/pallete/index.esm.js +0 -0
- package/dist/pallete/p-02fc334c.js +2 -0
- package/dist/pallete/p-9f47a4e8.entry.js +1 -0
- package/dist/pallete/pallete.css +1 -0
- package/dist/pallete/pallete.esm.js +1 -0
- package/dist/types/components/api/index.d.ts +6 -0
- package/dist/types/components/api/services.d.ts +4 -0
- package/dist/types/components/my-backdrop/my-backdrop.d.ts +3 -0
- package/dist/types/components/my-colorbox/my-colorbox.d.ts +13 -0
- package/dist/types/components/my-colorinfo/my-colorinfo.d.ts +15 -0
- package/dist/types/components/my-component/my-component.d.ts +9 -0
- package/dist/types/components/my-loader/my-loader.d.ts +3 -0
- package/dist/types/components/my-modal/my-modal.d.ts +56 -0
- package/dist/types/components/my-search/my-search.d.ts +12 -0
- package/dist/types/components/my-slider/index.d.ts +15 -0
- package/dist/types/components.d.ts +198 -0
- package/dist/types/gtmUtils.d.ts +1 -0
- package/dist/types/index.d.ts +1 -0
- package/dist/types/stencil-public-runtime.d.ts +1565 -0
- package/dist/types/types.d.ts +56 -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 +49 -0
- package/www/build/assets/arrow_down.png +0 -0
- package/www/build/assets/close.png +0 -0
- package/www/build/assets/fonts/Galatea-Regular.eot +0 -0
- package/www/build/assets/fonts/Galatea-Regular.ttf +0 -0
- package/www/build/assets/fonts/Galatea-Regular.woff +0 -0
- package/www/build/assets/fonts/Galatea-Regular.woff2 +0 -0
- package/www/build/assets/search.svg +15 -0
- package/www/build/index.esm.js +0 -0
- package/www/build/p-02fc334c.js +2 -0
- package/www/build/p-95e95ceb.css +1 -0
- package/www/build/p-9f47a4e8.entry.js +1 -0
- package/www/build/p-b0b8b976.js +1 -0
- package/www/build/pallete.css +1 -0
- package/www/build/pallete.esm.js +1 -0
- package/www/build/pallete.js +33 -0
- package/www/host.config.json +15 -0
- package/www/index.html +22 -0
|
@@ -0,0 +1,198 @@
|
|
|
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 { Color, Data, Image, Product } from "./types";
|
|
9
|
+
export namespace Components {
|
|
10
|
+
interface MyBackdrop {
|
|
11
|
+
}
|
|
12
|
+
interface MyColorbox {
|
|
13
|
+
"color": string;
|
|
14
|
+
"isActive"?: boolean;
|
|
15
|
+
"isCategoryActive"?: boolean;
|
|
16
|
+
"name": string;
|
|
17
|
+
"product": string;
|
|
18
|
+
"shop": string;
|
|
19
|
+
}
|
|
20
|
+
interface MyColorinfo {
|
|
21
|
+
"closeImage": string;
|
|
22
|
+
"currentColor": Color;
|
|
23
|
+
"data": Product | null;
|
|
24
|
+
"infoBoxWidth": number | null;
|
|
25
|
+
"isMobile": boolean;
|
|
26
|
+
"product": string;
|
|
27
|
+
"shop": string;
|
|
28
|
+
}
|
|
29
|
+
interface MyComponent {
|
|
30
|
+
"open": () => Promise<void>;
|
|
31
|
+
"product": string;
|
|
32
|
+
"shop": string;
|
|
33
|
+
}
|
|
34
|
+
interface MyLoader {
|
|
35
|
+
}
|
|
36
|
+
interface MyModal {
|
|
37
|
+
"arrowDown": string;
|
|
38
|
+
"closeImage": string;
|
|
39
|
+
"open": () => Promise<void>;
|
|
40
|
+
"product": string;
|
|
41
|
+
"shop": string;
|
|
42
|
+
}
|
|
43
|
+
interface MySearch {
|
|
44
|
+
"isMobile": boolean;
|
|
45
|
+
"productId": number;
|
|
46
|
+
"searchIcon": string;
|
|
47
|
+
}
|
|
48
|
+
interface MySlider {
|
|
49
|
+
"color": string;
|
|
50
|
+
"product": string;
|
|
51
|
+
"shop": string;
|
|
52
|
+
"slides": Data<Image>[];
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
export interface MyColorinfoCustomEvent<T> extends CustomEvent<T> {
|
|
56
|
+
detail: T;
|
|
57
|
+
target: HTMLMyColorinfoElement;
|
|
58
|
+
}
|
|
59
|
+
export interface MyModalCustomEvent<T> extends CustomEvent<T> {
|
|
60
|
+
detail: T;
|
|
61
|
+
target: HTMLMyModalElement;
|
|
62
|
+
}
|
|
63
|
+
export interface MySearchCustomEvent<T> extends CustomEvent<T> {
|
|
64
|
+
detail: T;
|
|
65
|
+
target: HTMLMySearchElement;
|
|
66
|
+
}
|
|
67
|
+
declare global {
|
|
68
|
+
interface HTMLMyBackdropElement extends Components.MyBackdrop, HTMLStencilElement {
|
|
69
|
+
}
|
|
70
|
+
var HTMLMyBackdropElement: {
|
|
71
|
+
prototype: HTMLMyBackdropElement;
|
|
72
|
+
new (): HTMLMyBackdropElement;
|
|
73
|
+
};
|
|
74
|
+
interface HTMLMyColorboxElement extends Components.MyColorbox, HTMLStencilElement {
|
|
75
|
+
}
|
|
76
|
+
var HTMLMyColorboxElement: {
|
|
77
|
+
prototype: HTMLMyColorboxElement;
|
|
78
|
+
new (): HTMLMyColorboxElement;
|
|
79
|
+
};
|
|
80
|
+
interface HTMLMyColorinfoElement extends Components.MyColorinfo, HTMLStencilElement {
|
|
81
|
+
}
|
|
82
|
+
var HTMLMyColorinfoElement: {
|
|
83
|
+
prototype: HTMLMyColorinfoElement;
|
|
84
|
+
new (): HTMLMyColorinfoElement;
|
|
85
|
+
};
|
|
86
|
+
interface HTMLMyComponentElement extends Components.MyComponent, HTMLStencilElement {
|
|
87
|
+
}
|
|
88
|
+
var HTMLMyComponentElement: {
|
|
89
|
+
prototype: HTMLMyComponentElement;
|
|
90
|
+
new (): HTMLMyComponentElement;
|
|
91
|
+
};
|
|
92
|
+
interface HTMLMyLoaderElement extends Components.MyLoader, HTMLStencilElement {
|
|
93
|
+
}
|
|
94
|
+
var HTMLMyLoaderElement: {
|
|
95
|
+
prototype: HTMLMyLoaderElement;
|
|
96
|
+
new (): HTMLMyLoaderElement;
|
|
97
|
+
};
|
|
98
|
+
interface HTMLMyModalElement extends Components.MyModal, HTMLStencilElement {
|
|
99
|
+
}
|
|
100
|
+
var HTMLMyModalElement: {
|
|
101
|
+
prototype: HTMLMyModalElement;
|
|
102
|
+
new (): HTMLMyModalElement;
|
|
103
|
+
};
|
|
104
|
+
interface HTMLMySearchElement extends Components.MySearch, HTMLStencilElement {
|
|
105
|
+
}
|
|
106
|
+
var HTMLMySearchElement: {
|
|
107
|
+
prototype: HTMLMySearchElement;
|
|
108
|
+
new (): HTMLMySearchElement;
|
|
109
|
+
};
|
|
110
|
+
interface HTMLMySliderElement extends Components.MySlider, HTMLStencilElement {
|
|
111
|
+
}
|
|
112
|
+
var HTMLMySliderElement: {
|
|
113
|
+
prototype: HTMLMySliderElement;
|
|
114
|
+
new (): HTMLMySliderElement;
|
|
115
|
+
};
|
|
116
|
+
interface HTMLElementTagNameMap {
|
|
117
|
+
"my-backdrop": HTMLMyBackdropElement;
|
|
118
|
+
"my-colorbox": HTMLMyColorboxElement;
|
|
119
|
+
"my-colorinfo": HTMLMyColorinfoElement;
|
|
120
|
+
"my-component": HTMLMyComponentElement;
|
|
121
|
+
"my-loader": HTMLMyLoaderElement;
|
|
122
|
+
"my-modal": HTMLMyModalElement;
|
|
123
|
+
"my-search": HTMLMySearchElement;
|
|
124
|
+
"my-slider": HTMLMySliderElement;
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
declare namespace LocalJSX {
|
|
128
|
+
interface MyBackdrop {
|
|
129
|
+
}
|
|
130
|
+
interface MyColorbox {
|
|
131
|
+
"color"?: string;
|
|
132
|
+
"isActive"?: boolean;
|
|
133
|
+
"isCategoryActive"?: boolean;
|
|
134
|
+
"name"?: string;
|
|
135
|
+
"product"?: string;
|
|
136
|
+
"shop"?: string;
|
|
137
|
+
}
|
|
138
|
+
interface MyColorinfo {
|
|
139
|
+
"closeImage"?: string;
|
|
140
|
+
"currentColor"?: Color;
|
|
141
|
+
"data"?: Product | null;
|
|
142
|
+
"infoBoxWidth"?: number | null;
|
|
143
|
+
"isMobile"?: boolean;
|
|
144
|
+
"onCloseInfoBox"?: (event: MyColorinfoCustomEvent<any>) => void;
|
|
145
|
+
"product"?: string;
|
|
146
|
+
"shop"?: string;
|
|
147
|
+
}
|
|
148
|
+
interface MyComponent {
|
|
149
|
+
"product"?: string;
|
|
150
|
+
"shop"?: string;
|
|
151
|
+
}
|
|
152
|
+
interface MyLoader {
|
|
153
|
+
}
|
|
154
|
+
interface MyModal {
|
|
155
|
+
"arrowDown"?: string;
|
|
156
|
+
"closeImage"?: string;
|
|
157
|
+
"onClose"?: (event: MyModalCustomEvent<any>) => void;
|
|
158
|
+
"product"?: string;
|
|
159
|
+
"shop"?: string;
|
|
160
|
+
}
|
|
161
|
+
interface MySearch {
|
|
162
|
+
"isMobile"?: boolean;
|
|
163
|
+
"onSearchColors"?: (event: MySearchCustomEvent<any>) => void;
|
|
164
|
+
"productId"?: number;
|
|
165
|
+
"searchIcon"?: string;
|
|
166
|
+
}
|
|
167
|
+
interface MySlider {
|
|
168
|
+
"color"?: string;
|
|
169
|
+
"product"?: string;
|
|
170
|
+
"shop"?: string;
|
|
171
|
+
"slides"?: Data<Image>[];
|
|
172
|
+
}
|
|
173
|
+
interface IntrinsicElements {
|
|
174
|
+
"my-backdrop": MyBackdrop;
|
|
175
|
+
"my-colorbox": MyColorbox;
|
|
176
|
+
"my-colorinfo": MyColorinfo;
|
|
177
|
+
"my-component": MyComponent;
|
|
178
|
+
"my-loader": MyLoader;
|
|
179
|
+
"my-modal": MyModal;
|
|
180
|
+
"my-search": MySearch;
|
|
181
|
+
"my-slider": MySlider;
|
|
182
|
+
}
|
|
183
|
+
}
|
|
184
|
+
export { LocalJSX as JSX };
|
|
185
|
+
declare module "@stencil/core" {
|
|
186
|
+
export namespace JSX {
|
|
187
|
+
interface IntrinsicElements {
|
|
188
|
+
"my-backdrop": LocalJSX.MyBackdrop & JSXBase.HTMLAttributes<HTMLMyBackdropElement>;
|
|
189
|
+
"my-colorbox": LocalJSX.MyColorbox & JSXBase.HTMLAttributes<HTMLMyColorboxElement>;
|
|
190
|
+
"my-colorinfo": LocalJSX.MyColorinfo & JSXBase.HTMLAttributes<HTMLMyColorinfoElement>;
|
|
191
|
+
"my-component": LocalJSX.MyComponent & JSXBase.HTMLAttributes<HTMLMyComponentElement>;
|
|
192
|
+
"my-loader": LocalJSX.MyLoader & JSXBase.HTMLAttributes<HTMLMyLoaderElement>;
|
|
193
|
+
"my-modal": LocalJSX.MyModal & JSXBase.HTMLAttributes<HTMLMyModalElement>;
|
|
194
|
+
"my-search": LocalJSX.MySearch & JSXBase.HTMLAttributes<HTMLMySearchElement>;
|
|
195
|
+
"my-slider": LocalJSX.MySlider & JSXBase.HTMLAttributes<HTMLMySliderElement>;
|
|
196
|
+
}
|
|
197
|
+
}
|
|
198
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const setDataLayer: (obj: Record<string, string>) => number;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { Components, JSX } from './components';
|