@spectrum-web-components/table 0.0.2-table.2695 → 0.1.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.
Files changed (146) hide show
  1. package/README.md +5 -5
  2. package/custom-elements.json +20 -0
  3. package/elements.dev.js +9 -0
  4. package/elements.dev.js.map +7 -0
  5. package/elements.js +2 -19
  6. package/elements.js.map +7 -1
  7. package/package.json +80 -18
  8. package/sp-table-body.dev.js +4 -0
  9. package/sp-table-body.dev.js.map +7 -0
  10. package/sp-table-body.js +2 -14
  11. package/sp-table-body.js.map +7 -1
  12. package/sp-table-cell.dev.js +4 -0
  13. package/sp-table-cell.dev.js.map +7 -0
  14. package/sp-table-cell.js +2 -14
  15. package/sp-table-cell.js.map +7 -1
  16. package/sp-table-checkbox-cell.dev.js +4 -0
  17. package/sp-table-checkbox-cell.dev.js.map +7 -0
  18. package/sp-table-checkbox-cell.js +2 -14
  19. package/sp-table-checkbox-cell.js.map +7 -1
  20. package/sp-table-head-cell.dev.js +4 -0
  21. package/sp-table-head-cell.dev.js.map +7 -0
  22. package/sp-table-head-cell.js +2 -14
  23. package/sp-table-head-cell.js.map +7 -1
  24. package/sp-table-head.dev.js +4 -0
  25. package/sp-table-head.dev.js.map +7 -0
  26. package/sp-table-head.js +2 -14
  27. package/sp-table-head.js.map +7 -1
  28. package/sp-table-row.dev.js +4 -0
  29. package/sp-table-row.dev.js.map +7 -0
  30. package/sp-table-row.js +2 -14
  31. package/sp-table-row.js.map +7 -1
  32. package/sp-table.dev.js +4 -0
  33. package/sp-table.dev.js.map +7 -0
  34. package/sp-table.js +2 -14
  35. package/sp-table.js.map +7 -1
  36. package/src/Table.d.ts +1 -0
  37. package/src/Table.dev.js +392 -0
  38. package/src/Table.dev.js.map +7 -0
  39. package/src/Table.js +13 -383
  40. package/src/Table.js.map +7 -1
  41. package/src/TableBody.d.ts +2 -0
  42. package/src/TableBody.dev.js +55 -0
  43. package/src/TableBody.dev.js.map +7 -0
  44. package/src/TableBody.js +3 -35
  45. package/src/TableBody.js.map +7 -1
  46. package/src/TableCell.dev.js +36 -0
  47. package/src/TableCell.dev.js.map +7 -0
  48. package/src/TableCell.js +3 -35
  49. package/src/TableCell.js.map +7 -1
  50. package/src/TableCheckboxCell.dev.js +71 -0
  51. package/src/TableCheckboxCell.dev.js.map +7 -0
  52. package/src/TableCheckboxCell.js +4 -62
  53. package/src/TableCheckboxCell.js.map +7 -1
  54. package/src/TableHead.dev.js +55 -0
  55. package/src/TableHead.dev.js.map +7 -0
  56. package/src/TableHead.js +3 -52
  57. package/src/TableHead.js.map +7 -1
  58. package/src/TableHeadCell.dev.js +93 -0
  59. package/src/TableHeadCell.dev.js.map +7 -0
  60. package/src/TableHeadCell.js +5 -92
  61. package/src/TableHeadCell.js.map +7 -1
  62. package/src/TableRow.dev.js +104 -0
  63. package/src/TableRow.dev.js.map +7 -0
  64. package/src/TableRow.js +3 -96
  65. package/src/TableRow.js.map +7 -1
  66. package/src/index.d.ts +6 -0
  67. package/src/index.dev.js +9 -0
  68. package/src/index.dev.js.map +7 -0
  69. package/src/index.js +2 -13
  70. package/src/index.js.map +7 -1
  71. package/src/spectrum-table-body.css.dev.js +17 -0
  72. package/src/spectrum-table-body.css.dev.js.map +7 -0
  73. package/src/spectrum-table-body.css.js +3 -16
  74. package/src/spectrum-table-body.css.js.map +7 -1
  75. package/src/spectrum-table-cell.css.dev.js +27 -0
  76. package/src/spectrum-table-cell.css.dev.js.map +7 -0
  77. package/src/spectrum-table-cell.css.js +3 -16
  78. package/src/spectrum-table-cell.css.js.map +7 -1
  79. package/src/spectrum-table-checkbox-cell.css.dev.js +13 -0
  80. package/src/spectrum-table-checkbox-cell.css.dev.js.map +7 -0
  81. package/src/spectrum-table-checkbox-cell.css.js +3 -16
  82. package/src/spectrum-table-checkbox-cell.css.js.map +7 -1
  83. package/src/spectrum-table-head-cell.css.dev.js +61 -0
  84. package/src/spectrum-table-head-cell.css.dev.js.map +7 -0
  85. package/src/spectrum-table-head-cell.css.js +3 -16
  86. package/src/spectrum-table-head-cell.css.js.map +7 -1
  87. package/src/spectrum-table-head.css.dev.js +7 -0
  88. package/src/spectrum-table-head.css.dev.js.map +7 -0
  89. package/src/spectrum-table-head.css.js +3 -16
  90. package/src/spectrum-table-head.css.js.map +7 -1
  91. package/src/spectrum-table-row.css.dev.js +33 -0
  92. package/src/spectrum-table-row.css.dev.js.map +7 -0
  93. package/src/spectrum-table-row.css.js +3 -16
  94. package/src/spectrum-table-row.css.js.map +7 -1
  95. package/src/spectrum-table.css.dev.js +513 -0
  96. package/src/spectrum-table.css.dev.js.map +7 -0
  97. package/src/spectrum-table.css.js +3 -16
  98. package/src/spectrum-table.css.js.map +7 -1
  99. package/src/table-body.css.dev.js +17 -0
  100. package/src/table-body.css.dev.js.map +7 -0
  101. package/src/table-body.css.js +4 -17
  102. package/src/table-body.css.js.map +7 -1
  103. package/src/table-cell.css.dev.js +27 -0
  104. package/src/table-cell.css.dev.js.map +7 -0
  105. package/src/table-cell.css.js +3 -16
  106. package/src/table-cell.css.js.map +7 -1
  107. package/src/table-checkbox-cell.css.dev.js +13 -0
  108. package/src/table-checkbox-cell.css.dev.js.map +7 -0
  109. package/src/table-checkbox-cell.css.js +3 -16
  110. package/src/table-checkbox-cell.css.js.map +7 -1
  111. package/src/table-head-cell.css.dev.js +61 -0
  112. package/src/table-head-cell.css.dev.js.map +7 -0
  113. package/src/table-head-cell.css.js +3 -16
  114. package/src/table-head-cell.css.js.map +7 -1
  115. package/src/table-head.css.dev.js +7 -0
  116. package/src/table-head.css.dev.js.map +7 -0
  117. package/src/table-head.css.js +3 -16
  118. package/src/table-head.css.js.map +7 -1
  119. package/src/table-row.css.dev.js +33 -0
  120. package/src/table-row.css.dev.js.map +7 -0
  121. package/src/table-row.css.js +3 -16
  122. package/src/table-row.css.js.map +7 -1
  123. package/src/table.css.dev.js +513 -0
  124. package/src/table.css.dev.js.map +7 -0
  125. package/src/table.css.js +4 -17
  126. package/src/table.css.js.map +7 -1
  127. package/stories/index.js +17 -27
  128. package/stories/index.js.map +7 -1
  129. package/stories/table-elements.stories.js +58 -102
  130. package/stories/table-elements.stories.js.map +7 -1
  131. package/stories/table-virtualized.stories.js +142 -128
  132. package/stories/table-virtualized.stories.js.map +7 -1
  133. package/test/benchmark/basic-test.js +7 -17
  134. package/test/benchmark/basic-test.js.map +7 -1
  135. package/test/table-elements.test-vrt.js +5 -15
  136. package/test/table-elements.test-vrt.js.map +7 -1
  137. package/test/table-selects.test.js +193 -170
  138. package/test/table-selects.test.js.map +7 -1
  139. package/test/table-virtualized.test-vrt.js +5 -15
  140. package/test/table-virtualized.test-vrt.js.map +7 -1
  141. package/test/table.test.js +117 -101
  142. package/test/table.test.js.map +7 -1
  143. package/test/virtualized-table-selects.test.js +386 -300
  144. package/test/virtualized-table-selects.test.js.map +7 -1
  145. package/test/virtualized-table.test.js +213 -182
  146. package/test/virtualized-table.test.js.map +7 -1
package/README.md CHANGED
@@ -86,11 +86,11 @@ To ensure that the table scrolls, make sure to add a `style` attribute to `<sp-t
86
86
 
87
87
  ## Selection
88
88
 
89
- To manage selection on an `<sp-table>`, utilise the `selects` attribute on `<sp-table>`. Each `<sp-table-row>` has a `value` attribute which, by default, corresponds to its index in the table, and these `value`s tell `<sp-table>` which `<sp-table-row>`s are selected. The selected items can be manually fed in through the `.selected` attribute on the table.
89
+ To manage selection on an `<sp-table>`, utilise the `selects` attribute on `<sp-table>`. Each `<sp-table-row>` has a `value` attribute which, by default, corresponds to its index in the table, and these `value`s tell `<sp-table>` which `<sp-table-row>`s are selected. The selected items can be manually applied via the `selected` property on the table.
90
90
 
91
91
  ### `selects="single"`
92
92
 
93
- When `selects="single"` the `<sp-table>` will manage a _single_ selection in the array value of `selected`.
93
+ When `selects="single"`, the `<sp-table>` will manage a _single_ selection in the array value of `selected`.
94
94
 
95
95
  ```html
96
96
  <sp-table
@@ -137,7 +137,7 @@ When `selects="single"` the `<sp-table>` will manage a _single_ selection in the
137
137
 
138
138
  ### `selects="multiple"`
139
139
 
140
- When `selects="multiple"` the `<sp-table>` will manage a selection in the array value of `selected` in via a presence toggle. Further, an `<sp-table-checkbox-cell>` will be made available in the `<sp-table-head>` in order to select/deselect all items in the `<sp-table>`.
140
+ When `selects="multiple"`, the `<sp-table>` will manage a selection in the array value of `selected` in via a presence toggle. Additionally, an `<sp-table-checkbox-cell>` will be made available in the `<sp-table-head>` in order to select/deselect all items in the `<sp-table>`.
141
141
 
142
142
  ```html
143
143
  <sp-table
@@ -302,7 +302,7 @@ Please note that there is a bug when attempting to select all virtualised elemen
302
302
 
303
303
  ### Selection
304
304
 
305
- When making a selection on a virtualized table, it can sometimes be useful to track that selection as something other than an array of indexes. To make this possible the `itemValue` property will accept a method who argument is an item object, return a computed string value to track selection with this value rather than the item's index:
305
+ By default the `selected` property will surface an array of item indexes that are currently selected. However, when making a selection on a virtualized table, it can be useful to track selection as something other than indexes. To do so, set a custom method for the `itemValue` property. The `itemValue` method accepts an item and its index as arguments and should return the value you would like to track in the `selected` property.
306
306
 
307
307
  ```html-live
308
308
  <sp-table
@@ -400,7 +400,7 @@ When making a selection on a virtualized table, it can sometimes be useful to tr
400
400
 
401
401
  ### Row Types
402
402
 
403
- All values in the item array are assumed to be homogenous by default. This means all of the rendered rows are either delivered as provided, or, in the case you are leveraging `selects`, rendered with an `<sp-table-checkbox-cell>`. However, when virtualizing a table with selection it can sometimes be useful to surface rows with additional interactions, e.g. "Load more data" links. To support that you can optionally include the `_$rowType$` brand in your item. The values for this are outlined by the `RowType` enum and include `ITEM` (0) and `INFORMATION` (1). When `_$rowType$: RowType.INFORMATION` is provided it informs the `<sp-table>` element not to deliver an `<sp-table-checkbox-cell>` with that row.
403
+ All values in the item array are assumed to be homogenous by default. This means all of the rendered rows are either delivered as provided, or, in the case you are leveraging `selects`, rendered with an `<sp-table-checkbox-cell>`. However, when virtualizing a table with selection, it can sometimes be useful to surface rows with additional interactions, e.g. "Load more data" links. To support that, you can optionally include the `_$rowType$` brand in your item. The values for this are outlined by the `RowType` enum and include `ITEM` (0) and `INFORMATION` (1). When `_$rowType$: RowType.INFORMATION` is provided, it instructs the `<sp-table>` not to deliver an `<sp-table-checkbox-cell>` in that row.
404
404
 
405
405
  ```html-live
406
406
  <sp-table
@@ -314,6 +314,16 @@
314
314
  }
315
315
  }
316
316
  },
317
+ {
318
+ "kind": "method",
319
+ "name": "validateSelected",
320
+ "privacy": "protected",
321
+ "return": {
322
+ "type": {
323
+ "text": "void"
324
+ }
325
+ }
326
+ },
317
327
  {
318
328
  "kind": "method",
319
329
  "name": "manageSelected",
@@ -519,6 +529,16 @@
519
529
  "description": "",
520
530
  "name": "TableBody",
521
531
  "members": [
532
+ {
533
+ "kind": "method",
534
+ "name": "shouldHaveTabIndex",
535
+ "privacy": "protected",
536
+ "return": {
537
+ "type": {
538
+ "text": "void"
539
+ }
540
+ }
541
+ },
522
542
  {
523
543
  "kind": "field",
524
544
  "name": "role",
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+ import "./sp-table-body.dev.js";
3
+ import "./sp-table-cell.dev.js";
4
+ import "./sp-table-checkbox-cell.dev.js";
5
+ import "./sp-table-head-cell.dev.js";
6
+ import "./sp-table-head.dev.js";
7
+ import "./sp-table-row.dev.js";
8
+ import "./sp-table-table.dev.js";
9
+ //# sourceMappingURL=elements.dev.js.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["elements.ts"],
4
+ "sourcesContent": ["/*\nCopyright 2022 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport './sp-table-body.dev.js'\nimport './sp-table-cell.dev.js'\nimport './sp-table-checkbox-cell.dev.js'\nimport './sp-table-head-cell.dev.js'\nimport './sp-table-head.dev.js'\nimport './sp-table-row.dev.js'\nimport './sp-table-table.dev.js'\n"],
5
+ "mappings": ";AAYA,OAAO;AACP,OAAO;AACP,OAAO;AACP,OAAO;AACP,OAAO;AACP,OAAO;AACP,OAAO;",
6
+ "names": []
7
+ }
package/elements.js CHANGED
@@ -1,19 +1,2 @@
1
- /*
2
- Copyright 2022 Adobe. All rights reserved.
3
- This file is licensed to you under the Apache License, Version 2.0 (the "License");
4
- you may not use this file except in compliance with the License. You may obtain a copy
5
- of the License at http://www.apache.org/licenses/LICENSE-2.0
6
-
7
- Unless required by applicable law or agreed to in writing, software distributed under
8
- the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
9
- OF ANY KIND, either express or implied. See the License for the specific language
10
- governing permissions and limitations under the License.
11
- */
12
- import './sp-table-body.js';
13
- import './sp-table-cell.js';
14
- import './sp-table-checkbox-cell.js';
15
- import './sp-table-head-cell.js';
16
- import './sp-table-head.js';
17
- import './sp-table-row.js';
18
- import './sp-table-table.js';
19
- //# sourceMappingURL=elements.js.map
1
+ "use strict";import"./sp-table-body.js";import"./sp-table-cell.js";import"./sp-table-checkbox-cell.js";import"./sp-table-head-cell.js";import"./sp-table-head.js";import"./sp-table-row.js";import"./sp-table-table.js";
2
+ //# sourceMappingURL=elements.js.map
package/elements.js.map CHANGED
@@ -1 +1,7 @@
1
- {"version":3,"file":"elements.js","sourceRoot":"","sources":["elements.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AAEF,OAAO,oBAAoB,CAAC;AAC5B,OAAO,oBAAoB,CAAC;AAC5B,OAAO,6BAA6B,CAAC;AACrC,OAAO,yBAAyB,CAAC;AACjC,OAAO,oBAAoB,CAAC;AAC5B,OAAO,mBAAmB,CAAC;AAC3B,OAAO,qBAAqB,CAAC","sourcesContent":["/*\nCopyright 2022 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport './sp-table-body.js';\nimport './sp-table-cell.js';\nimport './sp-table-checkbox-cell.js';\nimport './sp-table-head-cell.js';\nimport './sp-table-head.js';\nimport './sp-table-row.js';\nimport './sp-table-table.js';\n"]}
1
+ {
2
+ "version": 3,
3
+ "sources": ["elements.ts"],
4
+ "sourcesContent": ["/*\nCopyright 2022 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport './sp-table-body.js';\nimport './sp-table-cell.js';\nimport './sp-table-checkbox-cell.js';\nimport './sp-table-head-cell.js';\nimport './sp-table-head.js';\nimport './sp-table-row.js';\nimport './sp-table-table.js';\n"],
5
+ "mappings": "aAYA,MAAO,qBACP,MAAO,qBACP,MAAO,8BACP,MAAO,0BACP,MAAO,qBACP,MAAO,oBACP,MAAO",
6
+ "names": []
7
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spectrum-web-components/table",
3
- "version": "0.0.2-table.2695+c918a8825",
3
+ "version": "0.1.0",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -20,17 +20,78 @@
20
20
  "module": "src/index.js",
21
21
  "type": "module",
22
22
  "exports": {
23
- ".": "./src/index.js",
24
- "./src/*": "./src/*.js",
23
+ ".": {
24
+ "development": "./src/index.dev.js",
25
+ "default": "./src/index.js"
26
+ },
25
27
  "./package.json": "./package.json",
26
- "./sp-table-body.js": "./sp-table-body.js",
27
- "./sp-table-cell.js": "./sp-table-cell.js",
28
- "./sp-table-checkbox-cell.js": "./sp-table-checkbox-cell.js",
29
- "./sp-table-head.js": "./sp-table-head.js",
30
- "./sp-table-head-cell.js": "./sp-table-head-cell.js",
31
- "./sp-table-row.js": "./sp-table-row.js",
32
- "./sp-table.js": "./sp-table.js",
33
- "./elements.js": "./elements.js"
28
+ "./src/Table.js": {
29
+ "development": "./src/Table.dev.js",
30
+ "default": "./src/Table.js"
31
+ },
32
+ "./src/TableBody.js": {
33
+ "development": "./src/TableBody.dev.js",
34
+ "default": "./src/TableBody.js"
35
+ },
36
+ "./src/TableCell.js": {
37
+ "development": "./src/TableCell.dev.js",
38
+ "default": "./src/TableCell.js"
39
+ },
40
+ "./src/TableCheckboxCell.js": {
41
+ "development": "./src/TableCheckboxCell.dev.js",
42
+ "default": "./src/TableCheckboxCell.js"
43
+ },
44
+ "./src/TableHead.js": {
45
+ "development": "./src/TableHead.dev.js",
46
+ "default": "./src/TableHead.js"
47
+ },
48
+ "./src/TableHeadCell.js": {
49
+ "development": "./src/TableHeadCell.dev.js",
50
+ "default": "./src/TableHeadCell.js"
51
+ },
52
+ "./src/TableRow.js": {
53
+ "development": "./src/TableRow.dev.js",
54
+ "default": "./src/TableRow.js"
55
+ },
56
+ "./src/index.js": {
57
+ "development": "./src/index.dev.js",
58
+ "default": "./src/index.js"
59
+ },
60
+ "./src/table-body.css.js": "./src/table-body.css.js",
61
+ "./src/table-cell.css.js": "./src/table-cell.css.js",
62
+ "./src/table-checkbox-cell.css.js": "./src/table-checkbox-cell.css.js",
63
+ "./src/table-head-cell.css.js": "./src/table-head-cell.css.js",
64
+ "./src/table-head.css.js": "./src/table-head.css.js",
65
+ "./src/table-row.css.js": "./src/table-row.css.js",
66
+ "./src/table.css.js": "./src/table.css.js",
67
+ "./sp-table-body.js": {
68
+ "development": "./sp-table-body.dev.js",
69
+ "default": "./sp-table-body.js"
70
+ },
71
+ "./sp-table-cell.js": {
72
+ "development": "./sp-table-cell.dev.js",
73
+ "default": "./sp-table-cell.js"
74
+ },
75
+ "./sp-table-checkbox-cell.js": {
76
+ "development": "./sp-table-checkbox-cell.dev.js",
77
+ "default": "./sp-table-checkbox-cell.js"
78
+ },
79
+ "./sp-table-head.js": {
80
+ "development": "./sp-table-head.dev.js",
81
+ "default": "./sp-table-head.js"
82
+ },
83
+ "./sp-table-head-cell.js": {
84
+ "development": "./sp-table-head-cell.dev.js",
85
+ "default": "./sp-table-head-cell.js"
86
+ },
87
+ "./sp-table-row.js": {
88
+ "development": "./sp-table-row.dev.js",
89
+ "default": "./sp-table-row.js"
90
+ },
91
+ "./sp-table.js": {
92
+ "development": "./sp-table.dev.js",
93
+ "default": "./sp-table.js"
94
+ }
34
95
  },
35
96
  "scripts": {
36
97
  "test": "echo \"Error: run tests from mono-repo root.\" && exit 1"
@@ -51,20 +112,21 @@
51
112
  ],
52
113
  "dependencies": {
53
114
  "@lit-labs/virtualizer": "^0.7.1",
54
- "@spectrum-web-components/base": "^0.5.8",
55
- "@spectrum-web-components/checkbox": "^0.13.5",
56
- "@spectrum-web-components/icon": "^0.11.11",
57
- "@spectrum-web-components/icons-ui": "^0.8.11",
115
+ "@spectrum-web-components/base": "^0.7.0",
116
+ "@spectrum-web-components/checkbox": "^0.14.0",
117
+ "@spectrum-web-components/icon": "^0.12.0",
118
+ "@spectrum-web-components/icons-ui": "^0.9.0",
58
119
  "tslib": "^2.0.0"
59
120
  },
60
121
  "devDependencies": {
61
- "@spectrum-css/table": "^4.0.17"
122
+ "@spectrum-css/table": "^4.0.19"
62
123
  },
63
124
  "types": "./src/index.d.ts",
64
125
  "customElements": "custom-elements.json",
65
126
  "sideEffects": [
66
127
  "./sp-*.js",
67
- "./elements.js"
128
+ "./elements.js",
129
+ "./**/*.dev.js"
68
130
  ],
69
- "gitHead": "c918a88257244ab1ecedc8bab223bb523d35bb59"
131
+ "gitHead": "60b2d3b7d9020d72f9ae930568670321a1918e6f"
70
132
  }
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ import { TableBody } from "./src/TableBody.dev.js";
3
+ customElements.define("sp-table-body", TableBody);
4
+ //# sourceMappingURL=sp-table-body.dev.js.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["sp-table-body.ts"],
4
+ "sourcesContent": ["/*\nCopyright 2022 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\nimport { TableBody } from './src/TableBody.dev.js'\n\ncustomElements.define('sp-table-body', TableBody);\n\ndeclare global {\n interface HTMLElementTagNameMap {\n 'sp-table-body': TableBody;\n }\n}\n"],
5
+ "mappings": ";AAWA,SAAS,iBAAiB;AAE1B,eAAe,OAAO,iBAAiB,SAAS;",
6
+ "names": []
7
+ }
package/sp-table-body.js CHANGED
@@ -1,14 +1,2 @@
1
- /*
2
- Copyright 2022 Adobe. All rights reserved.
3
- This file is licensed to you under the Apache License, Version 2.0 (the "License");
4
- you may not use this file except in compliance with the License. You may obtain a copy
5
- of the License at http://www.apache.org/licenses/LICENSE-2.0
6
-
7
- Unless required by applicable law or agreed to in writing, software distributed under
8
- the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
9
- OF ANY KIND, either express or implied. See the License for the specific language
10
- governing permissions and limitations under the License.
11
- */
12
- import { TableBody } from './src/TableBody.js';
13
- customElements.define('sp-table-body', TableBody);
14
- //# sourceMappingURL=sp-table-body.js.map
1
+ "use strict";import{TableBody as e}from"./src/TableBody.js";customElements.define("sp-table-body",e);
2
+ //# sourceMappingURL=sp-table-body.js.map
@@ -1 +1,7 @@
1
- {"version":3,"file":"sp-table-body.js","sourceRoot":"","sources":["sp-table-body.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AACF,OAAO,EAAE,SAAS,EAAE,MAAM,oBAAoB,CAAC;AAE/C,cAAc,CAAC,MAAM,CAAC,eAAe,EAAE,SAAS,CAAC,CAAC","sourcesContent":["/*\nCopyright 2022 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\nimport { TableBody } from './src/TableBody.js';\n\ncustomElements.define('sp-table-body', TableBody);\n\ndeclare global {\n interface HTMLElementTagNameMap {\n 'sp-table-body': TableBody;\n }\n}\n"]}
1
+ {
2
+ "version": 3,
3
+ "sources": ["sp-table-body.ts"],
4
+ "sourcesContent": ["/*\nCopyright 2022 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\nimport { TableBody } from './src/TableBody.js';\n\ncustomElements.define('sp-table-body', TableBody);\n\ndeclare global {\n interface HTMLElementTagNameMap {\n 'sp-table-body': TableBody;\n }\n}\n"],
5
+ "mappings": "aAWA,OAAS,aAAAA,MAAiB,qBAE1B,eAAe,OAAO,gBAAiBA,CAAS",
6
+ "names": ["TableBody"]
7
+ }
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ import { TableCell } from "./src/TableCell.dev.js";
3
+ customElements.define("sp-table-cell", TableCell);
4
+ //# sourceMappingURL=sp-table-cell.dev.js.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["sp-table-cell.ts"],
4
+ "sourcesContent": ["/*\nCopyright 2022 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\nimport { TableCell } from './src/TableCell.dev.js'\n\ncustomElements.define('sp-table-cell', TableCell);\n\ndeclare global {\n interface HTMLElementTagNameMap {\n 'sp-table-cell': TableCell;\n }\n}\n"],
5
+ "mappings": ";AAWA,SAAS,iBAAiB;AAE1B,eAAe,OAAO,iBAAiB,SAAS;",
6
+ "names": []
7
+ }
package/sp-table-cell.js CHANGED
@@ -1,14 +1,2 @@
1
- /*
2
- Copyright 2022 Adobe. All rights reserved.
3
- This file is licensed to you under the Apache License, Version 2.0 (the "License");
4
- you may not use this file except in compliance with the License. You may obtain a copy
5
- of the License at http://www.apache.org/licenses/LICENSE-2.0
6
-
7
- Unless required by applicable law or agreed to in writing, software distributed under
8
- the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
9
- OF ANY KIND, either express or implied. See the License for the specific language
10
- governing permissions and limitations under the License.
11
- */
12
- import { TableCell } from './src/TableCell.js';
13
- customElements.define('sp-table-cell', TableCell);
14
- //# sourceMappingURL=sp-table-cell.js.map
1
+ "use strict";import{TableCell as e}from"./src/TableCell.js";customElements.define("sp-table-cell",e);
2
+ //# sourceMappingURL=sp-table-cell.js.map
@@ -1 +1,7 @@
1
- {"version":3,"file":"sp-table-cell.js","sourceRoot":"","sources":["sp-table-cell.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AACF,OAAO,EAAE,SAAS,EAAE,MAAM,oBAAoB,CAAC;AAE/C,cAAc,CAAC,MAAM,CAAC,eAAe,EAAE,SAAS,CAAC,CAAC","sourcesContent":["/*\nCopyright 2022 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\nimport { TableCell } from './src/TableCell.js';\n\ncustomElements.define('sp-table-cell', TableCell);\n\ndeclare global {\n interface HTMLElementTagNameMap {\n 'sp-table-cell': TableCell;\n }\n}\n"]}
1
+ {
2
+ "version": 3,
3
+ "sources": ["sp-table-cell.ts"],
4
+ "sourcesContent": ["/*\nCopyright 2022 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\nimport { TableCell } from './src/TableCell.js';\n\ncustomElements.define('sp-table-cell', TableCell);\n\ndeclare global {\n interface HTMLElementTagNameMap {\n 'sp-table-cell': TableCell;\n }\n}\n"],
5
+ "mappings": "aAWA,OAAS,aAAAA,MAAiB,qBAE1B,eAAe,OAAO,gBAAiBA,CAAS",
6
+ "names": ["TableCell"]
7
+ }
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ import { TableCheckboxCell } from "./src/TableCheckboxCell.dev.js";
3
+ customElements.define("sp-table-checkbox-cell", TableCheckboxCell);
4
+ //# sourceMappingURL=sp-table-checkbox-cell.dev.js.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["sp-table-checkbox-cell.ts"],
4
+ "sourcesContent": ["/*\nCopyright 2022 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\nimport { TableCheckboxCell } from './src/TableCheckboxCell.dev.js'\n\ncustomElements.define('sp-table-checkbox-cell', TableCheckboxCell);\n\ndeclare global {\n interface HTMLElementTagNameMap {\n 'sp-table-checkbox-cell': TableCheckboxCell;\n }\n}\n"],
5
+ "mappings": ";AAWA,SAAS,yBAAyB;AAElC,eAAe,OAAO,0BAA0B,iBAAiB;",
6
+ "names": []
7
+ }
@@ -1,14 +1,2 @@
1
- /*
2
- Copyright 2022 Adobe. All rights reserved.
3
- This file is licensed to you under the Apache License, Version 2.0 (the "License");
4
- you may not use this file except in compliance with the License. You may obtain a copy
5
- of the License at http://www.apache.org/licenses/LICENSE-2.0
6
-
7
- Unless required by applicable law or agreed to in writing, software distributed under
8
- the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
9
- OF ANY KIND, either express or implied. See the License for the specific language
10
- governing permissions and limitations under the License.
11
- */
12
- import { TableCheckboxCell } from './src/TableCheckboxCell.js';
13
- customElements.define('sp-table-checkbox-cell', TableCheckboxCell);
14
- //# sourceMappingURL=sp-table-checkbox-cell.js.map
1
+ "use strict";import{TableCheckboxCell as e}from"./src/TableCheckboxCell.js";customElements.define("sp-table-checkbox-cell",e);
2
+ //# sourceMappingURL=sp-table-checkbox-cell.js.map
@@ -1 +1,7 @@
1
- {"version":3,"file":"sp-table-checkbox-cell.js","sourceRoot":"","sources":["sp-table-checkbox-cell.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AACF,OAAO,EAAE,iBAAiB,EAAE,MAAM,4BAA4B,CAAC;AAE/D,cAAc,CAAC,MAAM,CAAC,wBAAwB,EAAE,iBAAiB,CAAC,CAAC","sourcesContent":["/*\nCopyright 2022 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\nimport { TableCheckboxCell } from './src/TableCheckboxCell.js';\n\ncustomElements.define('sp-table-checkbox-cell', TableCheckboxCell);\n\ndeclare global {\n interface HTMLElementTagNameMap {\n 'sp-table-checkbox-cell': TableCheckboxCell;\n }\n}\n"]}
1
+ {
2
+ "version": 3,
3
+ "sources": ["sp-table-checkbox-cell.ts"],
4
+ "sourcesContent": ["/*\nCopyright 2022 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\nimport { TableCheckboxCell } from './src/TableCheckboxCell.js';\n\ncustomElements.define('sp-table-checkbox-cell', TableCheckboxCell);\n\ndeclare global {\n interface HTMLElementTagNameMap {\n 'sp-table-checkbox-cell': TableCheckboxCell;\n }\n}\n"],
5
+ "mappings": "aAWA,OAAS,qBAAAA,MAAyB,6BAElC,eAAe,OAAO,yBAA0BA,CAAiB",
6
+ "names": ["TableCheckboxCell"]
7
+ }
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ import { TableHeadCell } from "./src/TableHeadCell.dev.js";
3
+ customElements.define("sp-table-head-cell", TableHeadCell);
4
+ //# sourceMappingURL=sp-table-head-cell.dev.js.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["sp-table-head-cell.ts"],
4
+ "sourcesContent": ["/*\nCopyright 2022 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\nimport { TableHeadCell } from './src/TableHeadCell.dev.js'\n\ncustomElements.define('sp-table-head-cell', TableHeadCell);\n\ndeclare global {\n interface HTMLElementTagNameMap {\n 'sp-table-head-cell': TableHeadCell;\n }\n}\n"],
5
+ "mappings": ";AAWA,SAAS,qBAAqB;AAE9B,eAAe,OAAO,sBAAsB,aAAa;",
6
+ "names": []
7
+ }
@@ -1,14 +1,2 @@
1
- /*
2
- Copyright 2022 Adobe. All rights reserved.
3
- This file is licensed to you under the Apache License, Version 2.0 (the "License");
4
- you may not use this file except in compliance with the License. You may obtain a copy
5
- of the License at http://www.apache.org/licenses/LICENSE-2.0
6
-
7
- Unless required by applicable law or agreed to in writing, software distributed under
8
- the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
9
- OF ANY KIND, either express or implied. See the License for the specific language
10
- governing permissions and limitations under the License.
11
- */
12
- import { TableHeadCell } from './src/TableHeadCell.js';
13
- customElements.define('sp-table-head-cell', TableHeadCell);
14
- //# sourceMappingURL=sp-table-head-cell.js.map
1
+ "use strict";import{TableHeadCell as e}from"./src/TableHeadCell.js";customElements.define("sp-table-head-cell",e);
2
+ //# sourceMappingURL=sp-table-head-cell.js.map
@@ -1 +1,7 @@
1
- {"version":3,"file":"sp-table-head-cell.js","sourceRoot":"","sources":["sp-table-head-cell.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AACF,OAAO,EAAE,aAAa,EAAE,MAAM,wBAAwB,CAAC;AAEvD,cAAc,CAAC,MAAM,CAAC,oBAAoB,EAAE,aAAa,CAAC,CAAC","sourcesContent":["/*\nCopyright 2022 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\nimport { TableHeadCell } from './src/TableHeadCell.js';\n\ncustomElements.define('sp-table-head-cell', TableHeadCell);\n\ndeclare global {\n interface HTMLElementTagNameMap {\n 'sp-table-head-cell': TableHeadCell;\n }\n}\n"]}
1
+ {
2
+ "version": 3,
3
+ "sources": ["sp-table-head-cell.ts"],
4
+ "sourcesContent": ["/*\nCopyright 2022 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\nimport { TableHeadCell } from './src/TableHeadCell.js';\n\ncustomElements.define('sp-table-head-cell', TableHeadCell);\n\ndeclare global {\n interface HTMLElementTagNameMap {\n 'sp-table-head-cell': TableHeadCell;\n }\n}\n"],
5
+ "mappings": "aAWA,OAAS,iBAAAA,MAAqB,yBAE9B,eAAe,OAAO,qBAAsBA,CAAa",
6
+ "names": ["TableHeadCell"]
7
+ }
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ import { TableHead } from "./src/TableHead.dev.js";
3
+ customElements.define("sp-table-head", TableHead);
4
+ //# sourceMappingURL=sp-table-head.dev.js.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["sp-table-head.ts"],
4
+ "sourcesContent": ["/*\nCopyright 2022 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\nimport { TableHead } from './src/TableHead.dev.js'\n\ncustomElements.define('sp-table-head', TableHead);\n\ndeclare global {\n interface HTMLElementTagNameMap {\n 'sp-table-head': TableHead;\n }\n}\n"],
5
+ "mappings": ";AAWA,SAAS,iBAAiB;AAE1B,eAAe,OAAO,iBAAiB,SAAS;",
6
+ "names": []
7
+ }
package/sp-table-head.js CHANGED
@@ -1,14 +1,2 @@
1
- /*
2
- Copyright 2022 Adobe. All rights reserved.
3
- This file is licensed to you under the Apache License, Version 2.0 (the "License");
4
- you may not use this file except in compliance with the License. You may obtain a copy
5
- of the License at http://www.apache.org/licenses/LICENSE-2.0
6
-
7
- Unless required by applicable law or agreed to in writing, software distributed under
8
- the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
9
- OF ANY KIND, either express or implied. See the License for the specific language
10
- governing permissions and limitations under the License.
11
- */
12
- import { TableHead } from './src/TableHead.js';
13
- customElements.define('sp-table-head', TableHead);
14
- //# sourceMappingURL=sp-table-head.js.map
1
+ "use strict";import{TableHead as e}from"./src/TableHead.js";customElements.define("sp-table-head",e);
2
+ //# sourceMappingURL=sp-table-head.js.map
@@ -1 +1,7 @@
1
- {"version":3,"file":"sp-table-head.js","sourceRoot":"","sources":["sp-table-head.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AACF,OAAO,EAAE,SAAS,EAAE,MAAM,oBAAoB,CAAC;AAE/C,cAAc,CAAC,MAAM,CAAC,eAAe,EAAE,SAAS,CAAC,CAAC","sourcesContent":["/*\nCopyright 2022 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\nimport { TableHead } from './src/TableHead.js';\n\ncustomElements.define('sp-table-head', TableHead);\n\ndeclare global {\n interface HTMLElementTagNameMap {\n 'sp-table-head': TableHead;\n }\n}\n"]}
1
+ {
2
+ "version": 3,
3
+ "sources": ["sp-table-head.ts"],
4
+ "sourcesContent": ["/*\nCopyright 2022 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\nimport { TableHead } from './src/TableHead.js';\n\ncustomElements.define('sp-table-head', TableHead);\n\ndeclare global {\n interface HTMLElementTagNameMap {\n 'sp-table-head': TableHead;\n }\n}\n"],
5
+ "mappings": "aAWA,OAAS,aAAAA,MAAiB,qBAE1B,eAAe,OAAO,gBAAiBA,CAAS",
6
+ "names": ["TableHead"]
7
+ }
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ import { TableRow } from "./src/TableRow.dev.js";
3
+ customElements.define("sp-table-row", TableRow);
4
+ //# sourceMappingURL=sp-table-row.dev.js.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["sp-table-row.ts"],
4
+ "sourcesContent": ["/*\nCopyright 2022 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\nimport { TableRow } from './src/TableRow.dev.js'\n\ncustomElements.define('sp-table-row', TableRow);\n\ndeclare global {\n interface HTMLElementTagNameMap {\n 'sp-table-row': TableRow;\n }\n}\n"],
5
+ "mappings": ";AAWA,SAAS,gBAAgB;AAEzB,eAAe,OAAO,gBAAgB,QAAQ;",
6
+ "names": []
7
+ }
package/sp-table-row.js CHANGED
@@ -1,14 +1,2 @@
1
- /*
2
- Copyright 2022 Adobe. All rights reserved.
3
- This file is licensed to you under the Apache License, Version 2.0 (the "License");
4
- you may not use this file except in compliance with the License. You may obtain a copy
5
- of the License at http://www.apache.org/licenses/LICENSE-2.0
6
-
7
- Unless required by applicable law or agreed to in writing, software distributed under
8
- the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
9
- OF ANY KIND, either express or implied. See the License for the specific language
10
- governing permissions and limitations under the License.
11
- */
12
- import { TableRow } from './src/TableRow.js';
13
- customElements.define('sp-table-row', TableRow);
14
- //# sourceMappingURL=sp-table-row.js.map
1
+ "use strict";import{TableRow as e}from"./src/TableRow.js";customElements.define("sp-table-row",e);
2
+ //# sourceMappingURL=sp-table-row.js.map
@@ -1 +1,7 @@
1
- {"version":3,"file":"sp-table-row.js","sourceRoot":"","sources":["sp-table-row.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AACF,OAAO,EAAE,QAAQ,EAAE,MAAM,mBAAmB,CAAC;AAE7C,cAAc,CAAC,MAAM,CAAC,cAAc,EAAE,QAAQ,CAAC,CAAC","sourcesContent":["/*\nCopyright 2022 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\nimport { TableRow } from './src/TableRow.js';\n\ncustomElements.define('sp-table-row', TableRow);\n\ndeclare global {\n interface HTMLElementTagNameMap {\n 'sp-table-row': TableRow;\n }\n}\n"]}
1
+ {
2
+ "version": 3,
3
+ "sources": ["sp-table-row.ts"],
4
+ "sourcesContent": ["/*\nCopyright 2022 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\nimport { TableRow } from './src/TableRow.js';\n\ncustomElements.define('sp-table-row', TableRow);\n\ndeclare global {\n interface HTMLElementTagNameMap {\n 'sp-table-row': TableRow;\n }\n}\n"],
5
+ "mappings": "aAWA,OAAS,YAAAA,MAAgB,oBAEzB,eAAe,OAAO,eAAgBA,CAAQ",
6
+ "names": ["TableRow"]
7
+ }
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ import { Table } from "./src/Table.dev.js";
3
+ customElements.define("sp-table", Table);
4
+ //# sourceMappingURL=sp-table.dev.js.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["sp-table.ts"],
4
+ "sourcesContent": ["/*\nCopyright 2022 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\nimport { Table } from './src/Table.dev.js'\n\ncustomElements.define('sp-table', Table);\n\ndeclare global {\n interface HTMLElementTagNameMap {\n 'sp-table': Table;\n }\n}\n"],
5
+ "mappings": ";AAWA,SAAS,aAAa;AAEtB,eAAe,OAAO,YAAY,KAAK;",
6
+ "names": []
7
+ }
package/sp-table.js CHANGED
@@ -1,14 +1,2 @@
1
- /*
2
- Copyright 2022 Adobe. All rights reserved.
3
- This file is licensed to you under the Apache License, Version 2.0 (the "License");
4
- you may not use this file except in compliance with the License. You may obtain a copy
5
- of the License at http://www.apache.org/licenses/LICENSE-2.0
6
-
7
- Unless required by applicable law or agreed to in writing, software distributed under
8
- the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
9
- OF ANY KIND, either express or implied. See the License for the specific language
10
- governing permissions and limitations under the License.
11
- */
12
- import { Table } from './src/Table.js';
13
- customElements.define('sp-table', Table);
14
- //# sourceMappingURL=sp-table.js.map
1
+ "use strict";import{Table as e}from"./src/Table.js";customElements.define("sp-table",e);
2
+ //# sourceMappingURL=sp-table.js.map
package/sp-table.js.map CHANGED
@@ -1 +1,7 @@
1
- {"version":3,"file":"sp-table.js","sourceRoot":"","sources":["sp-table.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;EAUE;AACF,OAAO,EAAE,KAAK,EAAE,MAAM,gBAAgB,CAAC;AAEvC,cAAc,CAAC,MAAM,CAAC,UAAU,EAAE,KAAK,CAAC,CAAC","sourcesContent":["/*\nCopyright 2022 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\nimport { Table } from './src/Table.js';\n\ncustomElements.define('sp-table', Table);\n\ndeclare global {\n interface HTMLElementTagNameMap {\n 'sp-table': Table;\n }\n}\n"]}
1
+ {
2
+ "version": 3,
3
+ "sources": ["sp-table.ts"],
4
+ "sourcesContent": ["/*\nCopyright 2022 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\nimport { Table } from './src/Table.js';\n\ncustomElements.define('sp-table', Table);\n\ndeclare global {\n interface HTMLElementTagNameMap {\n 'sp-table': Table;\n }\n}\n"],
5
+ "mappings": "aAWA,OAAS,SAAAA,MAAa,iBAEtB,eAAe,OAAO,WAAYA,CAAK",
6
+ "names": ["Table"]
7
+ }
package/src/Table.d.ts CHANGED
@@ -65,6 +65,7 @@ export declare class Table extends Table_base {
65
65
  private selectAllRows;
66
66
  private deselectAllRows;
67
67
  protected manageSelects(): void;
68
+ protected validateSelected(): void;
68
69
  protected manageSelected(): void;
69
70
  protected manageCheckboxes(): void;
70
71
  protected manageHeadCheckbox(allSelected: boolean): void;