proto-table-wc 0.0.477 → 0.0.478

Sign up to get free protection for your applications and to get access to all the features.
@@ -5,6 +5,7 @@ Object.defineProperty(exports, '__esModule', { value: true });
5
5
  const index = require('./index-7fae5439.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
+ const DemoTableStyle0 = demoTableCss;
8
9
 
9
10
  const DemoTable = class {
10
11
  constructor(hostRef) {
@@ -77,7 +78,7 @@ const DemoTable = class {
77
78
  return index.h("proto-table", { ref: el => (this.table = el) });
78
79
  }
79
80
  };
80
- DemoTable.style = demoTableCss;
81
+ DemoTable.style = DemoTableStyle0;
81
82
 
82
83
  const iconPaths = {
83
84
  'down': 'M12 15.4L6.6 10 8 8.6l4 4 4-4 1.4 1.4z',
@@ -90,6 +91,7 @@ const iconPaths = {
90
91
  };
91
92
 
92
93
  const protoTableCss = ".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)}";
94
+ const ProtoTableStyle0 = protoTableCss;
93
95
 
94
96
  const iconAliases = {
95
97
  'right': 'show',
@@ -163,7 +165,7 @@ const ProtoTable = class {
163
165
  return (index.h("div", { class: "table" }, this.header(), items.map((item, index) => this.row(item, index))));
164
166
  }
165
167
  };
166
- ProtoTable.style = protoTableCss;
168
+ ProtoTable.style = ProtoTableStyle0;
167
169
 
168
170
  exports.demo_table = DemoTable;
169
171
  exports.proto_table = ProtoTable;
@@ -5,7 +5,7 @@ Object.defineProperty(exports, '__esModule', { value: true });
5
5
  const index = require('./index-7fae5439.js');
6
6
 
7
7
  /*
8
- Stencil Client Patch Browser v4.10.0 | MIT Licensed | https://stenciljs.com
8
+ Stencil Client Patch Browser v4.11.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));
@@ -5,7 +5,7 @@
5
5
  ],
6
6
  "compiler": {
7
7
  "name": "@stencil/core",
8
- "version": "4.10.0",
8
+ "version": "4.11.0",
9
9
  "typescriptVersion": "5.3.3"
10
10
  },
11
11
  "collections": [],
@@ -1,6 +1,7 @@
1
1
  import { r as registerInstance, h } from './index-d7dbc3b8.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
+ const DemoTableStyle0 = demoTableCss;
4
5
 
5
6
  const DemoTable = class {
6
7
  constructor(hostRef) {
@@ -73,7 +74,7 @@ const DemoTable = class {
73
74
  return h("proto-table", { ref: el => (this.table = el) });
74
75
  }
75
76
  };
76
- DemoTable.style = demoTableCss;
77
+ DemoTable.style = DemoTableStyle0;
77
78
 
78
79
  const iconPaths = {
79
80
  'down': 'M12 15.4L6.6 10 8 8.6l4 4 4-4 1.4 1.4z',
@@ -86,6 +87,7 @@ const iconPaths = {
86
87
  };
87
88
 
88
89
  const protoTableCss = ".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)}";
90
+ const ProtoTableStyle0 = protoTableCss;
89
91
 
90
92
  const iconAliases = {
91
93
  'right': 'show',
@@ -159,6 +161,6 @@ const ProtoTable = class {
159
161
  return (h("div", { class: "table" }, this.header(), items.map((item, index) => this.row(item, index))));
160
162
  }
161
163
  };
162
- ProtoTable.style = protoTableCss;
164
+ ProtoTable.style = ProtoTableStyle0;
163
165
 
164
166
  export { DemoTable as demo_table, ProtoTable as proto_table };
@@ -2,7 +2,7 @@ import { p as promiseResolve, b as bootstrapLazy } from './index-d7dbc3b8.js';
2
2
  export { s as setNonce } from './index-d7dbc3b8.js';
3
3
 
4
4
  /*
5
- Stencil Client Patch Browser v4.10.0 | MIT Licensed | https://stenciljs.com
5
+ Stencil Client Patch Browser v4.11.0 | MIT Licensed | https://stenciljs.com
6
6
  */
7
7
  const patchBrowser = () => {
8
8
  const importMeta = import.meta.url;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "proto-table-wc",
3
- "version": "0.0.477",
3
+ "version": "0.0.478",
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": "4.10.0"
28
+ "@stencil/core": "4.11.0"
29
29
  },
30
30
  "devDependencies": {
31
31
  "cspell": "8.3.2",