@everymatrix/casino-sort 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.
@@ -1,121 +0,0 @@
1
- export const TRANSLATIONS = {
2
- "en": {
3
- "sortby": "Sort by:",
4
- "all": "All",
5
- "az": "A-Z",
6
- "newest": "Newest",
7
- "hottest": "Hottest"
8
- },
9
- "zh": {
10
- "sortby": "Sort by",
11
- "all": "All",
12
- "az": "A-Z",
13
- "newest": "Newest",
14
- "hottest": "Hottest"
15
- },
16
- "de": {
17
- "sortby": "Sort by:",
18
- "all": "All",
19
- "az": "A-Z",
20
- "newest": "Newest",
21
- "hottest": "Hottest"
22
- },
23
- "it": {
24
- "sortby": "Sort by:",
25
- "all": "All",
26
- "az": "A-Z",
27
- "newest": "Newest",
28
- "hottest": "Hottest"
29
- },
30
- "fr": {
31
- "sortby": "Sort by:",
32
- "all": "All",
33
- "az": "A-Z",
34
- "newest": "Newest",
35
- "hottest": "Hottest"
36
- },
37
- "es": {
38
- "sortby": "Sort by:",
39
- "all": "All",
40
- "az": "A-Z",
41
- "newest": "Newest",
42
- "hottest": "Hottest"
43
- },
44
- "tr": {
45
- "sortby": "Sırala:",
46
- "all": "Hepsi",
47
- "az": "A-Z",
48
- "newest": "En yeni",
49
- "hottest": "Öne Çıkan"
50
- },
51
- "ru": {
52
- "sortby": "Sort by:",
53
- "all": "All",
54
- "az": "A-Z",
55
- "newest": "Newest",
56
- "hottest": "Hottest"
57
- },
58
- "ro": {
59
- "sortby": "Sort by:",
60
- "all": "All",
61
- "az": "A-Z",
62
- "newest": "Newest",
63
- "hottest": "Hottest"
64
- },
65
- "hr": {
66
- "sortby": "Poredaj po:",
67
- "all": "Sve",
68
- "az": "A-Z",
69
- "newest": "Najnovije",
70
- "hottest": "Hot igre"
71
- },
72
- "hu": {
73
- "sortby": "Sort by:",
74
- "all": "All",
75
- "az": "A-Z",
76
- "newest": "Newest",
77
- "hottest": "Hottest"
78
- },
79
- "pl": {
80
- "sortby": "Sort by:",
81
- "all": "All",
82
- "az": "A-Z",
83
- "newest": "Newest",
84
- "hottest": "Hottest"
85
- },
86
- "pt": {
87
- "sortby": "Sort by:",
88
- "all": "All",
89
- "az": "A-Z",
90
- "newest": "Newest",
91
- "hottest": "Hottest"
92
- },
93
- "sl": {
94
- "sortby": "Sort by:",
95
- "all": "All",
96
- "az": "A-Z",
97
- "newest": "Newest",
98
- "hottest": "Hottest"
99
- },
100
- "sr": {
101
- "sortby": "Sort by:",
102
- "all": "All",
103
- "az": "A-Z",
104
- "newest": "Newest",
105
- "hottest": "Hottest"
106
- },
107
- "pt-br": {
108
- "sortby": "Organizar por:",
109
- "all": "Todos",
110
- "az": "A-Z",
111
- "newest": "Mais recente",
112
- "hottest": "mais quente"
113
- },
114
- "es-mx": {
115
- "sortby": "Ordenar Por:",
116
- "all": "Todo",
117
- "az": "A-Z",
118
- "newest": "Más nuevos",
119
- "hottest": "Más calientes"
120
- }
121
- }
@@ -1,13 +0,0 @@
1
- import { html } from 'lit-element';
2
-
3
- import CasinoSort from '../src/CasinoSort';
4
-
5
- // This default export determines where your story goes in the story list
6
- export default {
7
- title: 'CasinoSort',
8
- };
9
-
10
- // 👇 We create a “template” of how args map to rendering
11
- const CasinoSort = ({ aProperty }) => html`<casino-sort></casino-sort>`;
12
-
13
- export const FirstStory = CasinoSort.bind({});
package/tsconfig.json DELETED
@@ -1,6 +0,0 @@
1
- {
2
- "extends": "@tsconfig/svelte/tsconfig.json",
3
-
4
- "include": ["src/**/*"],
5
- "exclude": ["node_modules/*", "__sapper__/*", "public/*"]
6
- }