proto-table-wc 0.0.390 → 0.0.392
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/cjs/demo-table_2.cjs.entry.js +1 -1
- package/dist/cjs/{index-5835d72c.js → index-52ab0f4a.js} +2 -0
- package/dist/cjs/loader.cjs.js +2 -2
- package/dist/cjs/proto-table-wc.cjs.js +5 -2
- package/dist/collection/collection-manifest.json +1 -1
- package/dist/esm/demo-table_2.entry.js +1 -1
- package/dist/esm/{index-d9d0bd91.js → index-f60c9fab.js} +2 -0
- package/dist/esm/loader.js +3 -3
- package/dist/esm/proto-table-wc.js +6 -3
- package/dist/proto-table-wc/{p-3098485f.js → p-6cf8a72f.js} +0 -0
- package/dist/proto-table-wc/{p-5f2a5c41.entry.js → p-8b0ca37d.entry.js} +1 -1
- package/dist/proto-table-wc/proto-table-wc.esm.js +1 -1
- package/dist/types/stencil-public-runtime.d.ts +12 -12
- package/package.json +2 -2
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
4
4
|
|
5
|
-
const index = require('./index-
|
5
|
+
const index = require('./index-52ab0f4a.js');
|
6
6
|
|
7
7
|
const demoTableCss = ".detailWrapper{font-weight:100;font-size:13px;display:flex;flex-direction:column;justify-items:start;padding:5px;padding-left:30px}";
|
8
8
|
|
@@ -246,6 +246,7 @@ const addStyle = (styleContainerNode, cmpMeta, mode, hostElm) => {
|
|
246
246
|
}
|
247
247
|
if (!appliedStyles.has(scopeId)) {
|
248
248
|
{
|
249
|
+
// TODO(STENCIL-659): Remove code implementing the CSS variable shim
|
249
250
|
{
|
250
251
|
styleElm = doc.createElement('style');
|
251
252
|
styleElm.innerHTML = style;
|
@@ -274,6 +275,7 @@ const attachStyles = (hostRef) => {
|
|
274
275
|
const flags = cmpMeta.$flags$;
|
275
276
|
const endAttachStyles = createTime('attachStyles', cmpMeta.$tagName$);
|
276
277
|
const scopeId = addStyle(elm.shadowRoot ? elm.shadowRoot : elm.getRootNode(), cmpMeta);
|
278
|
+
// TODO(STENCIL-662): Remove code related to deprecated shadowDomShim field
|
277
279
|
if (flags & 10 /* CMP_FLAGS.needsScopedEncapsulation */) {
|
278
280
|
// only required when we're NOT using native shadow dom (slot)
|
279
281
|
// or this browser doesn't support native shadow dom
|
package/dist/cjs/loader.cjs.js
CHANGED
@@ -2,10 +2,10 @@
|
|
2
2
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
4
4
|
|
5
|
-
const index = require('./index-
|
5
|
+
const index = require('./index-52ab0f4a.js');
|
6
6
|
|
7
7
|
/*
|
8
|
-
Stencil Client Patch Esm
|
8
|
+
Stencil Client Patch Esm v3.0.0 | MIT Licensed | https://stenciljs.com
|
9
9
|
*/
|
10
10
|
const patchEsm = () => {
|
11
11
|
return index.promiseResolve();
|
@@ -2,16 +2,19 @@
|
|
2
2
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
4
4
|
|
5
|
-
const index = require('./index-
|
5
|
+
const index = require('./index-52ab0f4a.js');
|
6
6
|
|
7
7
|
/*
|
8
|
-
Stencil Client Patch Browser
|
8
|
+
Stencil Client Patch Browser v3.0.0 | MIT Licensed | https://stenciljs.com
|
9
9
|
*/
|
10
10
|
const patchBrowser = () => {
|
11
11
|
const importMeta = (typeof document === 'undefined' ? new (require('u' + 'rl').URL)('file:' + __filename).href : (document.currentScript && document.currentScript.src || new URL('proto-table-wc.cjs.js', document.baseURI).href));
|
12
12
|
const opts = {};
|
13
|
+
// TODO(STENCIL-663): Remove code related to deprecated `safari10` field.
|
13
14
|
if (importMeta !== '') {
|
14
15
|
opts.resourcesUrl = new URL('.', importMeta).href;
|
16
|
+
// TODO(STENCIL-661): Remove code related to the dynamic import shim
|
17
|
+
// TODO(STENCIL-663): Remove code related to deprecated `safari10` field.
|
15
18
|
}
|
16
19
|
return index.promiseResolve(opts);
|
17
20
|
};
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { r as registerInstance, h } from './index-
|
1
|
+
import { r as registerInstance, h } from './index-f60c9fab.js';
|
2
2
|
|
3
3
|
const demoTableCss = ".detailWrapper{font-weight:100;font-size:13px;display:flex;flex-direction:column;justify-items:start;padding:5px;padding-left:30px}";
|
4
4
|
|
@@ -224,6 +224,7 @@ const addStyle = (styleContainerNode, cmpMeta, mode, hostElm) => {
|
|
224
224
|
}
|
225
225
|
if (!appliedStyles.has(scopeId)) {
|
226
226
|
{
|
227
|
+
// TODO(STENCIL-659): Remove code implementing the CSS variable shim
|
227
228
|
{
|
228
229
|
styleElm = doc.createElement('style');
|
229
230
|
styleElm.innerHTML = style;
|
@@ -252,6 +253,7 @@ const attachStyles = (hostRef) => {
|
|
252
253
|
const flags = cmpMeta.$flags$;
|
253
254
|
const endAttachStyles = createTime('attachStyles', cmpMeta.$tagName$);
|
254
255
|
const scopeId = addStyle(elm.shadowRoot ? elm.shadowRoot : elm.getRootNode(), cmpMeta);
|
256
|
+
// TODO(STENCIL-662): Remove code related to deprecated shadowDomShim field
|
255
257
|
if (flags & 10 /* CMP_FLAGS.needsScopedEncapsulation */) {
|
256
258
|
// only required when we're NOT using native shadow dom (slot)
|
257
259
|
// or this browser doesn't support native shadow dom
|
package/dist/esm/loader.js
CHANGED
@@ -1,8 +1,8 @@
|
|
1
|
-
import { p as promiseResolve, b as bootstrapLazy } from './index-
|
2
|
-
export { s as setNonce } from './index-
|
1
|
+
import { p as promiseResolve, b as bootstrapLazy } from './index-f60c9fab.js';
|
2
|
+
export { s as setNonce } from './index-f60c9fab.js';
|
3
3
|
|
4
4
|
/*
|
5
|
-
Stencil Client Patch Esm
|
5
|
+
Stencil Client Patch Esm v3.0.0 | MIT Licensed | https://stenciljs.com
|
6
6
|
*/
|
7
7
|
const patchEsm = () => {
|
8
8
|
return promiseResolve();
|
@@ -1,14 +1,17 @@
|
|
1
|
-
import { p as promiseResolve, b as bootstrapLazy } from './index-
|
2
|
-
export { s as setNonce } from './index-
|
1
|
+
import { p as promiseResolve, b as bootstrapLazy } from './index-f60c9fab.js';
|
2
|
+
export { s as setNonce } from './index-f60c9fab.js';
|
3
3
|
|
4
4
|
/*
|
5
|
-
Stencil Client Patch Browser
|
5
|
+
Stencil Client Patch Browser v3.0.0 | MIT Licensed | https://stenciljs.com
|
6
6
|
*/
|
7
7
|
const patchBrowser = () => {
|
8
8
|
const importMeta = import.meta.url;
|
9
9
|
const opts = {};
|
10
|
+
// TODO(STENCIL-663): Remove code related to deprecated `safari10` field.
|
10
11
|
if (importMeta !== '') {
|
11
12
|
opts.resourcesUrl = new URL('.', importMeta).href;
|
13
|
+
// TODO(STENCIL-661): Remove code related to the dynamic import shim
|
14
|
+
// TODO(STENCIL-663): Remove code related to deprecated `safari10` field.
|
12
15
|
}
|
13
16
|
return promiseResolve(opts);
|
14
17
|
};
|
File without changes
|
@@ -1 +1 @@
|
|
1
|
-
import{r as t,h as e}from"./p-
|
1
|
+
import{r as t,h as e}from"./p-6cf8a72f.js";const r=class{constructor(r){t(this,r),this.fields=[{label:"Date",prop:"date"},{label:"List Price",prop:"price"},{label:"% of Market",prop:"market"},{label:"ProfitTime Score",prop:"score"}],this.items=[],this.table=void 0,this.renderDetails=t=>{const{tags:r=[]}=t;return e("div",{class:"detailWrapper"},e("span",null,r.length," details..."),e("ul",null,r.map((t=>e("li",null,t)))))}}componentWillLoad(){this.items=[{date:"08/30/2020",price:"$24,000",market:"98%",score:"No Score",tags:["one","two","three"]},{date:"08/31/2020",price:"$24,000",market:"99%",score:"No Score",tags:["uno","duo"]},{date:"09/01/2020",price:"$27,000",market:"102%",score:"Platinum"},{date:"09/02/2020",price:"$27,423",market:"104%",score:"Platinum",tags:["dog","cat","fish","hamster"]},{date:"09/03/2020",price:"$27,521",market:"106%",score:"Platinum",tags:["4wd","sports"]},{date:"09/04/2020",price:"$27,687",market:"107%",score:"Platinum",tags:["leather","chrome"]}]}componentDidLoad(){const{table:t,items:e,fields:r}=this;t.data=e,t.fields=r,t.details=this.renderDetails}render(){return e("proto-table",{ref:t=>this.table=t})}};r.style=".detailWrapper{font-weight:100;font-size:13px;display:flex;flex-direction:column;justify-items:start;padding:5px;padding-left:30px}";const s={down:"M12 15.4L6.6 10 8 8.6l4 4 4-4 1.4 1.4z",up:"M16 15.4l-4-4-4 4L6.6 14 12 8.6l5.4 5.4z",left:"M14 17.4L8.6 12 14 6.6 15.4 8l-4 4 4 4z",right:"M10 17.4L8.6 16l4-4-4-4L10 6.6l5.4 5.4z",more:"M12 14a2 2 0 100-4 2 2 0 000 4zm-6 0a2 2 0 100-4 2 2 0 000 4zm12 0a2 2 0 100-4 2 2 0 000 4z","arrow-up":"M5.3 10.7l1.4 1.4L11 7.8V20h2V7.8l4.3 4.3 1.4-1.4L12 4z","arrow-down":"M18.7 13.3l-1.4-1.4-4.3 4.3V4h-2v12.2l-4.3-4.3-1.4 1.4L12 20z"},i={right:"show",down:"hide","arrow-up":"sort","arrow-down":"sort"},l=class{constructor(r){t(this,r),this.protoIcon=(t,r,l=24)=>{const o=s[t];return e("svg",{width:l,height:l,viewBox:"0 0 24 24",role:"img","aria-labelledby":"title"},e("title",null,(t=>i[t])(t)),e("g",{fill:r},e("path",{d:o})),e("path",{d:"M0 0h24v24H0z",fill:"none"}))},this.handleCellClick=(t,e)=>()=>{0===t&&(this.expanded=this.expanded===e?void 0:e)},this.handleSortClick=t=>()=>{this.sort===t?2===this.clicks?(this.clicks=0,this.sort=void 0):this.clicks=this.clicks+1:(this.sort=t,this.clicks=1)},this.iconFor=t=>this.sort===t&&2===this.clicks?"arrow-up":"arrow-down",this.header=()=>{const{fields:t,iconFor:r,protoIcon:s}=this;return e("div",{class:"header"},t.map((({label:t},i)=>{const l=i===this.sort?"headerCell sort":"headerCell",o=r(i);return e("div",{class:l,onClick:this.handleSortClick(i)},s(o),e("span",null,t))})))},this.row=(t,r)=>{const{fields:s,protoIcon:i}=this;return e("div",{class:"rowContainer"},e("div",{class:this.expanded===r?"row expanded":"row"},s.map((({prop:s},l)=>e("div",{class:l===this.sort?"cell sort":"cell",onClick:this.handleCellClick(l,r)},i(0===l&&this.details?this.expanded===r?"down":"right":"pad"),t[s])))),this.details&&this.expanded===r&&this.details(t))},this.data=[],this.details=void 0,this.fields=[],this.expanded=void 0,this.sort=void 0,this.clicks=0}render(){const t=this.data||[];return e("div",{class:"table"},this.header(),t.map(((t,e)=>this.row(t,e))))}};l.style=".table{font-weight:400;font-size:13px;display:flex;flex-direction:column;width:100%;border:1px solid var(--clrs-navy);border-radius:2px}.table svg{fill:var(--clrs-navy)}.header{display:flex}.headerCell{flex-basis:100%;display:flex;align-items:center;justify-items:start;border-right:1px solid var(--clrs-navy);border-bottom:1px solid var(--clrs-navy);padding:5px;cursor:pointer}.headerCell svg g{display:none}.headerCell.sort svg g{display:inline}.headerCell:hover svg g{display:inline}.headerCell:hover{background-color:var(--clrs-silver)}.headerCell:last-child{border-right:none}.cell{flex-basis:100%;display:flex;align-items:center;justify-items:start;padding:5px}.cell:first-child svg{cursor:pointer}.sort{background-color:var(--cx-column-sort)}.row{display:flex;justify-items:stretch;width:100%}.row.expanded{background-color:var(--cx-row-expanded)}.row.expanded svg{fill:var(--clrs-red)}.row:hover{background-color:var(--cx-row-hover)}";export{r as demo_table,l as proto_table}
|
@@ -1 +1 @@
|
|
1
|
-
import{p as
|
1
|
+
import{p as a,b as e}from"./p-6cf8a72f.js";export{s as setNonce}from"./p-6cf8a72f.js";(()=>{const e=import.meta.url,s={};return""!==e&&(s.resourcesUrl=new URL(".",e).href),a(s)})().then((a=>e([["p-8b0ca37d",[[1,"demo-table"],[0,"proto-table",{data:[16],details:[8],fields:[16],expanded:[32],sort:[32],clicks:[32]}]]]],a)));
|
@@ -892,8 +892,8 @@ export declare namespace JSXBase {
|
|
892
892
|
accept?: string;
|
893
893
|
allowdirs?: boolean;
|
894
894
|
alt?: string;
|
895
|
-
autoCapitalize?:
|
896
|
-
autocapitalize?:
|
895
|
+
autoCapitalize?: string;
|
896
|
+
autocapitalize?: string;
|
897
897
|
autoComplete?: string;
|
898
898
|
autocomplete?: string;
|
899
899
|
autoFocus?: boolean;
|
@@ -1217,8 +1217,8 @@ export declare namespace JSXBase {
|
|
1217
1217
|
resource?: string;
|
1218
1218
|
typeof?: string;
|
1219
1219
|
vocab?: string;
|
1220
|
-
autoCapitalize?:
|
1221
|
-
autocapitalize?:
|
1220
|
+
autoCapitalize?: string;
|
1221
|
+
autocapitalize?: string;
|
1222
1222
|
autoCorrect?: string;
|
1223
1223
|
autocorrect?: string;
|
1224
1224
|
autoSave?: string;
|
@@ -1509,12 +1509,12 @@ export declare namespace JSXBase {
|
|
1509
1509
|
onCutCapture?: (event: ClipboardEvent) => void;
|
1510
1510
|
onPaste?: (event: ClipboardEvent) => void;
|
1511
1511
|
onPasteCapture?: (event: ClipboardEvent) => void;
|
1512
|
-
|
1513
|
-
|
1514
|
-
|
1515
|
-
|
1516
|
-
|
1517
|
-
|
1512
|
+
onCompositionend?: (event: CompositionEvent) => void;
|
1513
|
+
onCompositionendCapture?: (event: CompositionEvent) => void;
|
1514
|
+
onCompositionstart?: (event: CompositionEvent) => void;
|
1515
|
+
onCompositionstartCapture?: (event: CompositionEvent) => void;
|
1516
|
+
onCompositionupdate?: (event: CompositionEvent) => void;
|
1517
|
+
onCompositionupdateCapture?: (event: CompositionEvent) => void;
|
1518
1518
|
onFocus?: (event: FocusEvent) => void;
|
1519
1519
|
onFocusCapture?: (event: FocusEvent) => void;
|
1520
1520
|
onFocusin?: (event: FocusEvent) => void;
|
@@ -1525,8 +1525,8 @@ export declare namespace JSXBase {
|
|
1525
1525
|
onBlurCapture?: (event: FocusEvent) => void;
|
1526
1526
|
onChange?: (event: Event) => void;
|
1527
1527
|
onChangeCapture?: (event: Event) => void;
|
1528
|
-
onInput?: (event:
|
1529
|
-
onInputCapture?: (event:
|
1528
|
+
onInput?: (event: InputEvent) => void;
|
1529
|
+
onInputCapture?: (event: InputEvent) => void;
|
1530
1530
|
onReset?: (event: Event) => void;
|
1531
1531
|
onResetCapture?: (event: Event) => void;
|
1532
1532
|
onSubmit?: (event: Event) => void;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "proto-table-wc",
|
3
|
-
"version": "0.0.
|
3
|
+
"version": "0.0.392",
|
4
4
|
"description": "Stencil Component Starter",
|
5
5
|
"main": "dist/index.cjs.js",
|
6
6
|
"module": "dist/index.js",
|
@@ -25,7 +25,7 @@
|
|
25
25
|
"format": "prettier --write src"
|
26
26
|
},
|
27
27
|
"dependencies": {
|
28
|
-
"@stencil/core": "
|
28
|
+
"@stencil/core": "3.0.0"
|
29
29
|
},
|
30
30
|
"devDependencies": {
|
31
31
|
"cspell": "6.19.2",
|