@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.
Files changed (45) hide show
  1. package/dist/cjs/general-styling-wrapper.cjs.entry.js +87 -0
  2. package/dist/cjs/general-styling-wrapper.cjs.js +19 -0
  3. package/dist/cjs/index-38077f5d.js +1407 -0
  4. package/dist/cjs/index.cjs.js +2 -0
  5. package/dist/cjs/loader.cjs.js +21 -0
  6. package/dist/collection/collection-manifest.json +12 -0
  7. package/dist/collection/components/general-styling-wrapper/general-styling-wrapper.css +3 -0
  8. package/dist/collection/components/general-styling-wrapper/general-styling-wrapper.js +145 -0
  9. package/dist/collection/index.js +1 -0
  10. package/dist/collection/utils/locale.utils.js +15 -0
  11. package/dist/components/general-styling-wrapper.d.ts +11 -0
  12. package/dist/components/general-styling-wrapper.js +105 -0
  13. package/dist/components/index.d.ts +26 -0
  14. package/dist/components/index.js +1 -0
  15. package/dist/esm/general-styling-wrapper.entry.js +83 -0
  16. package/dist/esm/general-styling-wrapper.js +17 -0
  17. package/dist/esm/index-10c47fc0.js +1382 -0
  18. package/dist/esm/index.js +1 -0
  19. package/dist/esm/loader.js +17 -0
  20. package/dist/esm/polyfills/core-js.js +11 -0
  21. package/dist/esm/polyfills/css-shim.js +1 -0
  22. package/dist/esm/polyfills/dom.js +79 -0
  23. package/dist/esm/polyfills/es5-html-element.js +1 -0
  24. package/dist/esm/polyfills/index.js +34 -0
  25. package/dist/esm/polyfills/system.js +6 -0
  26. package/dist/general-styling-wrapper/general-styling-wrapper.esm.js +1 -0
  27. package/dist/general-styling-wrapper/index.esm.js +0 -0
  28. package/dist/general-styling-wrapper/p-05de0679.js +1 -0
  29. package/dist/general-styling-wrapper/p-69081248.entry.js +1 -0
  30. package/dist/index.cjs.js +1 -0
  31. package/dist/index.js +1 -0
  32. package/dist/stencil.config.js +22 -0
  33. 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
  34. package/dist/types/components/general-styling-wrapper/general-styling-wrapper.d.ts +26 -0
  35. package/dist/types/components.d.ts +70 -0
  36. package/dist/types/index.d.ts +1 -0
  37. package/dist/types/stencil-public-runtime.d.ts +1565 -0
  38. package/dist/types/utils/locale.utils.d.ts +8 -0
  39. package/loader/cdn.js +3 -0
  40. package/loader/index.cjs.js +3 -0
  41. package/loader/index.d.ts +12 -0
  42. package/loader/index.es2017.js +3 -0
  43. package/loader/index.js +4 -0
  44. package/loader/package.json +10 -0
  45. 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';