@maggioli-design-system/mds-table-row 4.8.1 → 5.0.1

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.
Files changed (95) hide show
  1. package/dist/cjs/{index-19c36c53.js → index-cb928c36.js} +201 -136
  2. package/dist/cjs/loader.cjs.js +2 -2
  3. package/dist/cjs/mds-table-row.cjs.entry.js +893 -10
  4. package/dist/cjs/mds-table-row.cjs.js +3 -3
  5. package/dist/collection/collection-manifest.json +1 -1
  6. package/dist/collection/common/floating-controller.js +180 -0
  7. package/dist/collection/common/slot.js +19 -0
  8. package/dist/collection/components/mds-table-row/mds-table-row.css +31 -16
  9. package/dist/collection/components/mds-table-row/mds-table-row.js +118 -23
  10. package/dist/collection/dictionary/animation.js +5 -0
  11. package/dist/collection/dictionary/file-extensions.js +6 -59
  12. package/dist/collection/dictionary/tree.js +13 -0
  13. package/dist/collection/fixtures/filenames.js +62 -1
  14. package/dist/collection/type/animation.js +1 -0
  15. package/dist/collection/type/tree.js +1 -0
  16. package/dist/collection/type/variant-file-format.js +5 -0
  17. package/dist/components/mds-table-row.js +900 -12
  18. package/dist/documentation.d.ts +8 -0
  19. package/dist/documentation.json +121 -16
  20. package/dist/esm/{index-a948f479.js → index-8134a00a.js} +201 -136
  21. package/dist/esm/loader.js +3 -3
  22. package/dist/esm/mds-table-row.entry.js +893 -10
  23. package/dist/esm/mds-table-row.js +4 -4
  24. package/dist/esm-es5/index-8134a00a.js +1 -0
  25. package/dist/esm-es5/loader.js +1 -1
  26. package/dist/esm-es5/mds-table-row.entry.js +6 -1
  27. package/dist/esm-es5/mds-table-row.js +1 -1
  28. package/dist/mds-table-row/mds-table-row.esm.js +1 -1
  29. package/dist/mds-table-row/mds-table-row.js +1 -1
  30. package/dist/mds-table-row/p-11048c96.system.js +1 -0
  31. package/dist/mds-table-row/p-22d4881a.js +2 -0
  32. package/dist/mds-table-row/p-827e2f31.entry.js +6 -0
  33. package/dist/mds-table-row/p-88f814c9.system.js +2 -0
  34. package/dist/mds-table-row/p-ed03fa5e.system.entry.js +6 -0
  35. package/dist/stats.json +267 -70
  36. package/dist/types/common/floating-controller.d.ts +46 -0
  37. package/dist/types/common/slot.d.ts +3 -0
  38. package/dist/types/components/mds-table-row/mds-table-row.d.ts +9 -3
  39. package/dist/types/components.d.ts +8 -1
  40. package/dist/types/dictionary/animation.d.ts +2 -0
  41. package/dist/types/dictionary/tree.d.ts +4 -0
  42. package/dist/types/fixtures/filenames.d.ts +62 -1
  43. package/dist/types/type/animation.d.ts +1 -0
  44. package/dist/types/type/file-types.d.ts +1 -1
  45. package/dist/types/type/tree.d.ts +3 -0
  46. package/dist/types/type/variant-file-format.d.ts +1 -1
  47. package/documentation.json +170 -29
  48. package/package.json +4 -4
  49. package/readme.md +24 -4
  50. package/src/common/floating-controller.ts +263 -0
  51. package/src/common/slot.ts +24 -0
  52. package/src/components/mds-table-row/css/mds-table-row-actions.css +10 -3
  53. package/src/components/mds-table-row/css/mds-table-row-interactive.css +6 -0
  54. package/src/components/mds-table-row/css/mds-table-row-selected.css +5 -0
  55. package/src/components/mds-table-row/css/mds-table-row-sorted.css +11 -0
  56. package/src/components/mds-table-row/mds-table-row.css +11 -26
  57. package/src/components/mds-table-row/mds-table-row.tsx +38 -9
  58. package/src/components/mds-table-row/meta/locale.el.json +4 -0
  59. package/src/components/mds-table-row/meta/locale.en.json +4 -0
  60. package/src/components/mds-table-row/meta/locale.es.json +4 -0
  61. package/src/components/mds-table-row/meta/locale.it.json +4 -0
  62. package/src/components/mds-table-row/readme.md +20 -4
  63. package/src/components.d.ts +8 -1
  64. package/src/dictionary/animation.ts +8 -0
  65. package/src/dictionary/file-extensions.ts +6 -60
  66. package/src/dictionary/tree.ts +21 -0
  67. package/src/fixtures/filenames.ts +63 -0
  68. package/src/fixtures/icons.json +21 -0
  69. package/src/fixtures/iconsauce.json +6 -0
  70. package/src/meta/file-format/locale.el.json +26 -21
  71. package/src/meta/file-format/locale.en.json +26 -21
  72. package/src/meta/file-format/locale.es.json +26 -21
  73. package/src/meta/file-format/locale.it.json +26 -21
  74. package/src/type/animation.ts +3 -0
  75. package/src/type/file-types.ts +6 -0
  76. package/src/type/tree.ts +12 -0
  77. package/src/type/variant-file-format.ts +6 -0
  78. package/www/build/mds-table-row.esm.js +1 -1
  79. package/www/build/mds-table-row.js +1 -1
  80. package/www/build/p-11048c96.system.js +1 -0
  81. package/www/build/p-22d4881a.js +2 -0
  82. package/www/build/p-827e2f31.entry.js +6 -0
  83. package/www/build/p-88f814c9.system.js +2 -0
  84. package/www/build/p-ed03fa5e.system.entry.js +6 -0
  85. package/dist/esm-es5/index-a948f479.js +0 -1
  86. package/dist/mds-table-row/p-5ab8c209.system.entry.js +0 -1
  87. package/dist/mds-table-row/p-98955251.system.js +0 -1
  88. package/dist/mds-table-row/p-bfa177c6.system.js +0 -2
  89. package/dist/mds-table-row/p-d906e5c7.entry.js +0 -1
  90. package/dist/mds-table-row/p-faec61cc.js +0 -2
  91. package/www/build/p-5ab8c209.system.entry.js +0 -1
  92. package/www/build/p-98955251.system.js +0 -1
  93. package/www/build/p-bfa177c6.system.js +0 -2
  94. package/www/build/p-d906e5c7.entry.js +0 -1
  95. package/www/build/p-faec61cc.js +0 -2
package/dist/stats.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "timestamp": "2024-12-05T16:19:09",
2
+ "timestamp": "2025-02-06T10:06:36",
3
3
  "compiler": {
4
4
  "name": "node",
5
5
  "version": "22.11.0"
@@ -9,19 +9,21 @@
9
9
  "fsNamespace": "mds-table-row",
10
10
  "components": 1,
11
11
  "entries": 1,
12
- "bundles": 91,
12
+ "bundles": 97,
13
13
  "outputs": [
14
14
  {
15
15
  "name": "dist-collection",
16
- "files": 43,
16
+ "files": 49,
17
17
  "generatedFiles": [
18
18
  "./dist/collection/common/aria.js",
19
19
  "./dist/collection/common/date.js",
20
20
  "./dist/collection/common/device.js",
21
21
  "./dist/collection/common/file.js",
22
+ "./dist/collection/common/floating-controller.js",
22
23
  "./dist/collection/common/icon.js",
23
24
  "./dist/collection/common/keyboard-manager.js",
24
25
  "./dist/collection/common/locale.js",
26
+ "./dist/collection/common/slot.js",
25
27
  "./dist/collection/common/unit.js",
26
28
  "./dist/collection/common/yugop/core.js",
27
29
  "./dist/collection/common/yugop/index.js",
@@ -31,6 +33,7 @@
31
33
  "./dist/collection/common/yugop/utils/prng.js",
32
34
  "./dist/collection/common/yugop/utils/string.js",
33
35
  "./dist/collection/components/mds-table-row/mds-table-row.js",
36
+ "./dist/collection/dictionary/animation.js",
34
37
  "./dist/collection/dictionary/autocomplete.js",
35
38
  "./dist/collection/dictionary/button.js",
36
39
  "./dist/collection/dictionary/color.js",
@@ -40,10 +43,12 @@
40
43
  "./dist/collection/dictionary/input.js",
41
44
  "./dist/collection/dictionary/loading.js",
42
45
  "./dist/collection/dictionary/text.js",
46
+ "./dist/collection/dictionary/tree.js",
43
47
  "./dist/collection/dictionary/typography.js",
44
48
  "./dist/collection/dictionary/variant.js",
45
49
  "./dist/collection/fixtures/cities.js",
46
50
  "./dist/collection/fixtures/filenames.js",
51
+ "./dist/collection/type/animation.js",
47
52
  "./dist/collection/type/autocomplete.js",
48
53
  "./dist/collection/type/button.js",
49
54
  "./dist/collection/type/date.js",
@@ -55,6 +60,7 @@
55
60
  "./dist/collection/type/loading.js",
56
61
  "./dist/collection/type/preference.js",
57
62
  "./dist/collection/type/text.js",
63
+ "./dist/collection/type/tree.js",
58
64
  "./dist/collection/type/typography.js",
59
65
  "./dist/collection/type/variant-file-format.js",
60
66
  "./dist/collection/type/variant.js"
@@ -75,19 +81,19 @@
75
81
  "files": 42,
76
82
  "generatedFiles": [
77
83
  "./dist/cjs/app-globals-3a1e7e63.js",
78
- "./dist/cjs/index-19c36c53.js",
84
+ "./dist/cjs/index-cb928c36.js",
79
85
  "./dist/cjs/index.cjs.js",
80
86
  "./dist/cjs/loader.cjs.js",
81
87
  "./dist/cjs/mds-table-row.cjs.entry.js",
82
88
  "./dist/cjs/mds-table-row.cjs.js",
83
89
  "./dist/esm-es5/app-globals-0f993ce5.js",
84
- "./dist/esm-es5/index-a948f479.js",
90
+ "./dist/esm-es5/index-8134a00a.js",
85
91
  "./dist/esm-es5/index.js",
86
92
  "./dist/esm-es5/loader.js",
87
93
  "./dist/esm-es5/mds-table-row.entry.js",
88
94
  "./dist/esm-es5/mds-table-row.js",
89
95
  "./dist/esm/app-globals-0f993ce5.js",
90
- "./dist/esm/index-a948f479.js",
96
+ "./dist/esm/index-8134a00a.js",
91
97
  "./dist/esm/index.js",
92
98
  "./dist/esm/loader.js",
93
99
  "./dist/esm/mds-table-row.entry.js",
@@ -97,25 +103,25 @@
97
103
  "./dist/mds-table-row/index.esm.js",
98
104
  "./dist/mds-table-row/mds-table-row.esm.js",
99
105
  "./dist/mds-table-row/mds-table-row.js",
106
+ "./dist/mds-table-row/p-11048c96.system.js",
107
+ "./dist/mds-table-row/p-22d4881a.js",
100
108
  "./dist/mds-table-row/p-50ea2036.system.js",
101
109
  "./dist/mds-table-row/p-56ba5cbf.system.js",
102
- "./dist/mds-table-row/p-5ab8c209.system.entry.js",
103
- "./dist/mds-table-row/p-98955251.system.js",
104
- "./dist/mds-table-row/p-bfa177c6.system.js",
105
- "./dist/mds-table-row/p-d906e5c7.entry.js",
110
+ "./dist/mds-table-row/p-827e2f31.entry.js",
111
+ "./dist/mds-table-row/p-88f814c9.system.js",
106
112
  "./dist/mds-table-row/p-e1255160.js",
107
- "./dist/mds-table-row/p-faec61cc.js",
113
+ "./dist/mds-table-row/p-ed03fa5e.system.entry.js",
108
114
  "./www/build/index.esm.js",
109
115
  "./www/build/mds-table-row.esm.js",
110
116
  "./www/build/mds-table-row.js",
117
+ "./www/build/p-11048c96.system.js",
118
+ "./www/build/p-22d4881a.js",
111
119
  "./www/build/p-50ea2036.system.js",
112
120
  "./www/build/p-56ba5cbf.system.js",
113
- "./www/build/p-5ab8c209.system.entry.js",
114
- "./www/build/p-98955251.system.js",
115
- "./www/build/p-bfa177c6.system.js",
116
- "./www/build/p-d906e5c7.entry.js",
121
+ "./www/build/p-827e2f31.entry.js",
122
+ "./www/build/p-88f814c9.system.js",
117
123
  "./www/build/p-e1255160.js",
118
- "./www/build/p-faec61cc.js"
124
+ "./www/build/p-ed03fa5e.system.entry.js"
119
125
  ]
120
126
  },
121
127
  {
@@ -148,12 +154,12 @@
148
154
  "components": [
149
155
  "mds-table-row"
150
156
  ],
151
- "bundleId": "p-d906e5c7",
152
- "fileName": "p-d906e5c7.entry.js",
157
+ "bundleId": "p-827e2f31",
158
+ "fileName": "p-827e2f31.entry.js",
153
159
  "imports": [
154
- "p-faec61cc.js"
160
+ "p-22d4881a.js"
155
161
  ],
156
- "originalByteSize": 5387
162
+ "originalByteSize": 34904
157
163
  }
158
164
  ],
159
165
  "esm": [
@@ -165,9 +171,9 @@
165
171
  "bundleId": "mds-table-row",
166
172
  "fileName": "mds-table-row.entry.js",
167
173
  "imports": [
168
- "index-a948f479.js"
174
+ "index-8134a00a.js"
169
175
  ],
170
- "originalByteSize": 5391
176
+ "originalByteSize": 34908
171
177
  }
172
178
  ],
173
179
  "es5": [
@@ -179,9 +185,9 @@
179
185
  "bundleId": "mds-table-row",
180
186
  "fileName": "mds-table-row.entry.js",
181
187
  "imports": [
182
- "index-a948f479.js"
188
+ "index-8134a00a.js"
183
189
  ],
184
- "originalByteSize": 5391
190
+ "originalByteSize": 34908
185
191
  }
186
192
  ],
187
193
  "system": [
@@ -190,12 +196,12 @@
190
196
  "components": [
191
197
  "mds-table-row"
192
198
  ],
193
- "bundleId": "p-5ab8c209.system",
194
- "fileName": "p-5ab8c209.system.entry.js",
199
+ "bundleId": "p-ed03fa5e.system",
200
+ "fileName": "p-ed03fa5e.system.entry.js",
195
201
  "imports": [
196
- "p-bfa177c6.system.js"
202
+ "p-88f814c9.system.js"
197
203
  ],
198
- "originalByteSize": 5816
204
+ "originalByteSize": 37514
199
205
  }
200
206
  ],
201
207
  "commonjs": [
@@ -207,9 +213,9 @@
207
213
  "bundleId": "mds-table-row.cjs",
208
214
  "fileName": "mds-table-row.cjs.entry.js",
209
215
  "imports": [
210
- "index-19c36c53.js"
216
+ "index-cb928c36.js"
211
217
  ],
212
- "originalByteSize": 5480
218
+ "originalByteSize": 35015
213
219
  }
214
220
  ]
215
221
  },
@@ -238,18 +244,31 @@
238
244
  "excludeFromCollection": false,
239
245
  "events": [],
240
246
  "internal": false,
241
- "listeners": [
247
+ "listeners": [],
248
+ "methods": [
242
249
  {
243
- "name": "mdsTableInteractiveChange",
244
- "method": "tableInteractiveHandler",
245
- "capture": false,
246
- "passive": false,
247
- "target": "document"
250
+ "name": "updateLang",
251
+ "docs": {
252
+ "text": "",
253
+ "tags": []
254
+ },
255
+ "complexType": {
256
+ "signature": "() => Promise<void>",
257
+ "parameters": [],
258
+ "references": {
259
+ "Promise": {
260
+ "location": "global",
261
+ "id": "global::Promise"
262
+ }
263
+ },
264
+ "return": "Promise<void>"
265
+ },
266
+ "internal": false
248
267
  }
249
268
  ],
250
- "methods": [],
251
269
  "potentialCmpRefs": [
252
- "mds-table-cell"
270
+ "mds-table-cell",
271
+ "mds-input-switch"
253
272
  ],
254
273
  "properties": [
255
274
  {
@@ -257,26 +276,28 @@
257
276
  "type": "boolean",
258
277
  "attribute": "interactive",
259
278
  "reflect": true,
260
- "mutable": true,
279
+ "mutable": false,
261
280
  "required": false,
262
- "optional": false,
281
+ "optional": true,
263
282
  "complexType": {
264
283
  "original": "boolean",
265
- "resolved": "boolean",
284
+ "resolved": "boolean | undefined",
266
285
  "references": {}
267
286
  },
268
287
  "docs": {
269
288
  "tags": [],
270
289
  "text": ""
271
290
  },
272
- "internal": false
291
+ "internal": false,
292
+ "getter": false,
293
+ "setter": false
273
294
  },
274
295
  {
275
296
  "name": "overlayActions",
276
297
  "type": "boolean",
277
298
  "attribute": "overlay-actions",
278
299
  "reflect": true,
279
- "mutable": true,
300
+ "mutable": false,
280
301
  "required": false,
281
302
  "optional": false,
282
303
  "complexType": {
@@ -288,11 +309,81 @@
288
309
  "tags": [],
289
310
  "text": ""
290
311
  },
291
- "internal": false
312
+ "internal": false,
313
+ "getter": false,
314
+ "setter": false
315
+ },
316
+ {
317
+ "name": "selectable",
318
+ "type": "boolean",
319
+ "attribute": "selectable",
320
+ "reflect": true,
321
+ "mutable": false,
322
+ "required": false,
323
+ "optional": true,
324
+ "defaultValue": "undefined",
325
+ "complexType": {
326
+ "original": "boolean",
327
+ "resolved": "boolean | undefined",
328
+ "references": {}
329
+ },
330
+ "docs": {
331
+ "tags": [],
332
+ "text": ""
333
+ },
334
+ "internal": false,
335
+ "getter": false,
336
+ "setter": false
337
+ },
338
+ {
339
+ "name": "selected",
340
+ "type": "boolean",
341
+ "attribute": "selected",
342
+ "reflect": true,
343
+ "mutable": true,
344
+ "required": false,
345
+ "optional": true,
346
+ "complexType": {
347
+ "original": "boolean",
348
+ "resolved": "boolean | undefined",
349
+ "references": {}
350
+ },
351
+ "docs": {
352
+ "tags": [],
353
+ "text": ""
354
+ },
355
+ "internal": false,
356
+ "getter": false,
357
+ "setter": false
358
+ },
359
+ {
360
+ "name": "value",
361
+ "type": "any",
362
+ "attribute": "value",
363
+ "reflect": true,
364
+ "mutable": false,
365
+ "required": false,
366
+ "optional": true,
367
+ "complexType": {
368
+ "original": "string | number",
369
+ "resolved": "number | string | undefined",
370
+ "references": {}
371
+ },
372
+ "docs": {
373
+ "tags": [],
374
+ "text": ""
375
+ },
376
+ "internal": false,
377
+ "getter": false,
378
+ "setter": false
292
379
  }
293
380
  ],
294
381
  "shadowDelegatesFocus": false,
295
- "states": []
382
+ "states": [
383
+ {
384
+ "name": "language"
385
+ }
386
+ ]
296
387
  }
297
388
  ],
298
389
  "entries": [
@@ -314,26 +405,28 @@
314
405
  "type": "boolean",
315
406
  "attribute": "interactive",
316
407
  "reflect": true,
317
- "mutable": true,
408
+ "mutable": false,
318
409
  "required": false,
319
- "optional": false,
410
+ "optional": true,
320
411
  "complexType": {
321
412
  "original": "boolean",
322
- "resolved": "boolean",
413
+ "resolved": "boolean | undefined",
323
414
  "references": {}
324
415
  },
325
416
  "docs": {
326
417
  "tags": [],
327
418
  "text": ""
328
419
  },
329
- "internal": false
420
+ "internal": false,
421
+ "getter": false,
422
+ "setter": false
330
423
  },
331
424
  {
332
425
  "name": "overlayActions",
333
426
  "type": "boolean",
334
427
  "attribute": "overlay-actions",
335
428
  "reflect": true,
336
- "mutable": true,
429
+ "mutable": false,
337
430
  "required": false,
338
431
  "optional": false,
339
432
  "complexType": {
@@ -345,21 +438,103 @@
345
438
  "tags": [],
346
439
  "text": ""
347
440
  },
348
- "internal": false
441
+ "internal": false,
442
+ "getter": false,
443
+ "setter": false
444
+ },
445
+ {
446
+ "name": "selectable",
447
+ "type": "boolean",
448
+ "attribute": "selectable",
449
+ "reflect": true,
450
+ "mutable": false,
451
+ "required": false,
452
+ "optional": true,
453
+ "defaultValue": "undefined",
454
+ "complexType": {
455
+ "original": "boolean",
456
+ "resolved": "boolean | undefined",
457
+ "references": {}
458
+ },
459
+ "docs": {
460
+ "tags": [],
461
+ "text": ""
462
+ },
463
+ "internal": false,
464
+ "getter": false,
465
+ "setter": false
466
+ },
467
+ {
468
+ "name": "selected",
469
+ "type": "boolean",
470
+ "attribute": "selected",
471
+ "reflect": true,
472
+ "mutable": true,
473
+ "required": false,
474
+ "optional": true,
475
+ "complexType": {
476
+ "original": "boolean",
477
+ "resolved": "boolean | undefined",
478
+ "references": {}
479
+ },
480
+ "docs": {
481
+ "tags": [],
482
+ "text": ""
483
+ },
484
+ "internal": false,
485
+ "getter": false,
486
+ "setter": false
487
+ },
488
+ {
489
+ "name": "value",
490
+ "type": "any",
491
+ "attribute": "value",
492
+ "reflect": true,
493
+ "mutable": false,
494
+ "required": false,
495
+ "optional": true,
496
+ "complexType": {
497
+ "original": "string | number",
498
+ "resolved": "number | string | undefined",
499
+ "references": {}
500
+ },
501
+ "docs": {
502
+ "tags": [],
503
+ "text": ""
504
+ },
505
+ "internal": false,
506
+ "getter": false,
507
+ "setter": false
349
508
  }
350
509
  ],
351
510
  "virtualProperties": [],
352
- "states": [],
353
- "methods": [],
354
- "listeners": [
511
+ "states": [
355
512
  {
356
- "name": "mdsTableInteractiveChange",
357
- "method": "tableInteractiveHandler",
358
- "capture": false,
359
- "passive": false,
360
- "target": "document"
513
+ "name": "language"
514
+ }
515
+ ],
516
+ "methods": [
517
+ {
518
+ "name": "updateLang",
519
+ "docs": {
520
+ "text": "",
521
+ "tags": []
522
+ },
523
+ "complexType": {
524
+ "signature": "() => Promise<void>",
525
+ "parameters": [],
526
+ "references": {
527
+ "Promise": {
528
+ "location": "global",
529
+ "id": "global::Promise"
530
+ }
531
+ },
532
+ "return": "Promise<void>"
533
+ },
534
+ "internal": false
361
535
  }
362
536
  ],
537
+ "listeners": [],
363
538
  "events": [],
364
539
  "watchers": [],
365
540
  "styles": [
@@ -406,15 +581,16 @@
406
581
  "hasElement": false,
407
582
  "hasEvent": false,
408
583
  "hasLifecycle": true,
409
- "hasListener": true,
410
- "hasListenerTarget": true,
584
+ "hasListener": false,
585
+ "hasListenerTarget": false,
411
586
  "hasListenerTargetWindow": false,
412
- "hasListenerTargetDocument": true,
587
+ "hasListenerTargetDocument": false,
413
588
  "hasListenerTargetBody": false,
414
589
  "hasListenerTargetParent": false,
415
590
  "hasMember": true,
416
- "hasMethod": false,
591
+ "hasMethod": true,
417
592
  "hasMode": false,
593
+ "hasModernPropertyDecls": false,
418
594
  "hasAttribute": true,
419
595
  "hasProp": true,
420
596
  "hasPropNumber": false,
@@ -423,14 +599,14 @@
423
599
  "hasPropMutable": true,
424
600
  "hasReflect": true,
425
601
  "hasRenderFn": true,
426
- "hasState": false,
602
+ "hasState": true,
427
603
  "hasStyle": true,
428
604
  "hasVdomAttribute": true,
429
605
  "hasVdomXlink": false,
430
606
  "hasVdomClass": true,
431
607
  "hasVdomFunctional": false,
432
608
  "hasVdomKey": true,
433
- "hasVdomListener": false,
609
+ "hasVdomListener": true,
434
610
  "hasVdomPropOrAttr": true,
435
611
  "hasVdomRef": false,
436
612
  "hasVdomRender": true,
@@ -442,18 +618,25 @@
442
618
  "key",
443
619
  "role",
444
620
  "class",
621
+ "title",
622
+ "lang",
623
+ "type",
624
+ "checked",
625
+ "onMdsInputSwitchChange",
445
626
  "style",
446
627
  "name"
447
628
  ],
448
629
  "htmlTagNames": [
449
- "slot",
450
630
  "mds-table-cell",
451
- "div"
631
+ "div",
632
+ "mds-input-switch",
633
+ "slot"
452
634
  ],
453
635
  "htmlParts": [],
454
636
  "isUpdateable": true,
455
637
  "potentialCmpRefs": [
456
- "mds-table-cell"
638
+ "mds-table-cell",
639
+ "mds-input-switch"
457
640
  ],
458
641
  "dependents": [],
459
642
  "dependencies": [],
@@ -466,7 +649,7 @@
466
649
  ],
467
650
  "componentGraph": {
468
651
  "sc-mds-table-row": [
469
- "p-faec61cc.js"
652
+ "p-22d4881a.js"
470
653
  ]
471
654
  },
472
655
  "sourceGraph": {
@@ -474,9 +657,14 @@
474
657
  "./src/common/date.ts": [],
475
658
  "./src/common/device.ts": [],
476
659
  "./src/common/file.ts": [],
660
+ "./src/common/floating-controller.ts": [
661
+ "./src/common/aria",
662
+ "./src/common/unit"
663
+ ],
477
664
  "./src/common/icon.ts": [],
478
665
  "./src/common/keyboard-manager.ts": [],
479
666
  "./src/common/locale.ts": [],
667
+ "./src/common/slot.ts": [],
480
668
  "./src/common/unit.ts": [],
481
669
  "./src/common/yugop/core.ts": [
482
670
  "./src/common/yugop/utils/math",
@@ -494,7 +682,13 @@
494
682
  "./src/common/yugop/utils/noop.ts": [],
495
683
  "./src/common/yugop/utils/prng.ts": [],
496
684
  "./src/common/yugop/utils/string.ts": [],
497
- "./src/components/mds-table-row/mds-table-row.tsx": [],
685
+ "./src/components/mds-table-row/mds-table-row.tsx": [
686
+ "./src/components/mds-table-row/meta/locale.el.json",
687
+ "./src/components/mds-table-row/meta/locale.en.json",
688
+ "./src/components/mds-table-row/meta/locale.es.json",
689
+ "./src/components/mds-table-row/meta/locale.it.json"
690
+ ],
691
+ "./src/dictionary/animation.ts": [],
498
692
  "./src/dictionary/autocomplete.ts": [],
499
693
  "./src/dictionary/button.ts": [],
500
694
  "./src/dictionary/color.ts": [],
@@ -507,10 +701,12 @@
507
701
  "./src/dictionary/input.ts": [],
508
702
  "./src/dictionary/loading.ts": [],
509
703
  "./src/dictionary/text.ts": [],
704
+ "./src/dictionary/tree.ts": [],
510
705
  "./src/dictionary/typography.ts": [],
511
706
  "./src/dictionary/variant.ts": [],
512
707
  "./src/fixtures/cities.ts": [],
513
708
  "./src/fixtures/filenames.ts": [],
709
+ "./src/type/animation.ts": [],
514
710
  "./src/type/autocomplete.ts": [],
515
711
  "./src/type/button.ts": [],
516
712
  "./src/type/date.ts": [],
@@ -522,6 +718,7 @@
522
718
  "./src/type/loading.ts": [],
523
719
  "./src/type/preference.ts": [],
524
720
  "./src/type/text.ts": [],
721
+ "./src/type/tree.ts": [],
525
722
  "./src/type/typography.ts": [],
526
723
  "./src/type/variant-file-format.ts": [],
527
724
  "./src/type/variant.ts": []
@@ -0,0 +1,46 @@
1
+ import { FloatingUIPlacement, FloatingUIStrategy } from "../type/floating-ui";
2
+ import { HTMLStencilElement } from '../stencil-public-runtime';
3
+ export interface FloatingElement extends PositionOptions {
4
+ host: HTMLFloatingElement;
5
+ }
6
+ export interface HTMLFloatingElement extends HTMLStencilElement, PositionOptions {
7
+ visible: boolean;
8
+ }
9
+ export interface PositionOptions {
10
+ arrow: boolean;
11
+ arrowPadding: number;
12
+ autoPlacement: boolean;
13
+ flip: boolean;
14
+ offset: number;
15
+ placement: FloatingUIPlacement;
16
+ shift: boolean;
17
+ shiftPadding: number;
18
+ strategy: FloatingUIStrategy;
19
+ }
20
+ export declare class FloatingController {
21
+ private _caller;
22
+ private readonly _host;
23
+ arrowEl: HTMLElement | undefined;
24
+ private cleanupAutoUpdate;
25
+ constructor(host: HTMLFloatingElement, arrowEl?: HTMLElement);
26
+ updateCaller(target: string): HTMLElement;
27
+ private readonly arrowInset;
28
+ private readonly arrowTransform;
29
+ private readonly arrowTransformOrigin;
30
+ private readonly calculatePosition;
31
+ updatePosition(): void;
32
+ dismiss(): void;
33
+ }
34
+ export declare class Backdrop {
35
+ private readonly defaultBackdropId;
36
+ private readonly backdropBackgroundVisible;
37
+ private readonly backdropBackgroundHidden;
38
+ private readonly backdropId;
39
+ private readonly cssBackdropZIndex;
40
+ private readonly cssBackdropDuration;
41
+ private backdropEl;
42
+ private backdropTimer;
43
+ constructor(backdropId?: string);
44
+ attachBackdrop(): void;
45
+ detachBackdrop(): void;
46
+ }
@@ -0,0 +1,3 @@
1
+ declare const hasSlottedElements: (el: HTMLElement, name?: string) => boolean;
2
+ declare const hasSlottedNodes: (el: HTMLElement, name?: string) => boolean;
3
+ export { hasSlottedElements, hasSlottedNodes, };
@@ -6,10 +6,16 @@ export declare class MdsTableRow {
6
6
  private actions;
7
7
  private hasActions;
8
8
  private sizerWidth;
9
- interactive: boolean;
10
- overlayActions: boolean;
11
- tableInteractiveHandler(event: CustomEvent<boolean>): void;
9
+ private t;
10
+ language: string;
11
+ updateLang(): Promise<void>;
12
+ readonly interactive?: boolean;
13
+ readonly overlayActions: boolean;
14
+ readonly selectable?: boolean;
15
+ selected?: boolean;
16
+ readonly value?: string | number;
12
17
  componentWillLoad(): void;
13
18
  componentDidLoad(): void;
19
+ private handleSelectionChange;
14
20
  render(): any;
15
21
  }