@everymatrix/casino-sort 1.10.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.
@@ -0,0 +1,77 @@
1
+ export const Translations = {
2
+ 'en': {
3
+ 'Translations': {
4
+ 'sortby': 'Sort by:',
5
+ }
6
+ },
7
+ 'zh': {
8
+ 'Translations': {
9
+ 'sortby': 'Sort by',
10
+ }
11
+ },
12
+ 'de': {
13
+ 'Translations': {
14
+ 'sortby': 'Sort by:',
15
+ }
16
+ },
17
+ 'it': {
18
+ 'Translations': {
19
+ 'sortby': 'Sort by:',
20
+ }
21
+ },
22
+ 'fr': {
23
+ 'Translations': {
24
+ 'sortby': 'Sort by:',
25
+ }
26
+ },
27
+ 'es': {
28
+ 'Translations': {
29
+ 'sortby': 'Sort by:',
30
+ }
31
+ },
32
+ 'tr': {
33
+ 'Translations': {
34
+ 'sortby': 'Sort by:',
35
+ }
36
+ },
37
+ 'ru': {
38
+ 'Translations': {
39
+ 'sortby': 'Sort by:',
40
+ }
41
+ },
42
+ 'ro': {
43
+ 'Translations': {
44
+ 'sortby': 'Sort by:',
45
+ }
46
+ },
47
+ 'hr': {
48
+ 'Translations': {
49
+ 'sortby': 'Sort by:',
50
+ }
51
+ },
52
+ 'hu': {
53
+ 'Translations': {
54
+ 'sortby': 'Sort by:',
55
+ }
56
+ },
57
+ 'pl': {
58
+ 'Translations': {
59
+ 'sortby': 'Sort by:',
60
+ }
61
+ },
62
+ 'pt': {
63
+ 'Translations': {
64
+ 'sortby': 'Sort by:',
65
+ }
66
+ },
67
+ 'sl': {
68
+ 'Translations': {
69
+ 'sortby': 'Sort by:',
70
+ }
71
+ },
72
+ 'sr': {
73
+ 'Translations': {
74
+ 'sortby': 'Sort by:',
75
+ }
76
+ }
77
+ };
@@ -0,0 +1,13 @@
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 ADDED
@@ -0,0 +1,6 @@
1
+ {
2
+ "extends": "@tsconfig/svelte/tsconfig.json",
3
+
4
+ "include": ["src/**/*"],
5
+ "exclude": ["node_modules/*", "__sapper__/*", "public/*"]
6
+ }