@paperless/core 0.1.0-alpha.2 → 0.1.0-alpha.22
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/CHANGELOG.md +199 -0
- package/README.md +18 -1
- package/dist/assets/images/avatar/company-default.svg +12 -0
- package/dist/assets/images/avatar/user-default.svg +12 -0
- package/dist/assets/images/helper/helper-hover.svg +15 -0
- package/dist/assets/images/helper/helper.svg +15 -0
- package/dist/build/p-17c11169.entry.js +1 -0
- package/dist/build/p-42dab9d4.entry.js +1 -0
- package/dist/build/p-47b52f92.entry.js +1 -0
- package/dist/build/p-554b5a22.entry.js +1 -0
- package/dist/build/p-5ec6ea71.entry.js +1 -0
- package/dist/build/p-76464e0b.js +2 -0
- package/dist/build/{p-feec8ec1.entry.js → p-8501ba07.entry.js} +1 -1
- package/dist/build/p-aae3d4f0.entry.js +1 -0
- package/dist/build/p-adcb0b93.entry.js +1 -0
- package/dist/build/p-bbec0e86.entry.js +1 -0
- package/dist/build/p-d23e4d57.entry.js +1 -0
- package/dist/build/p-f65d7bbf.entry.js +1 -0
- package/dist/build/paperless.esm.js +1 -1
- package/dist/cjs/{index-5b30cb95.js → index-a46a39a5.js} +494 -9
- package/dist/cjs/loader.cjs.js +2 -2
- package/dist/cjs/{p-loader.cjs.entry.js → p-avatar.cjs.entry.js} +13 -38
- package/dist/cjs/{p-icon.cjs.entry.js → p-button_3.cjs.entry.js} +108 -5
- package/dist/cjs/p-counter.cjs.entry.js +19 -0
- package/dist/cjs/p-divider.cjs.entry.js +19 -0
- package/dist/cjs/{p-button.cjs.entry.js → p-helper.cjs.entry.js} +6 -10
- package/dist/cjs/p-illustration.cjs.entry.js +9 -12
- package/dist/cjs/p-info-panel.cjs.entry.js +31 -0
- package/dist/cjs/p-navigation-item.cjs.entry.js +23 -0
- package/dist/cjs/p-pagination-item.cjs.entry.js +23 -0
- package/dist/cjs/p-pagination.cjs.entry.js +167 -0
- package/dist/cjs/p-tooltip.cjs.entry.js +62 -20
- package/dist/cjs/paperless.cjs.js +2 -2
- package/dist/collection/assets/images/avatar/company-default.svg +12 -0
- package/dist/collection/assets/images/avatar/user-default.svg +12 -0
- package/dist/collection/assets/images/helper/helper-hover.svg +15 -0
- package/dist/collection/assets/images/helper/helper.svg +15 -0
- package/dist/collection/collection-manifest.json +9 -1
- package/dist/collection/components/atoms/avatar/avatar.component.css +31 -0
- package/dist/collection/components/atoms/avatar/avatar.component.js +105 -0
- package/dist/collection/components/atoms/button/button.component.css +68 -3
- package/dist/collection/components/atoms/button/button.component.js +241 -7
- package/dist/collection/components/atoms/counter/counter.component.css +5 -0
- package/dist/collection/components/atoms/counter/counter.component.js +15 -0
- package/dist/collection/components/atoms/divider/divider.component.css +3 -0
- package/dist/collection/components/atoms/divider/divider.component.js +14 -0
- package/dist/collection/components/atoms/helper/helper.component.css +7 -0
- package/dist/collection/components/atoms/helper/helper.component.js +18 -0
- package/dist/collection/components/atoms/icon/icon.component.js +2 -7
- package/dist/collection/components/atoms/illustration/illustration.component.js +2 -9
- package/dist/collection/components/atoms/info-panel/info-panel.component.css +28 -0
- package/dist/collection/components/atoms/info-panel/info-panel.component.js +106 -0
- package/dist/collection/components/atoms/loader/loader.component.js +1 -1
- package/dist/collection/components/atoms/pagination-item/pagination-item.component.css +16 -0
- package/dist/collection/components/atoms/pagination-item/pagination-item.component.js +41 -0
- package/dist/collection/components/atoms/tooltip/tooltip.component.css +15 -12
- package/dist/collection/components/atoms/tooltip/tooltip.component.js +122 -32
- package/dist/collection/components/molecules/navigation-item/navigation-item.component.css +28 -0
- package/dist/collection/components/molecules/navigation-item/navigation-item.component.js +118 -0
- package/dist/collection/components/molecules/pagination/pagination.component.css +3 -0
- package/dist/collection/components/molecules/pagination/pagination.component.js +238 -0
- package/dist/collection/tailwind/border-radius.js +1 -0
- package/dist/collection/tailwind/grid.js +24 -4
- package/dist/collection/tailwind.config.js +1 -1
- package/dist/components/counter.component.js +30 -0
- package/dist/{esm/p-icon.entry.js → components/icon.component.js} +26 -11
- package/dist/components/index.d.ts +8 -0
- package/dist/components/index.js +8 -0
- package/dist/{esm/p-loader.entry.js → components/loader.component.js} +30 -9
- package/dist/components/p-avatar.d.ts +11 -0
- package/dist/components/p-avatar.js +52 -0
- package/dist/components/p-button.js +67 -8
- package/dist/components/p-counter.d.ts +11 -0
- package/dist/components/p-counter.js +6 -0
- package/dist/components/p-divider.d.ts +11 -0
- package/dist/components/p-divider.js +33 -0
- package/dist/components/p-helper.d.ts +11 -0
- package/dist/components/p-helper.js +39 -0
- package/dist/components/p-icon.js +1 -815
- package/dist/components/p-illustration.js +0 -4
- package/dist/components/p-info-panel.d.ts +11 -0
- package/dist/components/p-info-panel.js +56 -0
- package/dist/components/p-loader.js +1 -72
- package/dist/components/p-navigation-item.d.ts +11 -0
- package/dist/components/p-navigation-item.js +55 -0
- package/dist/components/p-pagination-item.d.ts +11 -0
- package/dist/components/p-pagination-item.js +6 -0
- package/dist/components/p-pagination.d.ts +11 -0
- package/dist/components/p-pagination.js +196 -0
- package/dist/components/p-tooltip.js +1 -1886
- package/dist/components/pagination-item.component.js +36 -0
- package/dist/components/tooltip.component.js +1932 -0
- package/dist/esm/{index-111a6307.js → index-a68e547b.js} +494 -10
- package/dist/esm/loader.js +2 -2
- package/dist/esm/p-avatar.entry.js +28 -0
- package/dist/esm/p-button_3.entry.js +899 -0
- package/dist/esm/p-counter.entry.js +15 -0
- package/dist/esm/p-divider.entry.js +15 -0
- package/dist/esm/{p-button.entry.js → p-helper.entry.js} +6 -10
- package/dist/esm/p-illustration.entry.js +9 -12
- package/dist/esm/p-info-panel.entry.js +27 -0
- package/dist/esm/p-navigation-item.entry.js +19 -0
- package/dist/esm/p-pagination-item.entry.js +19 -0
- package/dist/esm/p-pagination.entry.js +163 -0
- package/dist/esm/p-tooltip.entry.js +62 -20
- package/dist/esm/paperless.js +2 -2
- package/dist/index.html +1 -1
- package/dist/paperless/p-17c11169.entry.js +1 -0
- package/dist/paperless/p-42dab9d4.entry.js +1 -0
- package/dist/paperless/p-47b52f92.entry.js +1 -0
- package/dist/paperless/p-554b5a22.entry.js +1 -0
- package/dist/paperless/p-5ec6ea71.entry.js +1 -0
- package/dist/paperless/p-76464e0b.js +2 -0
- package/dist/paperless/{p-feec8ec1.entry.js → p-8501ba07.entry.js} +1 -1
- package/dist/paperless/p-aae3d4f0.entry.js +1 -0
- package/dist/paperless/p-adcb0b93.entry.js +1 -0
- package/dist/paperless/p-bbec0e86.entry.js +1 -0
- package/dist/paperless/p-d23e4d57.entry.js +1 -0
- package/dist/paperless/p-f65d7bbf.entry.js +1 -0
- package/dist/paperless/paperless.css +96 -0
- package/dist/paperless/paperless.esm.js +1 -1
- package/dist/sw.js +240 -51
- package/dist/tailwind.config.js +1 -1
- package/dist/types/components/atoms/avatar/avatar.component.d.ts +21 -0
- package/dist/types/components/atoms/button/button.component.d.ts +45 -1
- package/dist/types/components/atoms/counter/counter.component.d.ts +3 -0
- package/dist/types/components/atoms/divider/divider.component.d.ts +3 -0
- package/dist/types/components/atoms/helper/helper.component.d.ts +3 -0
- package/dist/types/components/atoms/info-panel/info-panel.component.d.ts +24 -0
- package/dist/types/components/atoms/pagination-item/pagination-item.component.d.ts +7 -0
- package/dist/types/components/atoms/tooltip/tooltip.component.d.ts +20 -8
- package/dist/types/components/molecules/navigation-item/navigation-item.component.d.ts +24 -0
- package/dist/types/components/molecules/pagination/pagination.component.d.ts +28 -0
- package/dist/types/components.d.ts +358 -16
- package/package.json +1 -1
- package/dist/build/p-1d13a9d2.entry.js +0 -1
- package/dist/build/p-208c1f28.entry.js +0 -1
- package/dist/build/p-98d07776.js +0 -2
- package/dist/build/p-bbd1d3df.entry.js +0 -1
- package/dist/build/p-cd525dcc.entry.js +0 -1
- package/dist/paperless/p-1d13a9d2.entry.js +0 -1
- package/dist/paperless/p-208c1f28.entry.js +0 -1
- package/dist/paperless/p-98d07776.js +0 -2
- package/dist/paperless/p-bbd1d3df.entry.js +0 -1
- package/dist/paperless/p-cd525dcc.entry.js +0 -1
package/dist/sw.js
CHANGED
|
@@ -27,33 +27,51 @@ self.addEventListener('message', (event) => {
|
|
|
27
27
|
self.__precacheManifest = [
|
|
28
28
|
{
|
|
29
29
|
"url": "index.html",
|
|
30
|
-
"revision": "
|
|
30
|
+
"revision": "49dffcf4b049502e4c077bc3b56c0764"
|
|
31
31
|
},
|
|
32
32
|
{
|
|
33
33
|
"url": "build/index.esm.js",
|
|
34
34
|
"revision": "d41d8cd98f00b204e9800998ecf8427e"
|
|
35
35
|
},
|
|
36
36
|
{
|
|
37
|
-
"url": "build/p-
|
|
37
|
+
"url": "build/p-17c11169.entry.js"
|
|
38
38
|
},
|
|
39
39
|
{
|
|
40
|
-
"url": "build/p-
|
|
40
|
+
"url": "build/p-42dab9d4.entry.js"
|
|
41
41
|
},
|
|
42
42
|
{
|
|
43
|
-
"url": "build/p-
|
|
43
|
+
"url": "build/p-47b52f92.entry.js"
|
|
44
44
|
},
|
|
45
45
|
{
|
|
46
|
-
"url": "build/p-
|
|
46
|
+
"url": "build/p-554b5a22.entry.js"
|
|
47
47
|
},
|
|
48
48
|
{
|
|
49
|
-
"url": "build/p-
|
|
49
|
+
"url": "build/p-5ec6ea71.entry.js"
|
|
50
50
|
},
|
|
51
51
|
{
|
|
52
|
-
"url": "build/p-
|
|
52
|
+
"url": "build/p-76464e0b.js"
|
|
53
53
|
},
|
|
54
54
|
{
|
|
55
|
-
"url": "
|
|
56
|
-
|
|
55
|
+
"url": "build/p-8501ba07.entry.js"
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
"url": "build/p-aae3d4f0.entry.js"
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
"url": "build/p-adcb0b93.entry.js"
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"url": "build/p-bbec0e86.entry.js"
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"url": "build/p-d23e4d57.entry.js"
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
"url": "build/p-f65d7bbf.entry.js"
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"url": "cjs/index-a46a39a5.js",
|
|
74
|
+
"revision": "1441b70dfec8d85b81b3a1e89d1910de"
|
|
57
75
|
},
|
|
58
76
|
{
|
|
59
77
|
"url": "cjs/index.cjs.js",
|
|
@@ -61,50 +79,110 @@ self.__precacheManifest = [
|
|
|
61
79
|
},
|
|
62
80
|
{
|
|
63
81
|
"url": "cjs/loader.cjs.js",
|
|
64
|
-
"revision": "
|
|
82
|
+
"revision": "1c7c2cb5fc577b72788885d0a5a1a5e4"
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
"url": "cjs/p-avatar.cjs.entry.js",
|
|
86
|
+
"revision": "d96bd7a1349bdc65653b3c37b53ff0ac"
|
|
65
87
|
},
|
|
66
88
|
{
|
|
67
|
-
"url": "cjs/p-
|
|
68
|
-
"revision": "89d0daad45540c3fa136b9230f8d97ee"
|
|
89
|
+
"url": "cjs/p-button_3.cjs.entry.js"
|
|
69
90
|
},
|
|
70
91
|
{
|
|
71
|
-
"url": "cjs/p-
|
|
72
|
-
"revision": "
|
|
92
|
+
"url": "cjs/p-counter.cjs.entry.js",
|
|
93
|
+
"revision": "95f6eb1e8c838d0bee480d767099225c"
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
"url": "cjs/p-divider.cjs.entry.js",
|
|
97
|
+
"revision": "dffd1bc81d34ba6263f0f1a53460b15e"
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
"url": "cjs/p-helper.cjs.entry.js",
|
|
101
|
+
"revision": "86124c63cc662f8c3474e0c01bbdc97f"
|
|
73
102
|
},
|
|
74
103
|
{
|
|
75
104
|
"url": "cjs/p-illustration.cjs.entry.js"
|
|
76
105
|
},
|
|
77
106
|
{
|
|
78
|
-
"url": "cjs/p-
|
|
79
|
-
"revision": "
|
|
107
|
+
"url": "cjs/p-info-panel.cjs.entry.js",
|
|
108
|
+
"revision": "a56fe670ade927b12c6b54d62b55ecc2"
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
"url": "cjs/p-navigation-item.cjs.entry.js"
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
"url": "cjs/p-pagination-item.cjs.entry.js"
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
"url": "cjs/p-pagination.cjs.entry.js"
|
|
80
118
|
},
|
|
81
119
|
{
|
|
82
120
|
"url": "cjs/p-tooltip.cjs.entry.js",
|
|
83
|
-
"revision": "
|
|
121
|
+
"revision": "246b975d80787f3befec8af7fb236504"
|
|
84
122
|
},
|
|
85
123
|
{
|
|
86
124
|
"url": "cjs/paperless.cjs.js",
|
|
87
|
-
"revision": "
|
|
125
|
+
"revision": "07a85c2b66bc67b78bb5609346faaa3b"
|
|
88
126
|
},
|
|
89
127
|
{
|
|
90
128
|
"url": "collection/collection-manifest.json",
|
|
91
|
-
"revision": "
|
|
129
|
+
"revision": "31e507429d817f8f162ed3261d89103f"
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
"url": "collection/components/atoms/avatar/avatar.component.css",
|
|
133
|
+
"revision": "5c2accbd0b764ac7d33ebb053970cade"
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
"url": "collection/components/atoms/avatar/avatar.component.js",
|
|
137
|
+
"revision": "c84ee4d6195e362aa16381382dc85fdf"
|
|
92
138
|
},
|
|
93
139
|
{
|
|
94
140
|
"url": "collection/components/atoms/button/button.component.css",
|
|
95
|
-
"revision": "
|
|
141
|
+
"revision": "170a89ffed517b7ed3b01b77e01510e5"
|
|
96
142
|
},
|
|
97
143
|
{
|
|
98
144
|
"url": "collection/components/atoms/button/button.component.js",
|
|
99
|
-
"revision": "
|
|
145
|
+
"revision": "25fe7c023d6f7b2fb354631aa3ecd149"
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
"url": "collection/components/atoms/counter/counter.component.css",
|
|
149
|
+
"revision": "0306cb9ae620f39332f40b9a45166736"
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
"url": "collection/components/atoms/counter/counter.component.js",
|
|
153
|
+
"revision": "08a4509548d9bdcacabf5986ce2f79d9"
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
"url": "collection/components/atoms/divider/divider.component.css",
|
|
157
|
+
"revision": "32d9436e2f17d367f4227264ba85e0da"
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
"url": "collection/components/atoms/divider/divider.component.js",
|
|
161
|
+
"revision": "9f833473cedfa73656dd1ae6f6efdfec"
|
|
162
|
+
},
|
|
163
|
+
{
|
|
164
|
+
"url": "collection/components/atoms/helper/helper.component.css",
|
|
165
|
+
"revision": "65e212ff144d1cd849f1c8be4f457b03"
|
|
166
|
+
},
|
|
167
|
+
{
|
|
168
|
+
"url": "collection/components/atoms/helper/helper.component.js",
|
|
169
|
+
"revision": "4fe8f01eed15d2b36dbcbf24a2b4c0af"
|
|
100
170
|
},
|
|
101
171
|
{
|
|
102
172
|
"url": "collection/components/atoms/icon/icon.component.js",
|
|
103
|
-
"revision": "
|
|
173
|
+
"revision": "bef0873637adf15ce651dda4712e7b93"
|
|
104
174
|
},
|
|
105
175
|
{
|
|
106
176
|
"url": "collection/components/atoms/illustration/illustration.component.js",
|
|
107
|
-
"revision": "
|
|
177
|
+
"revision": "6d2af6f5039a97474e2032af508eb9fa"
|
|
178
|
+
},
|
|
179
|
+
{
|
|
180
|
+
"url": "collection/components/atoms/info-panel/info-panel.component.css",
|
|
181
|
+
"revision": "c84da3f748bf62c7986956d94166f927"
|
|
182
|
+
},
|
|
183
|
+
{
|
|
184
|
+
"url": "collection/components/atoms/info-panel/info-panel.component.js",
|
|
185
|
+
"revision": "93c1e96ee080a2978c92d6451d743475"
|
|
108
186
|
},
|
|
109
187
|
{
|
|
110
188
|
"url": "collection/components/atoms/loader/loader.component.css",
|
|
@@ -112,15 +190,39 @@ self.__precacheManifest = [
|
|
|
112
190
|
},
|
|
113
191
|
{
|
|
114
192
|
"url": "collection/components/atoms/loader/loader.component.js",
|
|
115
|
-
"revision": "
|
|
193
|
+
"revision": "5a6bf5291e43eb857fe0270f94984feb"
|
|
194
|
+
},
|
|
195
|
+
{
|
|
196
|
+
"url": "collection/components/atoms/pagination-item/pagination-item.component.css",
|
|
197
|
+
"revision": "62773e29e1a9bba16324bd6b3437eca8"
|
|
198
|
+
},
|
|
199
|
+
{
|
|
200
|
+
"url": "collection/components/atoms/pagination-item/pagination-item.component.js",
|
|
201
|
+
"revision": "98aed8c7967a53019965da0cc5706fa6"
|
|
116
202
|
},
|
|
117
203
|
{
|
|
118
204
|
"url": "collection/components/atoms/tooltip/tooltip.component.css",
|
|
119
|
-
"revision": "
|
|
205
|
+
"revision": "4260963624f8e2786e949d7776e0c697"
|
|
120
206
|
},
|
|
121
207
|
{
|
|
122
208
|
"url": "collection/components/atoms/tooltip/tooltip.component.js",
|
|
123
|
-
"revision": "
|
|
209
|
+
"revision": "fa5ee8728be749834e7c9c0cfadc2c37"
|
|
210
|
+
},
|
|
211
|
+
{
|
|
212
|
+
"url": "collection/components/molecules/navigation-item/navigation-item.component.css",
|
|
213
|
+
"revision": "700eec5a57eb9687a9c93b7bd871c1eb"
|
|
214
|
+
},
|
|
215
|
+
{
|
|
216
|
+
"url": "collection/components/molecules/navigation-item/navigation-item.component.js",
|
|
217
|
+
"revision": "537b3896890b39125477c7bb7bcb6064"
|
|
218
|
+
},
|
|
219
|
+
{
|
|
220
|
+
"url": "collection/components/molecules/pagination/pagination.component.css",
|
|
221
|
+
"revision": "fcc0a8297f3356ad6e03e4677f64d6ca"
|
|
222
|
+
},
|
|
223
|
+
{
|
|
224
|
+
"url": "collection/components/molecules/pagination/pagination.component.js",
|
|
225
|
+
"revision": "85f00230ce5445b19eaa911b1bda1891"
|
|
124
226
|
},
|
|
125
227
|
{
|
|
126
228
|
"url": "collection/index.js",
|
|
@@ -128,11 +230,11 @@ self.__precacheManifest = [
|
|
|
128
230
|
},
|
|
129
231
|
{
|
|
130
232
|
"url": "collection/tailwind.config.js",
|
|
131
|
-
"revision": "
|
|
233
|
+
"revision": "7806aaeaf0d7b8b09761f370f16cdddd"
|
|
132
234
|
},
|
|
133
235
|
{
|
|
134
236
|
"url": "collection/tailwind/border-radius.js",
|
|
135
|
-
"revision": "
|
|
237
|
+
"revision": "86dcdc42dd938be4f372498e935c8014"
|
|
136
238
|
},
|
|
137
239
|
{
|
|
138
240
|
"url": "collection/tailwind/colors.js",
|
|
@@ -140,7 +242,7 @@ self.__precacheManifest = [
|
|
|
140
242
|
},
|
|
141
243
|
{
|
|
142
244
|
"url": "collection/tailwind/grid.js",
|
|
143
|
-
"revision": "
|
|
245
|
+
"revision": "c6da38d71fa9e178c09e6caeb9214825"
|
|
144
246
|
},
|
|
145
247
|
{
|
|
146
248
|
"url": "collection/tailwind/rotate.js",
|
|
@@ -166,32 +268,81 @@ self.__precacheManifest = [
|
|
|
166
268
|
"url": "collection/utils/utils.js",
|
|
167
269
|
"revision": "4beb8ca8a76230f44db73b6109a0043d"
|
|
168
270
|
},
|
|
271
|
+
{
|
|
272
|
+
"url": "components/counter.component.js",
|
|
273
|
+
"revision": "911d5809b4d2c911c110725d0d1d1109"
|
|
274
|
+
},
|
|
275
|
+
{
|
|
276
|
+
"url": "components/icon.component.js",
|
|
277
|
+
"revision": "6f0cdad1b7014d8f3ae3cacfb4d4a788"
|
|
278
|
+
},
|
|
169
279
|
{
|
|
170
280
|
"url": "components/index.js",
|
|
171
|
-
"revision": "
|
|
281
|
+
"revision": "51ff1409618d314d7f34f3f182c1d87e"
|
|
282
|
+
},
|
|
283
|
+
{
|
|
284
|
+
"url": "components/loader.component.js",
|
|
285
|
+
"revision": "1d91aaf34426a6ef384b2222cec2bd59"
|
|
286
|
+
},
|
|
287
|
+
{
|
|
288
|
+
"url": "components/p-avatar.js",
|
|
289
|
+
"revision": "7992a85b7b2f099d2f08d58aef03ba9e"
|
|
172
290
|
},
|
|
173
291
|
{
|
|
174
292
|
"url": "components/p-button.js",
|
|
175
|
-
"revision": "
|
|
293
|
+
"revision": "978a2a4385f3073b45f0a59399ee396e"
|
|
294
|
+
},
|
|
295
|
+
{
|
|
296
|
+
"url": "components/p-counter.js",
|
|
297
|
+
"revision": "f8970c28058f570a9d70ea483c91484f"
|
|
298
|
+
},
|
|
299
|
+
{
|
|
300
|
+
"url": "components/p-divider.js",
|
|
301
|
+
"revision": "9c250d87d2c36df0e7ade25a49b7f05b"
|
|
302
|
+
},
|
|
303
|
+
{
|
|
304
|
+
"url": "components/p-helper.js",
|
|
305
|
+
"revision": "2bf903fe1e147a5e6cb9f7d1021f2a74"
|
|
176
306
|
},
|
|
177
307
|
{
|
|
178
308
|
"url": "components/p-icon.js",
|
|
179
|
-
"revision": "
|
|
309
|
+
"revision": "89ede38633ef7c3b9ed45a67a2ffe2c8"
|
|
180
310
|
},
|
|
181
311
|
{
|
|
182
312
|
"url": "components/p-illustration.js"
|
|
183
313
|
},
|
|
314
|
+
{
|
|
315
|
+
"url": "components/p-info-panel.js",
|
|
316
|
+
"revision": "6a123a28f5cfbedcd2faf9dd951934a4"
|
|
317
|
+
},
|
|
184
318
|
{
|
|
185
319
|
"url": "components/p-loader.js",
|
|
186
|
-
"revision": "
|
|
320
|
+
"revision": "850d0015b16c8a34f62568d99ccdd388"
|
|
321
|
+
},
|
|
322
|
+
{
|
|
323
|
+
"url": "components/p-navigation-item.js"
|
|
324
|
+
},
|
|
325
|
+
{
|
|
326
|
+
"url": "components/p-pagination-item.js"
|
|
327
|
+
},
|
|
328
|
+
{
|
|
329
|
+
"url": "components/p-pagination.js"
|
|
187
330
|
},
|
|
188
331
|
{
|
|
189
332
|
"url": "components/p-tooltip.js",
|
|
190
|
-
"revision": "
|
|
333
|
+
"revision": "7648cc97b4186f3174a1230ee12c97ea"
|
|
334
|
+
},
|
|
335
|
+
{
|
|
336
|
+
"url": "components/pagination-item.component.js",
|
|
337
|
+
"revision": "10baef8c3ca906afd9b51a99ec60debc"
|
|
191
338
|
},
|
|
192
339
|
{
|
|
193
|
-
"url": "
|
|
194
|
-
"revision": "
|
|
340
|
+
"url": "components/tooltip.component.js",
|
|
341
|
+
"revision": "844880aeb1c4aa83e5f75191607cca93"
|
|
342
|
+
},
|
|
343
|
+
{
|
|
344
|
+
"url": "esm/index-a68e547b.js",
|
|
345
|
+
"revision": "9be40121427940a4da6a707aca693268"
|
|
195
346
|
},
|
|
196
347
|
{
|
|
197
348
|
"url": "esm/index.js",
|
|
@@ -199,26 +350,46 @@ self.__precacheManifest = [
|
|
|
199
350
|
},
|
|
200
351
|
{
|
|
201
352
|
"url": "esm/loader.js",
|
|
202
|
-
"revision": "
|
|
353
|
+
"revision": "c5de2b388ada4e199e2ecb740f66b1bf"
|
|
354
|
+
},
|
|
355
|
+
{
|
|
356
|
+
"url": "esm/p-avatar.entry.js",
|
|
357
|
+
"revision": "079b6d2a04f816a3fa15062ed5077f75"
|
|
203
358
|
},
|
|
204
359
|
{
|
|
205
|
-
"url": "esm/p-
|
|
206
|
-
"revision": "1d2b831c7958eb09b19f4496140de869"
|
|
360
|
+
"url": "esm/p-button_3.entry.js"
|
|
207
361
|
},
|
|
208
362
|
{
|
|
209
|
-
"url": "esm/p-
|
|
210
|
-
"revision": "
|
|
363
|
+
"url": "esm/p-counter.entry.js",
|
|
364
|
+
"revision": "32b02ce509210df95e736a054fd21e41"
|
|
365
|
+
},
|
|
366
|
+
{
|
|
367
|
+
"url": "esm/p-divider.entry.js",
|
|
368
|
+
"revision": "1facb42adb71702df7ca06bd721a2257"
|
|
369
|
+
},
|
|
370
|
+
{
|
|
371
|
+
"url": "esm/p-helper.entry.js",
|
|
372
|
+
"revision": "9030a9caa68e912e7091a728005cbbeb"
|
|
211
373
|
},
|
|
212
374
|
{
|
|
213
375
|
"url": "esm/p-illustration.entry.js"
|
|
214
376
|
},
|
|
215
377
|
{
|
|
216
|
-
"url": "esm/p-
|
|
217
|
-
"revision": "
|
|
378
|
+
"url": "esm/p-info-panel.entry.js",
|
|
379
|
+
"revision": "588155bc28d88f8784844aa9be85c235"
|
|
380
|
+
},
|
|
381
|
+
{
|
|
382
|
+
"url": "esm/p-navigation-item.entry.js"
|
|
383
|
+
},
|
|
384
|
+
{
|
|
385
|
+
"url": "esm/p-pagination-item.entry.js"
|
|
386
|
+
},
|
|
387
|
+
{
|
|
388
|
+
"url": "esm/p-pagination.entry.js"
|
|
218
389
|
},
|
|
219
390
|
{
|
|
220
391
|
"url": "esm/p-tooltip.entry.js",
|
|
221
|
-
"revision": "
|
|
392
|
+
"revision": "cd43b9657fa2596944eea2e165979596"
|
|
222
393
|
},
|
|
223
394
|
{
|
|
224
395
|
"url": "esm/polyfills/core-js.js",
|
|
@@ -257,26 +428,44 @@ self.__precacheManifest = [
|
|
|
257
428
|
"revision": "d41d8cd98f00b204e9800998ecf8427e"
|
|
258
429
|
},
|
|
259
430
|
{
|
|
260
|
-
"url": "paperless/p-
|
|
431
|
+
"url": "paperless/p-17c11169.entry.js"
|
|
432
|
+
},
|
|
433
|
+
{
|
|
434
|
+
"url": "paperless/p-42dab9d4.entry.js"
|
|
435
|
+
},
|
|
436
|
+
{
|
|
437
|
+
"url": "paperless/p-47b52f92.entry.js"
|
|
438
|
+
},
|
|
439
|
+
{
|
|
440
|
+
"url": "paperless/p-554b5a22.entry.js"
|
|
441
|
+
},
|
|
442
|
+
{
|
|
443
|
+
"url": "paperless/p-5ec6ea71.entry.js"
|
|
444
|
+
},
|
|
445
|
+
{
|
|
446
|
+
"url": "paperless/p-76464e0b.js"
|
|
447
|
+
},
|
|
448
|
+
{
|
|
449
|
+
"url": "paperless/p-8501ba07.entry.js"
|
|
261
450
|
},
|
|
262
451
|
{
|
|
263
|
-
"url": "paperless/p-
|
|
452
|
+
"url": "paperless/p-aae3d4f0.entry.js"
|
|
264
453
|
},
|
|
265
454
|
{
|
|
266
|
-
"url": "paperless/p-
|
|
455
|
+
"url": "paperless/p-adcb0b93.entry.js"
|
|
267
456
|
},
|
|
268
457
|
{
|
|
269
|
-
"url": "paperless/p-
|
|
458
|
+
"url": "paperless/p-bbec0e86.entry.js"
|
|
270
459
|
},
|
|
271
460
|
{
|
|
272
|
-
"url": "paperless/p-
|
|
461
|
+
"url": "paperless/p-d23e4d57.entry.js"
|
|
273
462
|
},
|
|
274
463
|
{
|
|
275
|
-
"url": "paperless/p-
|
|
464
|
+
"url": "paperless/p-f65d7bbf.entry.js"
|
|
276
465
|
},
|
|
277
466
|
{
|
|
278
467
|
"url": "tailwind.config.js",
|
|
279
|
-
"revision": "
|
|
468
|
+
"revision": "7806aaeaf0d7b8b09761f370f16cdddd"
|
|
280
469
|
}
|
|
281
470
|
].concat(self.__precacheManifest || []);
|
|
282
471
|
workbox.precaching.precacheAndRoute(self.__precacheManifest, {});
|
package/dist/tailwind.config.js
CHANGED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
export declare class Avatar {
|
|
2
|
+
/**
|
|
3
|
+
* The variant of the avatar
|
|
4
|
+
*/
|
|
5
|
+
variant: 'user' | 'company';
|
|
6
|
+
/**
|
|
7
|
+
* The size of the avatar
|
|
8
|
+
*/
|
|
9
|
+
size: 'small' | 'medium' | 'large';
|
|
10
|
+
/**
|
|
11
|
+
* The default image to show on errors
|
|
12
|
+
*/
|
|
13
|
+
defaultImage: string;
|
|
14
|
+
/**
|
|
15
|
+
* The image used for the avatar
|
|
16
|
+
*/
|
|
17
|
+
src: string;
|
|
18
|
+
private _src;
|
|
19
|
+
render(): any;
|
|
20
|
+
private _setDefaultLink;
|
|
21
|
+
}
|
|
@@ -1,7 +1,51 @@
|
|
|
1
|
+
import { EventEmitter } from '../../../stencil-public-runtime';
|
|
2
|
+
import { IconFlipOptions, IconVariant } from '../icon/icon.component';
|
|
1
3
|
export declare class Button {
|
|
2
4
|
/**
|
|
3
5
|
* The variant of the button
|
|
4
6
|
*/
|
|
5
|
-
variant: 'primary' | 'secondary';
|
|
7
|
+
variant: 'primary' | 'secondary' | 'text';
|
|
8
|
+
/**
|
|
9
|
+
* Href in case of "text" version
|
|
10
|
+
*/
|
|
11
|
+
href: string;
|
|
12
|
+
/**
|
|
13
|
+
* Target in case of "text" version
|
|
14
|
+
*/
|
|
15
|
+
target: string;
|
|
16
|
+
/**
|
|
17
|
+
* The size of the button
|
|
18
|
+
*/
|
|
19
|
+
size: 'small' | 'medium';
|
|
20
|
+
/**
|
|
21
|
+
* Wether to show a loader or not
|
|
22
|
+
*/
|
|
23
|
+
loading: boolean;
|
|
24
|
+
/**
|
|
25
|
+
* Wether the button is disabled
|
|
26
|
+
*/
|
|
27
|
+
disabled: boolean;
|
|
28
|
+
/**
|
|
29
|
+
* Icon to show on the button
|
|
30
|
+
*/
|
|
31
|
+
icon: IconVariant;
|
|
32
|
+
/**
|
|
33
|
+
* Icon position
|
|
34
|
+
*/
|
|
35
|
+
iconPosition: 'start' | 'end';
|
|
36
|
+
/**
|
|
37
|
+
* Icon flip
|
|
38
|
+
*/
|
|
39
|
+
iconFlip: IconFlipOptions;
|
|
40
|
+
/**
|
|
41
|
+
* Icon rotate
|
|
42
|
+
*/
|
|
43
|
+
iconRotate: number;
|
|
44
|
+
/**
|
|
45
|
+
* Button click event
|
|
46
|
+
*/
|
|
47
|
+
onClick: EventEmitter<MouseEvent>;
|
|
6
48
|
render(): any;
|
|
49
|
+
handleClick(ev: MouseEvent): void;
|
|
50
|
+
private _getIcon;
|
|
7
51
|
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
export declare class InfoPanel {
|
|
2
|
+
/**
|
|
3
|
+
* The variant of the info panel
|
|
4
|
+
*/
|
|
5
|
+
variant: 'info' | 'negative' | 'positive' | 'unbiased';
|
|
6
|
+
/**
|
|
7
|
+
* The header of the info panel
|
|
8
|
+
*/
|
|
9
|
+
header: string;
|
|
10
|
+
/**
|
|
11
|
+
* The content of the info panel
|
|
12
|
+
*/
|
|
13
|
+
content: string;
|
|
14
|
+
/**
|
|
15
|
+
* Wether the panel can be closed
|
|
16
|
+
*/
|
|
17
|
+
closeable: boolean;
|
|
18
|
+
/**
|
|
19
|
+
* The host element
|
|
20
|
+
*/
|
|
21
|
+
private _el;
|
|
22
|
+
render(): any;
|
|
23
|
+
private _close;
|
|
24
|
+
}
|
|
@@ -1,28 +1,40 @@
|
|
|
1
1
|
import { Placement } from '@popperjs/core';
|
|
2
2
|
export declare class Tooltip {
|
|
3
3
|
/**
|
|
4
|
-
* The
|
|
4
|
+
* The variant of the popover
|
|
5
5
|
*/
|
|
6
|
-
|
|
6
|
+
variant: 'hover' | 'click';
|
|
7
7
|
/**
|
|
8
|
-
* The content of the
|
|
8
|
+
* The content of the popover
|
|
9
|
+
*/
|
|
10
|
+
popover: any;
|
|
11
|
+
/**
|
|
12
|
+
* The content of the popover
|
|
9
13
|
*/
|
|
10
14
|
placement: Placement;
|
|
11
15
|
/**
|
|
12
|
-
* Wether to
|
|
16
|
+
* Wether to show the popover
|
|
17
|
+
*/
|
|
18
|
+
show: boolean;
|
|
19
|
+
/**
|
|
20
|
+
* Wether to someone can manually close the popover
|
|
13
21
|
*/
|
|
14
|
-
|
|
22
|
+
canManuallyClose: boolean;
|
|
15
23
|
/**
|
|
16
24
|
* The host element
|
|
17
25
|
*/
|
|
18
26
|
private _el;
|
|
19
27
|
private _loaded;
|
|
20
28
|
private _popper;
|
|
21
|
-
private
|
|
29
|
+
private _popover;
|
|
22
30
|
componentShouldUpdate(): void;
|
|
23
31
|
render(): any;
|
|
24
|
-
protected
|
|
25
|
-
protected
|
|
32
|
+
protected clickHandler(): void;
|
|
33
|
+
protected documentClickHandler(): void;
|
|
34
|
+
protected mouseEnterHandler(): void;
|
|
35
|
+
protected mouseLeaveHandler(): void;
|
|
36
|
+
private _show;
|
|
37
|
+
private _hide;
|
|
26
38
|
private _load;
|
|
27
39
|
private _setOptions;
|
|
28
40
|
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { IconVariant } from '../../atoms/icon/icon.component';
|
|
2
|
+
export declare class NavigationItem {
|
|
3
|
+
/**
|
|
4
|
+
* Wether the navigation item is active
|
|
5
|
+
*/
|
|
6
|
+
active: boolean;
|
|
7
|
+
/**
|
|
8
|
+
* Icon of the navigation item
|
|
9
|
+
*/
|
|
10
|
+
icon: IconVariant;
|
|
11
|
+
/**
|
|
12
|
+
* Icon of the navigation item
|
|
13
|
+
*/
|
|
14
|
+
counter: number | string;
|
|
15
|
+
/**
|
|
16
|
+
* The href of the navigation item
|
|
17
|
+
*/
|
|
18
|
+
href: string;
|
|
19
|
+
/**
|
|
20
|
+
* The target of the navigation item
|
|
21
|
+
*/
|
|
22
|
+
target: string;
|
|
23
|
+
render(): any;
|
|
24
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { EventEmitter } from '../../../stencil-public-runtime';
|
|
2
|
+
export declare class Pagination {
|
|
3
|
+
/**
|
|
4
|
+
* The current page
|
|
5
|
+
*/
|
|
6
|
+
page: number;
|
|
7
|
+
pageChange: EventEmitter<number>;
|
|
8
|
+
/**
|
|
9
|
+
* The amount of items per page
|
|
10
|
+
*/
|
|
11
|
+
pageSize: number;
|
|
12
|
+
/**
|
|
13
|
+
* The total amount of items
|
|
14
|
+
*/
|
|
15
|
+
total: number;
|
|
16
|
+
private _pages;
|
|
17
|
+
private _set;
|
|
18
|
+
componentWillRender(): void;
|
|
19
|
+
render(): any;
|
|
20
|
+
protected pageChangeHandler(): void;
|
|
21
|
+
private _generate;
|
|
22
|
+
private _changePage;
|
|
23
|
+
private _previousClick;
|
|
24
|
+
private _nextClick;
|
|
25
|
+
private _pageClick;
|
|
26
|
+
private _generatePages;
|
|
27
|
+
private _generateSet;
|
|
28
|
+
}
|