@maggioli-design-system/mds-paginator 1.0.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.
- package/dist/cjs/index-970ace02.js +1203 -0
- package/dist/cjs/index.cjs.js +2 -0
- package/dist/cjs/loader.cjs.js +21 -0
- package/dist/cjs/mds-paginator.cjs.entry.js +59 -0
- package/dist/cjs/mds-paginator.cjs.js +19 -0
- package/dist/collection/collection-manifest.json +12 -0
- package/dist/collection/components/mds-paginator/mds-paginator.css +73 -0
- package/dist/collection/components/mds-paginator/mds-paginator.js +114 -0
- package/dist/collection/components/mds-paginator/test/mds-paginator.stories.js +26 -0
- package/dist/collection/dictionary/autocomplete.js +59 -0
- package/dist/collection/dictionary/button.js +26 -0
- package/dist/collection/dictionary/color.js +19 -0
- package/dist/collection/dictionary/floating-ui.js +19 -0
- package/dist/collection/dictionary/icon.js +3 -0
- package/dist/collection/dictionary/input-text-type.js +13 -0
- package/dist/collection/dictionary/loading.js +5 -0
- package/dist/collection/dictionary/typography.js +59 -0
- package/dist/collection/dictionary/variant.js +65 -0
- package/dist/collection/fixtures/cities.js +110 -0
- package/dist/collection/interface/input-value.js +1 -0
- package/dist/collection/types/autocomplete.js +1 -0
- package/dist/collection/types/button.js +1 -0
- package/dist/collection/types/floating-ui.js +1 -0
- package/dist/collection/types/form-rel.js +1 -0
- package/dist/collection/types/input-text-type.js +1 -0
- package/dist/collection/types/input-value-type.js +1 -0
- package/dist/collection/types/loading.js +1 -0
- package/dist/collection/types/typography.js +1 -0
- package/dist/collection/types/variant.js +1 -0
- package/dist/components/index.d.ts +22 -0
- package/dist/components/index.js +2 -0
- package/dist/components/mds-paginator.d.ts +11 -0
- package/dist/components/mds-paginator.js +76 -0
- package/dist/esm/index-2c9f4cc7.js +1175 -0
- package/dist/esm/index.js +1 -0
- package/dist/esm/loader.js +17 -0
- package/dist/esm/mds-paginator.entry.js +55 -0
- package/dist/esm/mds-paginator.js +17 -0
- package/dist/esm/polyfills/core-js.js +11 -0
- package/dist/esm/polyfills/css-shim.js +1 -0
- package/dist/esm/polyfills/dom.js +79 -0
- package/dist/esm/polyfills/es5-html-element.js +1 -0
- package/dist/esm/polyfills/index.js +34 -0
- package/dist/esm/polyfills/system.js +6 -0
- package/dist/esm-es5/index-2c9f4cc7.js +2 -0
- package/dist/esm-es5/index.js +0 -0
- package/dist/esm-es5/loader.js +1 -0
- package/dist/esm-es5/mds-paginator.entry.js +1 -0
- package/dist/esm-es5/mds-paginator.js +1 -0
- package/dist/index.cjs.js +1 -0
- package/dist/index.js +1 -0
- package/dist/mds-paginator/index.esm.js +0 -0
- package/dist/mds-paginator/mds-paginator.esm.js +1 -0
- package/dist/mds-paginator/mds-paginator.js +130 -0
- package/dist/mds-paginator/p-1af6182a.entry.js +1 -0
- package/dist/mds-paginator/p-4e602610.js +2 -0
- package/dist/mds-paginator/p-50ea2036.system.js +1 -0
- package/dist/mds-paginator/p-580a8708.system.js +2 -0
- package/dist/mds-paginator/p-628f5264.system.js +1 -0
- package/dist/mds-paginator/p-d71311fc.system.entry.js +1 -0
- package/dist/stats.json +487 -0
- package/dist/types/components/mds-paginator/mds-paginator.d.ts +20 -0
- package/dist/types/components/mds-paginator/test/mds-paginator.stories.d.ts +22 -0
- package/dist/types/components.d.ts +61 -0
- package/dist/types/dictionary/autocomplete.d.ts +2 -0
- package/dist/types/dictionary/button.d.ts +5 -0
- package/dist/types/dictionary/color.d.ts +3 -0
- package/dist/types/dictionary/floating-ui.d.ts +3 -0
- package/dist/types/dictionary/icon.d.ts +2 -0
- package/dist/types/dictionary/input-text-type.d.ts +2 -0
- package/dist/types/dictionary/loading.d.ts +2 -0
- package/dist/types/dictionary/typography.d.ts +9 -0
- package/dist/types/dictionary/variant.d.ts +9 -0
- package/dist/types/fixtures/cities.d.ts +2 -0
- package/dist/types/interface/input-value.d.ts +4 -0
- package/dist/types/stencil-public-runtime.d.ts +1565 -0
- package/dist/types/types/autocomplete.d.ts +2 -0
- package/dist/types/types/button.d.ts +4 -0
- package/dist/types/types/floating-ui.d.ts +2 -0
- package/dist/types/types/form-rel.d.ts +1 -0
- package/dist/types/types/input-text-type.d.ts +1 -0
- package/dist/types/types/input-value-type.d.ts +1 -0
- package/dist/types/types/loading.d.ts +1 -0
- package/dist/types/types/typography.d.ts +8 -0
- package/dist/types/types/variant.d.ts +10 -0
- package/loader/cdn.js +3 -0
- package/loader/index.cjs.js +3 -0
- package/loader/index.d.ts +12 -0
- package/loader/index.es2017.js +3 -0
- package/loader/index.js +4 -0
- package/loader/package.json +10 -0
- package/package.json +47 -0
- package/readme.md +40 -0
- package/src/components/mds-paginator/.gitlab-ci.yml +25 -0
- package/src/components/mds-paginator/mds-paginator.css +41 -0
- package/src/components/mds-paginator/mds-paginator.tsx +78 -0
- package/src/components/mds-paginator/readme.md +25 -0
- package/src/components/mds-paginator/test/mds-paginator.e2e.ts +12 -0
- package/src/components/mds-paginator/test/mds-paginator.spec.tsx +19 -0
- package/src/components/mds-paginator/test/mds-paginator.stories.tsx +31 -0
- package/src/components.d.ts +61 -0
- package/src/dictionary/autocomplete.ts +62 -0
- package/src/dictionary/button.ts +35 -0
- package/src/dictionary/color.ts +24 -0
- package/src/dictionary/floating-ui.ts +25 -0
- package/src/dictionary/icon.ts +5 -0
- package/src/dictionary/input-text-type.ts +17 -0
- package/src/dictionary/loading.ts +9 -0
- package/src/dictionary/typography.ts +76 -0
- package/src/dictionary/variant.ts +82 -0
- package/src/fixtures/cities.ts +116 -0
- package/src/fixtures/icons.json +65 -0
- package/src/interface/input-value.ts +5 -0
- package/src/tailwind/components.css +14 -0
- package/src/types/autocomplete.ts +69 -0
- package/src/types/button.ts +24 -0
- package/src/types/floating-ui.ts +17 -0
- package/src/types/form-rel.ts +11 -0
- package/src/types/input-text-type.ts +11 -0
- package/src/types/input-value-type.ts +5 -0
- package/src/types/loading.ts +3 -0
- package/src/types/typography.ts +57 -0
- package/src/types/variant.ts +73 -0
- package/www/build/index.esm.js +0 -0
- package/www/build/mds-paginator.esm.js +1 -0
- package/www/build/mds-paginator.js +130 -0
- package/www/build/p-1af6182a.entry.js +1 -0
- package/www/build/p-4e602610.js +2 -0
- package/www/build/p-50ea2036.system.js +1 -0
- package/www/build/p-580a8708.system.js +2 -0
- package/www/build/p-628f5264.system.js +1 -0
- package/www/build/p-d71311fc.system.entry.js +1 -0
- package/www/host.config.json +15 -0
package/dist/stats.json
ADDED
|
@@ -0,0 +1,487 @@
|
|
|
1
|
+
{
|
|
2
|
+
"timestamp": "2022-06-28T08:34:03",
|
|
3
|
+
"compiler": {
|
|
4
|
+
"name": "node",
|
|
5
|
+
"version": "16.13.0"
|
|
6
|
+
},
|
|
7
|
+
"app": {
|
|
8
|
+
"namespace": "MdsPaginator",
|
|
9
|
+
"fsNamespace": "mds-paginator",
|
|
10
|
+
"components": 1,
|
|
11
|
+
"entries": 1,
|
|
12
|
+
"bundles": 63,
|
|
13
|
+
"outputs": [
|
|
14
|
+
{
|
|
15
|
+
"name": "dist-collection",
|
|
16
|
+
"files": 22,
|
|
17
|
+
"generatedFiles": [
|
|
18
|
+
"./dist/collection/components/mds-paginator/mds-paginator.js",
|
|
19
|
+
"./dist/collection/components/mds-paginator/test/mds-paginator.stories.js",
|
|
20
|
+
"./dist/collection/dictionary/autocomplete.js",
|
|
21
|
+
"./dist/collection/dictionary/button.js",
|
|
22
|
+
"./dist/collection/dictionary/color.js",
|
|
23
|
+
"./dist/collection/dictionary/floating-ui.js",
|
|
24
|
+
"./dist/collection/dictionary/icon.js",
|
|
25
|
+
"./dist/collection/dictionary/input-text-type.js",
|
|
26
|
+
"./dist/collection/dictionary/loading.js",
|
|
27
|
+
"./dist/collection/dictionary/typography.js",
|
|
28
|
+
"./dist/collection/dictionary/variant.js",
|
|
29
|
+
"./dist/collection/fixtures/cities.js",
|
|
30
|
+
"./dist/collection/interface/input-value.js",
|
|
31
|
+
"./dist/collection/types/autocomplete.js",
|
|
32
|
+
"./dist/collection/types/button.js",
|
|
33
|
+
"./dist/collection/types/floating-ui.js",
|
|
34
|
+
"./dist/collection/types/form-rel.js",
|
|
35
|
+
"./dist/collection/types/input-text-type.js",
|
|
36
|
+
"./dist/collection/types/input-value-type.js",
|
|
37
|
+
"./dist/collection/types/loading.js",
|
|
38
|
+
"./dist/collection/types/typography.js",
|
|
39
|
+
"./dist/collection/types/variant.js"
|
|
40
|
+
]
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"name": "dist-custom-elements",
|
|
44
|
+
"files": 4,
|
|
45
|
+
"generatedFiles": [
|
|
46
|
+
"./dist/components/index.d.ts",
|
|
47
|
+
"./dist/components/index.js",
|
|
48
|
+
"./dist/components/mds-paginator.d.ts",
|
|
49
|
+
"./dist/components/mds-paginator.js"
|
|
50
|
+
]
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"name": "dist-lazy",
|
|
54
|
+
"files": 35,
|
|
55
|
+
"generatedFiles": [
|
|
56
|
+
"./dist/cjs/index-970ace02.js",
|
|
57
|
+
"./dist/cjs/index.cjs.js",
|
|
58
|
+
"./dist/cjs/loader.cjs.js",
|
|
59
|
+
"./dist/cjs/mds-paginator.cjs.entry.js",
|
|
60
|
+
"./dist/cjs/mds-paginator.cjs.js",
|
|
61
|
+
"./dist/esm-es5/index-2c9f4cc7.js",
|
|
62
|
+
"./dist/esm-es5/index.js",
|
|
63
|
+
"./dist/esm-es5/loader.js",
|
|
64
|
+
"./dist/esm-es5/mds-paginator.entry.js",
|
|
65
|
+
"./dist/esm-es5/mds-paginator.js",
|
|
66
|
+
"./dist/esm/index-2c9f4cc7.js",
|
|
67
|
+
"./dist/esm/index.js",
|
|
68
|
+
"./dist/esm/loader.js",
|
|
69
|
+
"./dist/esm/mds-paginator.entry.js",
|
|
70
|
+
"./dist/esm/mds-paginator.js",
|
|
71
|
+
"./dist/index.cjs.js",
|
|
72
|
+
"./dist/index.js",
|
|
73
|
+
"./dist/mds-paginator/index.esm.js",
|
|
74
|
+
"./dist/mds-paginator/mds-paginator.esm.js",
|
|
75
|
+
"./dist/mds-paginator/mds-paginator.js",
|
|
76
|
+
"./dist/mds-paginator/p-1af6182a.entry.js",
|
|
77
|
+
"./dist/mds-paginator/p-4e602610.js",
|
|
78
|
+
"./dist/mds-paginator/p-50ea2036.system.js",
|
|
79
|
+
"./dist/mds-paginator/p-580a8708.system.js",
|
|
80
|
+
"./dist/mds-paginator/p-628f5264.system.js",
|
|
81
|
+
"./dist/mds-paginator/p-d71311fc.system.entry.js",
|
|
82
|
+
"./www/build/index.esm.js",
|
|
83
|
+
"./www/build/mds-paginator.esm.js",
|
|
84
|
+
"./www/build/mds-paginator.js",
|
|
85
|
+
"./www/build/p-1af6182a.entry.js",
|
|
86
|
+
"./www/build/p-4e602610.js",
|
|
87
|
+
"./www/build/p-50ea2036.system.js",
|
|
88
|
+
"./www/build/p-580a8708.system.js",
|
|
89
|
+
"./www/build/p-628f5264.system.js",
|
|
90
|
+
"./www/build/p-d71311fc.system.entry.js"
|
|
91
|
+
]
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
"name": "dist-types",
|
|
95
|
+
"files": 1,
|
|
96
|
+
"generatedFiles": [
|
|
97
|
+
"./dist/types/stencil-public-runtime.d.ts"
|
|
98
|
+
]
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
"name": "www",
|
|
102
|
+
"files": 1,
|
|
103
|
+
"generatedFiles": [
|
|
104
|
+
"./www/host.config.json"
|
|
105
|
+
]
|
|
106
|
+
}
|
|
107
|
+
]
|
|
108
|
+
},
|
|
109
|
+
"options": {
|
|
110
|
+
"minifyJs": true,
|
|
111
|
+
"minifyCss": true,
|
|
112
|
+
"hashFileNames": true,
|
|
113
|
+
"hashedFileNameLength": 8,
|
|
114
|
+
"buildEs5": true
|
|
115
|
+
},
|
|
116
|
+
"formats": {
|
|
117
|
+
"esmBrowser": [
|
|
118
|
+
{
|
|
119
|
+
"key": "mds-paginator.entry",
|
|
120
|
+
"components": [
|
|
121
|
+
"mds-paginator"
|
|
122
|
+
],
|
|
123
|
+
"bundleId": "p-1af6182a",
|
|
124
|
+
"fileName": "p-1af6182a.entry.js",
|
|
125
|
+
"imports": [
|
|
126
|
+
"p-4e602610.js"
|
|
127
|
+
],
|
|
128
|
+
"originalByteSize": 3504
|
|
129
|
+
}
|
|
130
|
+
],
|
|
131
|
+
"esm": [
|
|
132
|
+
{
|
|
133
|
+
"key": "mds-paginator.entry",
|
|
134
|
+
"components": [
|
|
135
|
+
"mds-paginator"
|
|
136
|
+
],
|
|
137
|
+
"bundleId": "mds-paginator",
|
|
138
|
+
"fileName": "mds-paginator.entry.js",
|
|
139
|
+
"imports": [
|
|
140
|
+
"index-2c9f4cc7.js"
|
|
141
|
+
],
|
|
142
|
+
"originalByteSize": 3508
|
|
143
|
+
}
|
|
144
|
+
],
|
|
145
|
+
"es5": [
|
|
146
|
+
{
|
|
147
|
+
"key": "mds-paginator.entry",
|
|
148
|
+
"components": [
|
|
149
|
+
"mds-paginator"
|
|
150
|
+
],
|
|
151
|
+
"bundleId": "mds-paginator",
|
|
152
|
+
"fileName": "mds-paginator.entry.js",
|
|
153
|
+
"imports": [
|
|
154
|
+
"index-2c9f4cc7.js"
|
|
155
|
+
],
|
|
156
|
+
"originalByteSize": 3508
|
|
157
|
+
}
|
|
158
|
+
],
|
|
159
|
+
"system": [
|
|
160
|
+
{
|
|
161
|
+
"key": "mds-paginator.entry",
|
|
162
|
+
"components": [
|
|
163
|
+
"mds-paginator"
|
|
164
|
+
],
|
|
165
|
+
"bundleId": "p-d71311fc.system",
|
|
166
|
+
"fileName": "p-d71311fc.system.entry.js",
|
|
167
|
+
"imports": [
|
|
168
|
+
"p-580a8708.system.js"
|
|
169
|
+
],
|
|
170
|
+
"originalByteSize": 4053
|
|
171
|
+
}
|
|
172
|
+
],
|
|
173
|
+
"commonjs": [
|
|
174
|
+
{
|
|
175
|
+
"key": "mds-paginator.entry",
|
|
176
|
+
"components": [
|
|
177
|
+
"mds-paginator"
|
|
178
|
+
],
|
|
179
|
+
"bundleId": "mds-paginator.cjs",
|
|
180
|
+
"fileName": "mds-paginator.cjs.entry.js",
|
|
181
|
+
"imports": [
|
|
182
|
+
"index-970ace02.js"
|
|
183
|
+
],
|
|
184
|
+
"originalByteSize": 3585
|
|
185
|
+
}
|
|
186
|
+
]
|
|
187
|
+
},
|
|
188
|
+
"components": [
|
|
189
|
+
{
|
|
190
|
+
"tag": "mds-paginator",
|
|
191
|
+
"path": "./src/components/mds-paginator/mds-paginator.js",
|
|
192
|
+
"source": "./src/components/mds-paginator/mds-paginator.tsx",
|
|
193
|
+
"elementRef": "element",
|
|
194
|
+
"componentClassName": "MdsPaginator",
|
|
195
|
+
"assetsDirs": [],
|
|
196
|
+
"dependencies": [],
|
|
197
|
+
"dependents": [],
|
|
198
|
+
"directDependencies": [],
|
|
199
|
+
"directDependents": [],
|
|
200
|
+
"docs": {
|
|
201
|
+
"tags": [],
|
|
202
|
+
"text": ""
|
|
203
|
+
},
|
|
204
|
+
"encapsulation": "shadow",
|
|
205
|
+
"excludeFromCollection": false,
|
|
206
|
+
"events": [
|
|
207
|
+
{
|
|
208
|
+
"name": "pageChangedEvent",
|
|
209
|
+
"method": "pageChangedEvent",
|
|
210
|
+
"bubbles": true,
|
|
211
|
+
"cancelable": true,
|
|
212
|
+
"composed": true,
|
|
213
|
+
"docs": {
|
|
214
|
+
"tags": [],
|
|
215
|
+
"text": "Emits when a page is changed"
|
|
216
|
+
},
|
|
217
|
+
"complexType": {
|
|
218
|
+
"original": "number",
|
|
219
|
+
"resolved": "number",
|
|
220
|
+
"references": {}
|
|
221
|
+
},
|
|
222
|
+
"internal": false
|
|
223
|
+
}
|
|
224
|
+
],
|
|
225
|
+
"internal": false,
|
|
226
|
+
"legacyConnect": [],
|
|
227
|
+
"legacyContext": [],
|
|
228
|
+
"listeners": [],
|
|
229
|
+
"methods": [],
|
|
230
|
+
"potentialCmpRefs": [
|
|
231
|
+
"mds-paginator-item"
|
|
232
|
+
],
|
|
233
|
+
"properties": [
|
|
234
|
+
{
|
|
235
|
+
"name": "pages",
|
|
236
|
+
"type": "number",
|
|
237
|
+
"attribute": "pages",
|
|
238
|
+
"reflect": false,
|
|
239
|
+
"mutable": false,
|
|
240
|
+
"required": false,
|
|
241
|
+
"optional": true,
|
|
242
|
+
"defaultValue": "0",
|
|
243
|
+
"complexType": {
|
|
244
|
+
"original": "0",
|
|
245
|
+
"resolved": "0",
|
|
246
|
+
"references": {}
|
|
247
|
+
},
|
|
248
|
+
"docs": {
|
|
249
|
+
"tags": [],
|
|
250
|
+
"text": "Specifies the number of total pages to be handled"
|
|
251
|
+
},
|
|
252
|
+
"internal": false
|
|
253
|
+
},
|
|
254
|
+
{
|
|
255
|
+
"name": "currentPage",
|
|
256
|
+
"type": "number",
|
|
257
|
+
"attribute": "current-page",
|
|
258
|
+
"reflect": true,
|
|
259
|
+
"mutable": true,
|
|
260
|
+
"required": false,
|
|
261
|
+
"optional": true,
|
|
262
|
+
"defaultValue": "1",
|
|
263
|
+
"complexType": {
|
|
264
|
+
"original": "number",
|
|
265
|
+
"resolved": "number",
|
|
266
|
+
"references": {}
|
|
267
|
+
},
|
|
268
|
+
"docs": {
|
|
269
|
+
"tags": [],
|
|
270
|
+
"text": "Specifies the current page selected in the paginator"
|
|
271
|
+
},
|
|
272
|
+
"internal": false
|
|
273
|
+
}
|
|
274
|
+
],
|
|
275
|
+
"shadowDelegatesFocus": false,
|
|
276
|
+
"states": []
|
|
277
|
+
}
|
|
278
|
+
],
|
|
279
|
+
"entries": [
|
|
280
|
+
{
|
|
281
|
+
"cmps": [
|
|
282
|
+
{
|
|
283
|
+
"tagName": "mds-paginator",
|
|
284
|
+
"excludeFromCollection": false,
|
|
285
|
+
"isCollectionDependency": false,
|
|
286
|
+
"componentClassName": "MdsPaginator",
|
|
287
|
+
"elementRef": "element",
|
|
288
|
+
"encapsulation": "shadow",
|
|
289
|
+
"shadowDelegatesFocus": false,
|
|
290
|
+
"properties": [
|
|
291
|
+
{
|
|
292
|
+
"name": "pages",
|
|
293
|
+
"type": "number",
|
|
294
|
+
"attribute": "pages",
|
|
295
|
+
"reflect": false,
|
|
296
|
+
"mutable": false,
|
|
297
|
+
"required": false,
|
|
298
|
+
"optional": true,
|
|
299
|
+
"defaultValue": "0",
|
|
300
|
+
"complexType": {
|
|
301
|
+
"original": "0",
|
|
302
|
+
"resolved": "0",
|
|
303
|
+
"references": {}
|
|
304
|
+
},
|
|
305
|
+
"docs": {
|
|
306
|
+
"tags": [],
|
|
307
|
+
"text": "Specifies the number of total pages to be handled"
|
|
308
|
+
},
|
|
309
|
+
"internal": false
|
|
310
|
+
},
|
|
311
|
+
{
|
|
312
|
+
"name": "currentPage",
|
|
313
|
+
"type": "number",
|
|
314
|
+
"attribute": "current-page",
|
|
315
|
+
"reflect": true,
|
|
316
|
+
"mutable": true,
|
|
317
|
+
"required": false,
|
|
318
|
+
"optional": true,
|
|
319
|
+
"defaultValue": "1",
|
|
320
|
+
"complexType": {
|
|
321
|
+
"original": "number",
|
|
322
|
+
"resolved": "number",
|
|
323
|
+
"references": {}
|
|
324
|
+
},
|
|
325
|
+
"docs": {
|
|
326
|
+
"tags": [],
|
|
327
|
+
"text": "Specifies the current page selected in the paginator"
|
|
328
|
+
},
|
|
329
|
+
"internal": false
|
|
330
|
+
}
|
|
331
|
+
],
|
|
332
|
+
"virtualProperties": [],
|
|
333
|
+
"states": [],
|
|
334
|
+
"methods": [],
|
|
335
|
+
"listeners": [],
|
|
336
|
+
"events": [
|
|
337
|
+
{
|
|
338
|
+
"name": "pageChangedEvent",
|
|
339
|
+
"method": "pageChangedEvent",
|
|
340
|
+
"bubbles": true,
|
|
341
|
+
"cancelable": true,
|
|
342
|
+
"composed": true,
|
|
343
|
+
"docs": {
|
|
344
|
+
"tags": [],
|
|
345
|
+
"text": "Emits when a page is changed"
|
|
346
|
+
},
|
|
347
|
+
"complexType": {
|
|
348
|
+
"original": "number",
|
|
349
|
+
"resolved": "number",
|
|
350
|
+
"references": {}
|
|
351
|
+
},
|
|
352
|
+
"internal": false
|
|
353
|
+
}
|
|
354
|
+
],
|
|
355
|
+
"watchers": [],
|
|
356
|
+
"styles": [
|
|
357
|
+
{
|
|
358
|
+
"modeName": "$",
|
|
359
|
+
"styleId": "MDS-PAGINATOR",
|
|
360
|
+
"styleStr": null,
|
|
361
|
+
"styleIdentifier": "mdsPaginatorStyle",
|
|
362
|
+
"externalStyles": [
|
|
363
|
+
{
|
|
364
|
+
"absolutePath": "/Users/vitto/repo/magma/projects/stencil/.build/mds-paginator/src/components/mds-paginator/mds-paginator.css",
|
|
365
|
+
"relativePath": "mds-paginator.css",
|
|
366
|
+
"originalComponentPath": "mds-paginator.css"
|
|
367
|
+
}
|
|
368
|
+
]
|
|
369
|
+
}
|
|
370
|
+
],
|
|
371
|
+
"legacyConnect": [],
|
|
372
|
+
"legacyContext": [],
|
|
373
|
+
"internal": false,
|
|
374
|
+
"assetsDirs": [],
|
|
375
|
+
"styleDocs": [],
|
|
376
|
+
"docs": {
|
|
377
|
+
"tags": [],
|
|
378
|
+
"text": ""
|
|
379
|
+
},
|
|
380
|
+
"jsFilePath": "/Users/vitto/repo/magma/projects/stencil/.build/mds-paginator/src/components/mds-paginator/mds-paginator.js",
|
|
381
|
+
"sourceFilePath": "/Users/vitto/repo/magma/projects/stencil/.build/mds-paginator/src/components/mds-paginator/mds-paginator.tsx",
|
|
382
|
+
"sourceMapPath": null,
|
|
383
|
+
"hasAttributeChangedCallbackFn": false,
|
|
384
|
+
"hasComponentWillLoadFn": false,
|
|
385
|
+
"hasComponentDidLoadFn": true,
|
|
386
|
+
"hasComponentShouldUpdateFn": false,
|
|
387
|
+
"hasComponentWillUpdateFn": false,
|
|
388
|
+
"hasComponentDidUpdateFn": false,
|
|
389
|
+
"hasComponentWillRenderFn": false,
|
|
390
|
+
"hasComponentDidRenderFn": false,
|
|
391
|
+
"hasComponentDidUnloadFn": false,
|
|
392
|
+
"hasConnectedCallbackFn": false,
|
|
393
|
+
"hasDisconnectedCallbackFn": false,
|
|
394
|
+
"hasElement": false,
|
|
395
|
+
"hasEvent": true,
|
|
396
|
+
"hasLifecycle": true,
|
|
397
|
+
"hasListener": false,
|
|
398
|
+
"hasListenerTarget": false,
|
|
399
|
+
"hasListenerTargetWindow": false,
|
|
400
|
+
"hasListenerTargetDocument": false,
|
|
401
|
+
"hasListenerTargetBody": false,
|
|
402
|
+
"hasListenerTargetParent": false,
|
|
403
|
+
"hasMember": true,
|
|
404
|
+
"hasMethod": false,
|
|
405
|
+
"hasMode": false,
|
|
406
|
+
"hasAttribute": true,
|
|
407
|
+
"hasProp": true,
|
|
408
|
+
"hasPropNumber": true,
|
|
409
|
+
"hasPropBoolean": false,
|
|
410
|
+
"hasPropString": false,
|
|
411
|
+
"hasPropMutable": true,
|
|
412
|
+
"hasReflect": true,
|
|
413
|
+
"hasRenderFn": true,
|
|
414
|
+
"hasState": false,
|
|
415
|
+
"hasStyle": true,
|
|
416
|
+
"hasVdomAttribute": true,
|
|
417
|
+
"hasVdomXlink": false,
|
|
418
|
+
"hasVdomClass": true,
|
|
419
|
+
"hasVdomFunctional": false,
|
|
420
|
+
"hasVdomKey": true,
|
|
421
|
+
"hasVdomListener": true,
|
|
422
|
+
"hasVdomPropOrAttr": true,
|
|
423
|
+
"hasVdomRef": false,
|
|
424
|
+
"hasVdomRender": true,
|
|
425
|
+
"hasVdomStyle": false,
|
|
426
|
+
"hasVdomText": true,
|
|
427
|
+
"hasWatchCallback": false,
|
|
428
|
+
"isPlain": false,
|
|
429
|
+
"htmlAttrNames": [
|
|
430
|
+
"icon",
|
|
431
|
+
"disabled",
|
|
432
|
+
"onClick",
|
|
433
|
+
"active",
|
|
434
|
+
"class",
|
|
435
|
+
"key"
|
|
436
|
+
],
|
|
437
|
+
"htmlTagNames": [
|
|
438
|
+
"mds-paginator-item",
|
|
439
|
+
"div"
|
|
440
|
+
],
|
|
441
|
+
"htmlParts": [],
|
|
442
|
+
"isUpdateable": true,
|
|
443
|
+
"potentialCmpRefs": [
|
|
444
|
+
"mds-paginator-item"
|
|
445
|
+
],
|
|
446
|
+
"directDependencies": [],
|
|
447
|
+
"dependencies": [],
|
|
448
|
+
"dependents": [],
|
|
449
|
+
"directDependents": []
|
|
450
|
+
}
|
|
451
|
+
],
|
|
452
|
+
"entryKey": "mds-paginator.entry"
|
|
453
|
+
}
|
|
454
|
+
],
|
|
455
|
+
"componentGraph": {
|
|
456
|
+
"sc-mds-paginator": [
|
|
457
|
+
"p-4e602610.js"
|
|
458
|
+
]
|
|
459
|
+
},
|
|
460
|
+
"sourceGraph": {
|
|
461
|
+
"./src/components/mds-paginator/mds-paginator.tsx": [],
|
|
462
|
+
"./src/components/mds-paginator/test/mds-paginator.stories.tsx": [],
|
|
463
|
+
"./src/dictionary/autocomplete.ts": [],
|
|
464
|
+
"./src/dictionary/button.ts": [],
|
|
465
|
+
"./src/dictionary/color.ts": [],
|
|
466
|
+
"./src/dictionary/floating-ui.ts": [],
|
|
467
|
+
"./src/dictionary/icon.ts": [
|
|
468
|
+
"./src/fixtures/icons.json"
|
|
469
|
+
],
|
|
470
|
+
"./src/dictionary/input-text-type.ts": [],
|
|
471
|
+
"./src/dictionary/loading.ts": [],
|
|
472
|
+
"./src/dictionary/typography.ts": [],
|
|
473
|
+
"./src/dictionary/variant.ts": [],
|
|
474
|
+
"./src/fixtures/cities.ts": [],
|
|
475
|
+
"./src/interface/input-value.ts": [],
|
|
476
|
+
"./src/types/autocomplete.ts": [],
|
|
477
|
+
"./src/types/button.ts": [],
|
|
478
|
+
"./src/types/floating-ui.ts": [],
|
|
479
|
+
"./src/types/form-rel.ts": [],
|
|
480
|
+
"./src/types/input-text-type.ts": [],
|
|
481
|
+
"./src/types/input-value-type.ts": [],
|
|
482
|
+
"./src/types/loading.ts": [],
|
|
483
|
+
"./src/types/typography.ts": [],
|
|
484
|
+
"./src/types/variant.ts": []
|
|
485
|
+
},
|
|
486
|
+
"collections": []
|
|
487
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { EventEmitter } from '../../stencil-public-runtime';
|
|
2
|
+
export declare class MdsPaginator {
|
|
3
|
+
private element;
|
|
4
|
+
/**
|
|
5
|
+
* Specifies the number of total pages to be handled
|
|
6
|
+
*/
|
|
7
|
+
readonly pages? = 0;
|
|
8
|
+
/**
|
|
9
|
+
* Specifies the current page selected in the paginator
|
|
10
|
+
*/
|
|
11
|
+
currentPage?: number;
|
|
12
|
+
componentDidLoad(): void;
|
|
13
|
+
/**
|
|
14
|
+
* Emits when a page is changed
|
|
15
|
+
*/
|
|
16
|
+
pageChangedEvent: EventEmitter<number>;
|
|
17
|
+
private scrollPage;
|
|
18
|
+
private goToPage;
|
|
19
|
+
render(): any;
|
|
20
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
title: string;
|
|
3
|
+
argTypes: {
|
|
4
|
+
pages: {
|
|
5
|
+
type: {
|
|
6
|
+
name: string;
|
|
7
|
+
required: boolean;
|
|
8
|
+
};
|
|
9
|
+
description: string;
|
|
10
|
+
};
|
|
11
|
+
'current-page': {
|
|
12
|
+
type: {
|
|
13
|
+
name: string;
|
|
14
|
+
required: boolean;
|
|
15
|
+
};
|
|
16
|
+
description: string;
|
|
17
|
+
};
|
|
18
|
+
};
|
|
19
|
+
};
|
|
20
|
+
export default _default;
|
|
21
|
+
export declare const Default: any;
|
|
22
|
+
export declare const currentPage: any;
|
|
@@ -0,0 +1,61 @@
|
|
|
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
|
+
export namespace Components {
|
|
9
|
+
interface MdsPaginator {
|
|
10
|
+
/**
|
|
11
|
+
* Specifies the current page selected in the paginator
|
|
12
|
+
*/
|
|
13
|
+
"currentPage"?: number;
|
|
14
|
+
/**
|
|
15
|
+
* Specifies the number of total pages to be handled
|
|
16
|
+
*/
|
|
17
|
+
"pages"?: 0;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
export interface MdsPaginatorCustomEvent<T> extends CustomEvent<T> {
|
|
21
|
+
detail: T;
|
|
22
|
+
target: HTMLMdsPaginatorElement;
|
|
23
|
+
}
|
|
24
|
+
declare global {
|
|
25
|
+
interface HTMLMdsPaginatorElement extends Components.MdsPaginator, HTMLStencilElement {
|
|
26
|
+
}
|
|
27
|
+
var HTMLMdsPaginatorElement: {
|
|
28
|
+
prototype: HTMLMdsPaginatorElement;
|
|
29
|
+
new (): HTMLMdsPaginatorElement;
|
|
30
|
+
};
|
|
31
|
+
interface HTMLElementTagNameMap {
|
|
32
|
+
"mds-paginator": HTMLMdsPaginatorElement;
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
declare namespace LocalJSX {
|
|
36
|
+
interface MdsPaginator {
|
|
37
|
+
/**
|
|
38
|
+
* Specifies the current page selected in the paginator
|
|
39
|
+
*/
|
|
40
|
+
"currentPage"?: number;
|
|
41
|
+
/**
|
|
42
|
+
* Emits when a page is changed
|
|
43
|
+
*/
|
|
44
|
+
"onPageChangedEvent"?: (event: MdsPaginatorCustomEvent<number>) => void;
|
|
45
|
+
/**
|
|
46
|
+
* Specifies the number of total pages to be handled
|
|
47
|
+
*/
|
|
48
|
+
"pages"?: 0;
|
|
49
|
+
}
|
|
50
|
+
interface IntrinsicElements {
|
|
51
|
+
"mds-paginator": MdsPaginator;
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
export { LocalJSX as JSX };
|
|
55
|
+
declare module "@stencil/core" {
|
|
56
|
+
export namespace JSX {
|
|
57
|
+
interface IntrinsicElements {
|
|
58
|
+
"mds-paginator": LocalJSX.MdsPaginator & JSXBase.HTMLAttributes<HTMLMdsPaginatorElement>;
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
declare const buttonVariantDictionary: string[];
|
|
2
|
+
declare const buttonToneVariantDictionary: string[];
|
|
3
|
+
declare const buttonSizeDictionary: string[];
|
|
4
|
+
declare const buttonIconPositionDictionary: string[];
|
|
5
|
+
export { buttonSizeDictionary, buttonToneVariantDictionary, buttonVariantDictionary, buttonIconPositionDictionary, };
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
declare const typographyDictionary: string[];
|
|
2
|
+
declare const typographyVariationsDictionary: string[];
|
|
3
|
+
declare const typographyMonoDictionary: string[];
|
|
4
|
+
declare const typographyTitleDictionary: string[];
|
|
5
|
+
declare const typographyInfoDictionary: string[];
|
|
6
|
+
declare const typographyReadDictionary: string[];
|
|
7
|
+
declare const typographySmallerDictionary: string[];
|
|
8
|
+
declare const typographyTooltipDictionary: string[];
|
|
9
|
+
export { typographyDictionary, typographyVariationsDictionary, typographyMonoDictionary, typographyTitleDictionary, typographyInfoDictionary, typographyReadDictionary, typographySmallerDictionary, typographyTooltipDictionary, };
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
declare const themeVariantDictionary: string[];
|
|
2
|
+
declare const themeLuminanceVariantDictionary: string[];
|
|
3
|
+
declare const themeStatusVariantDictionary: string[];
|
|
4
|
+
declare const themeFullVariantDictionary: string[];
|
|
5
|
+
declare const themeLabelVariantDictionary: string[];
|
|
6
|
+
declare const toneVariantDictionary: string[];
|
|
7
|
+
declare const toneSimpleVariantDictionary: string[];
|
|
8
|
+
declare const toneMinimalVariantDictionary: string[];
|
|
9
|
+
export { themeFullVariantDictionary, themeLabelVariantDictionary, themeLuminanceVariantDictionary, themeStatusVariantDictionary, themeVariantDictionary, toneMinimalVariantDictionary, toneSimpleVariantDictionary, toneVariantDictionary, };
|