@everymatrix/lottery-button 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.
Files changed (57) hide show
  1. package/dist/cjs/app-globals-3a1e7e63.js +5 -0
  2. package/dist/cjs/index-236aaf98.js +1207 -0
  3. package/dist/cjs/index.cjs.js +10 -0
  4. package/dist/cjs/loader.cjs.js +15 -0
  5. package/dist/cjs/lottery-button-18510b14.js +174 -0
  6. package/dist/cjs/lottery-button.cjs.entry.js +10 -0
  7. package/dist/cjs/lottery-button.cjs.js +25 -0
  8. package/dist/collection/collection-manifest.json +12 -0
  9. package/dist/collection/components/lottery-button/index.js +1 -0
  10. package/dist/collection/components/lottery-button/lottery-button.css +168 -0
  11. package/dist/collection/components/lottery-button/lottery-button.js +285 -0
  12. package/dist/collection/index.js +1 -0
  13. package/dist/collection/utils/locale.utils.js +28 -0
  14. package/dist/collection/utils/utils.js +3 -0
  15. package/dist/esm/app-globals-0f993ce5.js +3 -0
  16. package/dist/esm/index-b461bf7a.js +1180 -0
  17. package/dist/esm/index.js +2 -0
  18. package/dist/esm/loader.js +11 -0
  19. package/dist/esm/lottery-button-f20aa4a1.js +172 -0
  20. package/dist/esm/lottery-button.entry.js +2 -0
  21. package/dist/esm/lottery-button.js +20 -0
  22. package/dist/index.cjs.js +1 -0
  23. package/dist/index.js +1 -0
  24. package/dist/lottery-button/app-globals-0f993ce5.js +1 -0
  25. package/dist/lottery-button/index-b461bf7a.js +2 -0
  26. package/dist/lottery-button/index.esm.js +1 -0
  27. package/dist/lottery-button/lottery-button-f20aa4a1.js +1 -0
  28. package/dist/lottery-button/lottery-button.entry.js +1 -0
  29. package/dist/lottery-button/lottery-button.esm.js +1 -0
  30. package/dist/stencil.config.dev.js +19 -0
  31. package/dist/stencil.config.js +19 -0
  32. package/dist/storybook/main.js +43 -0
  33. package/dist/storybook/preview.js +9 -0
  34. package/dist/types/builds/emfe-widgets/widgets-monorepo/packages/stencil/lottery-button/.stencil/libs/common/src/storybook/storybook-utils.d.ts +39 -0
  35. package/dist/types/builds/emfe-widgets/widgets-monorepo/packages/stencil/lottery-button/.stencil/packages/stencil/lottery-button/stencil.config.d.ts +2 -0
  36. package/dist/types/builds/emfe-widgets/widgets-monorepo/packages/stencil/lottery-button/.stencil/packages/stencil/lottery-button/stencil.config.dev.d.ts +2 -0
  37. package/dist/types/builds/emfe-widgets/widgets-monorepo/packages/stencil/lottery-button/.stencil/packages/stencil/lottery-button/storybook/main.d.ts +3 -0
  38. package/dist/types/builds/emfe-widgets/widgets-monorepo/packages/stencil/lottery-button/.stencil/packages/stencil/lottery-button/storybook/preview.d.ts +70 -0
  39. package/dist/types/builds/emfe-widgets/widgets-monorepo/packages/stencil/lottery-button/.stencil/tools/plugins/index.d.ts +4 -0
  40. package/dist/types/builds/emfe-widgets/widgets-monorepo/packages/stencil/lottery-button/.stencil/tools/plugins/lazy-load-chunk-plugin.d.ts +12 -0
  41. package/dist/types/builds/emfe-widgets/widgets-monorepo/packages/stencil/lottery-button/.stencil/tools/plugins/stencil-clean-deps-plugin.d.ts +5 -0
  42. package/dist/types/builds/emfe-widgets/widgets-monorepo/packages/stencil/lottery-button/.stencil/tools/plugins/vite-chunk-plugin.d.ts +6 -0
  43. package/dist/types/builds/emfe-widgets/widgets-monorepo/packages/stencil/lottery-button/.stencil/tools/plugins/vite-clean-deps-plugin.d.ts +4 -0
  44. package/dist/types/components/lottery-button/index.d.ts +1 -0
  45. package/dist/types/components/lottery-button/lottery-button.d.ts +39 -0
  46. package/dist/types/components.d.ts +75 -0
  47. package/dist/types/index.d.ts +1 -0
  48. package/dist/types/stencil-public-runtime.d.ts +1674 -0
  49. package/dist/types/utils/locale.utils.d.ts +2 -0
  50. package/dist/types/utils/utils.d.ts +1 -0
  51. package/loader/cdn.js +1 -0
  52. package/loader/index.cjs.js +1 -0
  53. package/loader/index.d.ts +24 -0
  54. package/loader/index.es2017.js +1 -0
  55. package/loader/index.js +2 -0
  56. package/loader/package.json +11 -0
  57. package/package.json +27 -0
@@ -0,0 +1,75 @@
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 { ButtonSize, ButtonVariant } from "./components/lottery-button/lottery-button";
9
+ export { ButtonSize, ButtonVariant } from "./components/lottery-button/lottery-button";
10
+ export namespace Components {
11
+ interface LotteryButton {
12
+ "clientStyling": string;
13
+ "clientStylingUrl": string;
14
+ /**
15
+ * If `true`, the user cannot interact with the button.
16
+ */
17
+ "disabled": boolean;
18
+ "language": string;
19
+ "loading": boolean;
20
+ "mbSource": string;
21
+ /**
22
+ * The size of the button. Can be 'small', 'medium', or 'large'.
23
+ */
24
+ "size": ButtonSize;
25
+ "text": string;
26
+ /**
27
+ * The variant of the button. Can be 'primary', 'outline', 'dashed', or 'text'.
28
+ */
29
+ "variant": ButtonVariant;
30
+ }
31
+ }
32
+ declare global {
33
+ interface HTMLLotteryButtonElement extends Components.LotteryButton, HTMLStencilElement {
34
+ }
35
+ var HTMLLotteryButtonElement: {
36
+ prototype: HTMLLotteryButtonElement;
37
+ new (): HTMLLotteryButtonElement;
38
+ };
39
+ interface HTMLElementTagNameMap {
40
+ "lottery-button": HTMLLotteryButtonElement;
41
+ }
42
+ }
43
+ declare namespace LocalJSX {
44
+ interface LotteryButton {
45
+ "clientStyling"?: string;
46
+ "clientStylingUrl"?: string;
47
+ /**
48
+ * If `true`, the user cannot interact with the button.
49
+ */
50
+ "disabled"?: boolean;
51
+ "language"?: string;
52
+ "loading"?: boolean;
53
+ "mbSource"?: string;
54
+ /**
55
+ * The size of the button. Can be 'small', 'medium', or 'large'.
56
+ */
57
+ "size"?: ButtonSize;
58
+ "text"?: string;
59
+ /**
60
+ * The variant of the button. Can be 'primary', 'outline', 'dashed', or 'text'.
61
+ */
62
+ "variant"?: ButtonVariant;
63
+ }
64
+ interface IntrinsicElements {
65
+ "lottery-button": LotteryButton;
66
+ }
67
+ }
68
+ export { LocalJSX as JSX };
69
+ declare module "@stencil/core" {
70
+ export namespace JSX {
71
+ interface IntrinsicElements {
72
+ "lottery-button": LocalJSX.LotteryButton & JSXBase.HTMLAttributes<HTMLLotteryButtonElement>;
73
+ }
74
+ }
75
+ }
@@ -0,0 +1 @@
1
+ export * from './components/lottery-button';