@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.
- package/README.md +5 -5
- package/custom-elements.json +20 -0
- package/elements.dev.js +9 -0
- package/elements.dev.js.map +7 -0
- package/elements.js +2 -19
- package/elements.js.map +7 -1
- package/package.json +80 -18
- package/sp-table-body.dev.js +4 -0
- package/sp-table-body.dev.js.map +7 -0
- package/sp-table-body.js +2 -14
- package/sp-table-body.js.map +7 -1
- package/sp-table-cell.dev.js +4 -0
- package/sp-table-cell.dev.js.map +7 -0
- package/sp-table-cell.js +2 -14
- package/sp-table-cell.js.map +7 -1
- package/sp-table-checkbox-cell.dev.js +4 -0
- package/sp-table-checkbox-cell.dev.js.map +7 -0
- package/sp-table-checkbox-cell.js +2 -14
- package/sp-table-checkbox-cell.js.map +7 -1
- package/sp-table-head-cell.dev.js +4 -0
- package/sp-table-head-cell.dev.js.map +7 -0
- package/sp-table-head-cell.js +2 -14
- package/sp-table-head-cell.js.map +7 -1
- package/sp-table-head.dev.js +4 -0
- package/sp-table-head.dev.js.map +7 -0
- package/sp-table-head.js +2 -14
- package/sp-table-head.js.map +7 -1
- package/sp-table-row.dev.js +4 -0
- package/sp-table-row.dev.js.map +7 -0
- package/sp-table-row.js +2 -14
- package/sp-table-row.js.map +7 -1
- package/sp-table.dev.js +4 -0
- package/sp-table.dev.js.map +7 -0
- package/sp-table.js +2 -14
- package/sp-table.js.map +7 -1
- package/src/Table.d.ts +1 -0
- package/src/Table.dev.js +392 -0
- package/src/Table.dev.js.map +7 -0
- package/src/Table.js +13 -383
- package/src/Table.js.map +7 -1
- package/src/TableBody.d.ts +2 -0
- package/src/TableBody.dev.js +55 -0
- package/src/TableBody.dev.js.map +7 -0
- package/src/TableBody.js +3 -35
- package/src/TableBody.js.map +7 -1
- package/src/TableCell.dev.js +36 -0
- package/src/TableCell.dev.js.map +7 -0
- package/src/TableCell.js +3 -35
- package/src/TableCell.js.map +7 -1
- package/src/TableCheckboxCell.dev.js +71 -0
- package/src/TableCheckboxCell.dev.js.map +7 -0
- package/src/TableCheckboxCell.js +4 -62
- package/src/TableCheckboxCell.js.map +7 -1
- package/src/TableHead.dev.js +55 -0
- package/src/TableHead.dev.js.map +7 -0
- package/src/TableHead.js +3 -52
- package/src/TableHead.js.map +7 -1
- package/src/TableHeadCell.dev.js +93 -0
- package/src/TableHeadCell.dev.js.map +7 -0
- package/src/TableHeadCell.js +5 -92
- package/src/TableHeadCell.js.map +7 -1
- package/src/TableRow.dev.js +104 -0
- package/src/TableRow.dev.js.map +7 -0
- package/src/TableRow.js +3 -96
- package/src/TableRow.js.map +7 -1
- package/src/index.d.ts +6 -0
- package/src/index.dev.js +9 -0
- package/src/index.dev.js.map +7 -0
- package/src/index.js +2 -13
- package/src/index.js.map +7 -1
- package/src/spectrum-table-body.css.dev.js +17 -0
- package/src/spectrum-table-body.css.dev.js.map +7 -0
- package/src/spectrum-table-body.css.js +3 -16
- package/src/spectrum-table-body.css.js.map +7 -1
- package/src/spectrum-table-cell.css.dev.js +27 -0
- package/src/spectrum-table-cell.css.dev.js.map +7 -0
- package/src/spectrum-table-cell.css.js +3 -16
- package/src/spectrum-table-cell.css.js.map +7 -1
- package/src/spectrum-table-checkbox-cell.css.dev.js +13 -0
- package/src/spectrum-table-checkbox-cell.css.dev.js.map +7 -0
- package/src/spectrum-table-checkbox-cell.css.js +3 -16
- package/src/spectrum-table-checkbox-cell.css.js.map +7 -1
- package/src/spectrum-table-head-cell.css.dev.js +61 -0
- package/src/spectrum-table-head-cell.css.dev.js.map +7 -0
- package/src/spectrum-table-head-cell.css.js +3 -16
- package/src/spectrum-table-head-cell.css.js.map +7 -1
- package/src/spectrum-table-head.css.dev.js +7 -0
- package/src/spectrum-table-head.css.dev.js.map +7 -0
- package/src/spectrum-table-head.css.js +3 -16
- package/src/spectrum-table-head.css.js.map +7 -1
- package/src/spectrum-table-row.css.dev.js +33 -0
- package/src/spectrum-table-row.css.dev.js.map +7 -0
- package/src/spectrum-table-row.css.js +3 -16
- package/src/spectrum-table-row.css.js.map +7 -1
- package/src/spectrum-table.css.dev.js +513 -0
- package/src/spectrum-table.css.dev.js.map +7 -0
- package/src/spectrum-table.css.js +3 -16
- package/src/spectrum-table.css.js.map +7 -1
- package/src/table-body.css.dev.js +17 -0
- package/src/table-body.css.dev.js.map +7 -0
- package/src/table-body.css.js +4 -17
- package/src/table-body.css.js.map +7 -1
- package/src/table-cell.css.dev.js +27 -0
- package/src/table-cell.css.dev.js.map +7 -0
- package/src/table-cell.css.js +3 -16
- package/src/table-cell.css.js.map +7 -1
- package/src/table-checkbox-cell.css.dev.js +13 -0
- package/src/table-checkbox-cell.css.dev.js.map +7 -0
- package/src/table-checkbox-cell.css.js +3 -16
- package/src/table-checkbox-cell.css.js.map +7 -1
- package/src/table-head-cell.css.dev.js +61 -0
- package/src/table-head-cell.css.dev.js.map +7 -0
- package/src/table-head-cell.css.js +3 -16
- package/src/table-head-cell.css.js.map +7 -1
- package/src/table-head.css.dev.js +7 -0
- package/src/table-head.css.dev.js.map +7 -0
- package/src/table-head.css.js +3 -16
- package/src/table-head.css.js.map +7 -1
- package/src/table-row.css.dev.js +33 -0
- package/src/table-row.css.dev.js.map +7 -0
- package/src/table-row.css.js +3 -16
- package/src/table-row.css.js.map +7 -1
- package/src/table.css.dev.js +513 -0
- package/src/table.css.dev.js.map +7 -0
- package/src/table.css.js +4 -17
- package/src/table.css.js.map +7 -1
- package/stories/index.js +17 -27
- package/stories/index.js.map +7 -1
- package/stories/table-elements.stories.js +58 -102
- package/stories/table-elements.stories.js.map +7 -1
- package/stories/table-virtualized.stories.js +142 -128
- package/stories/table-virtualized.stories.js.map +7 -1
- package/test/benchmark/basic-test.js +7 -17
- package/test/benchmark/basic-test.js.map +7 -1
- package/test/table-elements.test-vrt.js +5 -15
- package/test/table-elements.test-vrt.js.map +7 -1
- package/test/table-selects.test.js +193 -170
- package/test/table-selects.test.js.map +7 -1
- package/test/table-virtualized.test-vrt.js +5 -15
- package/test/table-virtualized.test-vrt.js.map +7 -1
- package/test/table.test.js +117 -101
- package/test/table.test.js.map +7 -1
- package/test/virtualized-table-selects.test.js +386 -300
- package/test/virtualized-table-selects.test.js.map +7 -1
- package/test/virtualized-table.test.js +213 -182
- 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
|
|
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"
|
|
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"
|
|
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
|
-
|
|
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
|
|
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
|
package/custom-elements.json
CHANGED
|
@@ -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",
|
package/elements.dev.js
ADDED
|
@@ -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
|
-
|
|
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
|
-
{
|
|
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
|
|
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
|
-
".":
|
|
24
|
-
|
|
23
|
+
".": {
|
|
24
|
+
"development": "./src/index.dev.js",
|
|
25
|
+
"default": "./src/index.js"
|
|
26
|
+
},
|
|
25
27
|
"./package.json": "./package.json",
|
|
26
|
-
"./
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
"./
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
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.
|
|
55
|
-
"@spectrum-web-components/checkbox": "^0.
|
|
56
|
-
"@spectrum-web-components/icon": "^0.
|
|
57
|
-
"@spectrum-web-components/icons-ui": "^0.
|
|
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.
|
|
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": "
|
|
131
|
+
"gitHead": "60b2d3b7d9020d72f9ae930568670321a1918e6f"
|
|
70
132
|
}
|
|
@@ -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
|
-
|
|
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
|
package/sp-table-body.js.map
CHANGED
|
@@ -1 +1,7 @@
|
|
|
1
|
-
{
|
|
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,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
|
-
|
|
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
|
package/sp-table-cell.js.map
CHANGED
|
@@ -1 +1,7 @@
|
|
|
1
|
-
{
|
|
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,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
|
-
|
|
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
|
-
{
|
|
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,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
|
+
}
|
package/sp-table-head-cell.js
CHANGED
|
@@ -1,14 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
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
|
-
{
|
|
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,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
|
-
|
|
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
|
package/sp-table-head.js.map
CHANGED
|
@@ -1 +1,7 @@
|
|
|
1
|
-
{
|
|
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,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
|
-
|
|
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
|
package/sp-table-row.js.map
CHANGED
|
@@ -1 +1,7 @@
|
|
|
1
|
-
{
|
|
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
|
+
}
|
package/sp-table.dev.js
ADDED
|
@@ -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
|
-
|
|
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
|
-
{
|
|
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;
|