@everymatrix/casino-footer-v2 1.44.0 → 1.45.2

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/index.html DELETED
@@ -1,50 +0,0 @@
1
- <!DOCTYPE html>
2
- <html lang="en">
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width,initial-scale=1" />
6
-
7
- <title>casino-footer-v2</title>
8
- <link rel="stylesheet" href="public/reset.css" />
9
- <script src="dist/casino-footer-v2.js"></script>
10
- </head>
11
-
12
- <body>
13
- <style>
14
- html,
15
- body {
16
- margin: 0;
17
- padding: 0;
18
- height: 100%;
19
- font-family: "Helvetica Neue", "Helvetica", sans-serif;
20
- }
21
- .header {
22
- display: flex;
23
- justify-content: center;
24
- align-items: center;
25
- padding: 10px 20px;
26
- margin-bottom: 20px;
27
- background: #42a3e2;
28
- box-shadow: 3px 4px 5px 0px rgba(0, 0, 0, 0.2);
29
- }
30
- .header__logo svg {
31
- height: 50px;
32
- width: 50px;
33
- margin-right: 5px;
34
- }
35
- .header__name {
36
- color: #fff;
37
- }
38
- .header__name span {
39
- margin-right: 10px;
40
- font-weight: bold;
41
- }
42
- .webcomponent {
43
- padding: 10px 20px;
44
- }
45
- </style>
46
-
47
- <casino-footer-v2 endpoint="https://beta.bet-at-home.com/apijson" lang="en" env="prod" clockenabled="true" clocksecondsenabled="true" clockcustomformat="false" clocktext="bet-at-home Time" languageselectorenabled="true" languageslist="de, en, sl, pl, hr, hu, it, sr, pt" languagedisplaytype="name" panicbuttonenabled="false" sessiontimerenabled="false" userendpoint="https://betathomecom.nwacdn.com/v1" baseurl="https://beta.bet-at-home.com" class="Footer" session=""></casino-footer-v2>
48
-
49
- </body>
50
- </html>
package/index.js DELETED
@@ -1 +0,0 @@
1
- import './dist/casino-footer-v2.js';
Binary file
package/public/reset.css DELETED
@@ -1,48 +0,0 @@
1
- /* http://meyerweb.com/eric/tools/css/reset/
2
- v2.0 | 20110126
3
- License: none (public domain)
4
- */
5
-
6
- html, body, div, span, applet, object, iframe,
7
- h1, h2, h3, h4, h5, h6, p, blockquote, pre,
8
- a, abbr, acronym, address, big, cite, code,
9
- del, dfn, em, img, ins, kbd, q, s, samp,
10
- small, strike, strong, sub, sup, tt, var,
11
- b, u, i, center,
12
- dl, dt, dd, ol, ul, li,
13
- fieldset, form, label, legend,
14
- table, caption, tbody, tfoot, thead, tr, th, td,
15
- article, aside, canvas, details, embed,
16
- figure, figcaption, footer, header, hgroup,
17
- menu, nav, output, ruby, section, summary,
18
- time, mark, audio, video {
19
- margin: 0;
20
- padding: 0;
21
- border: 0;
22
- font-size: 100%;
23
- font: inherit;
24
- vertical-align: baseline;
25
- }
26
- /* HTML5 display-role reset for older browsers */
27
- article, aside, details, figcaption, figure,
28
- footer, header, hgroup, menu, nav, section {
29
- display: block;
30
- }
31
- body {
32
- line-height: 1;
33
- }
34
- ol, ul {
35
- list-style: none;
36
- }
37
- blockquote, q {
38
- quotes: none;
39
- }
40
- blockquote:before, blockquote:after,
41
- q:before, q:after {
42
- content: '';
43
- content: none;
44
- }
45
- table {
46
- border-collapse: collapse;
47
- border-spacing: 0;
48
- }
package/rollup.config.js DELETED
@@ -1,59 +0,0 @@
1
- import svelte from 'rollup-plugin-svelte';
2
- import commonjs from '@rollup/plugin-commonjs';
3
- import resolve from '@rollup/plugin-node-resolve';
4
- import serve from 'rollup-plugin-dev-server';
5
- import livereload from 'rollup-plugin-livereload';
6
- import { terser } from 'rollup-plugin-terser';
7
- import sveltePreprocess from 'svelte-preprocess';
8
- import typescript from '@rollup/plugin-typescript';
9
- const production = process.env.NODE_ENV === 'production';
10
- const dev = process.env.NODE_ENV === 'development';
11
-
12
- export default {
13
- input: 'src/index.ts',
14
- output: {
15
- sourcemap: true,
16
- format: 'umd',
17
- name: 'app',
18
- file: 'dist/casino-footer-v2.js'
19
- },
20
- plugins: [
21
- svelte({
22
- preprocess: sveltePreprocess(),
23
- compilerOptions: {
24
- // enable run-time checks when not in production
25
- customElement: true,
26
- dev: !production
27
- }
28
- }),
29
- commonjs(),
30
- resolve({
31
- browser: true,
32
- dedupe: ['svelte']
33
- }),
34
- dev && serve({
35
- open: true,
36
- verbose: true,
37
- allowCrossOrigin: true,
38
- historyApiFallback: false,
39
- host: 'localhost',
40
- port: 5050,
41
- }),
42
- dev && livereload({ watch: ['', 'dist'] }),
43
- typescript({
44
- sourceMap: !production,
45
- inlineSources: !production,
46
- }),
47
- // If we're building for production (npm run build
48
- // instead of npm run dev), minify
49
- production &&
50
- terser({
51
- output: {
52
- comments: "all"
53
- },
54
- })
55
- ],
56
- watch: {
57
- clearScreen: false
58
- }
59
- };