@everymatrix/general-styling-wrapper 1.15.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/general-styling-wrapper.cjs.entry.js +87 -0
- package/dist/cjs/general-styling-wrapper.cjs.js +19 -0
- package/dist/cjs/index-38077f5d.js +1407 -0
- package/dist/cjs/index.cjs.js +2 -0
- package/dist/cjs/loader.cjs.js +21 -0
- package/dist/collection/collection-manifest.json +12 -0
- package/dist/collection/components/general-styling-wrapper/general-styling-wrapper.css +3 -0
- package/dist/collection/components/general-styling-wrapper/general-styling-wrapper.js +145 -0
- package/dist/collection/index.js +1 -0
- package/dist/collection/utils/locale.utils.js +15 -0
- package/dist/components/general-styling-wrapper.d.ts +11 -0
- package/dist/components/general-styling-wrapper.js +105 -0
- package/dist/components/index.d.ts +26 -0
- package/dist/components/index.js +1 -0
- package/dist/esm/general-styling-wrapper.entry.js +83 -0
- package/dist/esm/general-styling-wrapper.js +17 -0
- package/dist/esm/index-10c47fc0.js +1382 -0
- package/dist/esm/index.js +1 -0
- package/dist/esm/loader.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/general-styling-wrapper/general-styling-wrapper.esm.js +1 -0
- package/dist/general-styling-wrapper/index.esm.js +0 -0
- package/dist/general-styling-wrapper/p-05de0679.js +1 -0
- package/dist/general-styling-wrapper/p-69081248.entry.js +1 -0
- package/dist/index.cjs.js +1 -0
- package/dist/index.js +1 -0
- package/dist/stencil.config.js +22 -0
- package/dist/types/Users/adrian.pripon/Documents/Work/widgets-stencil/packages/general-styling-wrapper/.stencil/packages/general-styling-wrapper/stencil.config.d.ts +2 -0
- package/dist/types/components/general-styling-wrapper/general-styling-wrapper.d.ts +26 -0
- package/dist/types/components.d.ts +70 -0
- package/dist/types/index.d.ts +1 -0
- package/dist/types/stencil-public-runtime.d.ts +1565 -0
- package/dist/types/utils/locale.utils.d.ts +8 -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 +19 -0
|
@@ -0,0 +1,70 @@
|
|
|
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 { Translations } from "./utils/locale.utils";
|
|
9
|
+
export namespace Components {
|
|
10
|
+
interface GeneralStylingWrapper {
|
|
11
|
+
/**
|
|
12
|
+
* Client custom styling via inline styles
|
|
13
|
+
*/
|
|
14
|
+
"clientStyling": string;
|
|
15
|
+
/**
|
|
16
|
+
* Client custom styling via url
|
|
17
|
+
*/
|
|
18
|
+
"clientStylingUrl": string;
|
|
19
|
+
/**
|
|
20
|
+
* Translation be merged to
|
|
21
|
+
*/
|
|
22
|
+
"targetTranslations": Translations;
|
|
23
|
+
/**
|
|
24
|
+
* Translation via url
|
|
25
|
+
*/
|
|
26
|
+
"translationUrl": string;
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
declare global {
|
|
30
|
+
interface HTMLGeneralStylingWrapperElement extends Components.GeneralStylingWrapper, HTMLStencilElement {
|
|
31
|
+
}
|
|
32
|
+
var HTMLGeneralStylingWrapperElement: {
|
|
33
|
+
prototype: HTMLGeneralStylingWrapperElement;
|
|
34
|
+
new (): HTMLGeneralStylingWrapperElement;
|
|
35
|
+
};
|
|
36
|
+
interface HTMLElementTagNameMap {
|
|
37
|
+
"general-styling-wrapper": HTMLGeneralStylingWrapperElement;
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
declare namespace LocalJSX {
|
|
41
|
+
interface GeneralStylingWrapper {
|
|
42
|
+
/**
|
|
43
|
+
* Client custom styling via inline styles
|
|
44
|
+
*/
|
|
45
|
+
"clientStyling"?: string;
|
|
46
|
+
/**
|
|
47
|
+
* Client custom styling via url
|
|
48
|
+
*/
|
|
49
|
+
"clientStylingUrl"?: string;
|
|
50
|
+
/**
|
|
51
|
+
* Translation be merged to
|
|
52
|
+
*/
|
|
53
|
+
"targetTranslations"?: Translations;
|
|
54
|
+
/**
|
|
55
|
+
* Translation via url
|
|
56
|
+
*/
|
|
57
|
+
"translationUrl"?: string;
|
|
58
|
+
}
|
|
59
|
+
interface IntrinsicElements {
|
|
60
|
+
"general-styling-wrapper": GeneralStylingWrapper;
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
export { LocalJSX as JSX };
|
|
64
|
+
declare module "@stencil/core" {
|
|
65
|
+
export namespace JSX {
|
|
66
|
+
interface IntrinsicElements {
|
|
67
|
+
"general-styling-wrapper": LocalJSX.GeneralStylingWrapper & JSXBase.HTMLAttributes<HTMLGeneralStylingWrapperElement>;
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './components';
|