@design.estate/dees-catalog 1.0.203 → 1.0.206
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/dist_bundle/bundle.js +16 -10
- package/dist_bundle/bundle.js.map +2 -2
- package/dist_ts_web/00_commitinfo_data.js +1 -1
- package/dist_ts_web/elements/dees-table.js +16 -10
- package/dist_watch/bundle.js +15 -9
- package/dist_watch/bundle.js.map +2 -2
- package/package.json +1 -1
- package/ts_web/00_commitinfo_data.ts +1 -1
- package/ts_web/elements/dees-table.ts +15 -9
package/dist_bundle/bundle.js
CHANGED
|
@@ -2555,8 +2555,8 @@ svg:not(:root).svg-inline--fa, svg:not(:host).svg-inline--fa {
|
|
|
2555
2555
|
${this.data.map(n=>{let i=this.displayFunction(n),c=o=>o.tagName==="TR"?o:c(o.parentElement);return L`
|
|
2556
2556
|
<tr
|
|
2557
2557
|
@click=${()=>{this.selectedDataRow=n}}
|
|
2558
|
-
@dragenter=${async o=>{o.preventDefault(),o.stopPropagation();let s=c(o.target);console.log("dragenter"),console.log(s),setTimeout(()=>{s.
|
|
2559
|
-
@dragleave=${async o=>{o.preventDefault(),o.stopPropagation()
|
|
2558
|
+
@dragenter=${async o=>{o.preventDefault(),o.stopPropagation();let s=c(o.target);console.log("dragenter"),console.log(s),setTimeout(()=>{s.classList.add("hasAttachment")},0)}}
|
|
2559
|
+
@dragleave=${async o=>{o.preventDefault(),o.stopPropagation(),c(o.target).classList.remove("hasAttachment")}}
|
|
2560
2560
|
@dragover=${async o=>{o.preventDefault()}}
|
|
2561
2561
|
@drop=${async o=>{o.preventDefault();let s=[];for(let f of Array.from(o.dataTransfer.files))this.files.push(f),s.push(f),this.requestUpdate();let l=this.fileWeakMap.get(n);l?l.push(...s):this.fileWeakMap.set(n,s)}}
|
|
2562
2562
|
@contextmenu=${async o=>{p2.openContextMenuWithOptions(o,this.getActionsForType("contextmenu").map(s=>({name:s.name,iconName:s.iconName,action:async()=>(await s.actionFunc(n),null)})))}}
|
|
@@ -2685,7 +2685,7 @@ svg:not(:root).svg-inline--fa, svg:not(:host).svg-inline--fa {
|
|
|
2685
2685
|
cursor: pointer;
|
|
2686
2686
|
}
|
|
2687
2687
|
tr:hover td {
|
|
2688
|
-
background: ${w.bdTheme("#22222210","#
|
|
2688
|
+
background: ${w.bdTheme("#22222210","#ffffff10")};
|
|
2689
2689
|
}
|
|
2690
2690
|
tr:first-child:hover {
|
|
2691
2691
|
cursor: auto;
|
|
@@ -2694,8 +2694,13 @@ svg:not(:root).svg-inline--fa, svg:not(:host).svg-inline--fa {
|
|
|
2694
2694
|
background: none;
|
|
2695
2695
|
}
|
|
2696
2696
|
tr.selected td {
|
|
2697
|
-
background: ${w.bdTheme("#22222220","#
|
|
2697
|
+
background: ${w.bdTheme("#22222220","#ffffff20")};
|
|
2698
2698
|
}
|
|
2699
|
+
|
|
2700
|
+
tr.hasAttachment td {
|
|
2701
|
+
background: ${w.bdTheme("#0098847c","#0098847c")};
|
|
2702
|
+
}
|
|
2703
|
+
|
|
2699
2704
|
th {
|
|
2700
2705
|
text-transform: uppercase;
|
|
2701
2706
|
}
|
|
@@ -2735,7 +2740,7 @@ svg:not(:root).svg-inline--fa, svg:not(:host).svg-inline--fa {
|
|
|
2735
2740
|
right: 0px;
|
|
2736
2741
|
left: 0px;
|
|
2737
2742
|
position: absolute;
|
|
2738
|
-
background: #
|
|
2743
|
+
background: #fa610140;
|
|
2739
2744
|
color: inherit;
|
|
2740
2745
|
font-family: inherit;
|
|
2741
2746
|
font-size: inherit;
|
|
@@ -2744,9 +2749,10 @@ svg:not(:root).svg-inline--fa, svg:not(:host).svg-inline--fa {
|
|
|
2744
2749
|
}
|
|
2745
2750
|
|
|
2746
2751
|
.action {
|
|
2747
|
-
margin: -
|
|
2748
|
-
padding:
|
|
2749
|
-
line-height:
|
|
2752
|
+
margin: -6px 0px;
|
|
2753
|
+
padding: 10px;
|
|
2754
|
+
line-height: 36px;
|
|
2755
|
+
height: 36px;
|
|
2750
2756
|
display: inline-block;
|
|
2751
2757
|
}
|
|
2752
2758
|
|
|
@@ -2756,7 +2762,7 @@ svg:not(:root).svg-inline--fa, svg:not(:host).svg-inline--fa {
|
|
|
2756
2762
|
}
|
|
2757
2763
|
|
|
2758
2764
|
.action:hover {
|
|
2759
|
-
background: ${w.bdTheme("#CCC","#
|
|
2765
|
+
background: ${w.bdTheme("#CCC","#00000030")};
|
|
2760
2766
|
}
|
|
2761
2767
|
|
|
2762
2768
|
.footer {
|
|
@@ -2838,7 +2844,7 @@ svg:not(:root).svg-inline--fa, svg:not(:host).svg-inline--fa {
|
|
|
2838
2844
|
display: grid;
|
|
2839
2845
|
grid-template-columns: 50% 50%;
|
|
2840
2846
|
}
|
|
2841
|
-
`],A([V({type:String})],Ye.prototype,"currentVersion",2),A([V({type:String})],Ye.prototype,"updatedVersion",2),Ye=A([r1("dees-updater")],Ye);var pz={name:"@design.estate/dees-catalog",version:"1.0.
|
|
2847
|
+
`],A([V({type:String})],Ye.prototype,"currentVersion",2),A([V({type:String})],Ye.prototype,"updatedVersion",2),Ye=A([r1("dees-updater")],Ye);var pz={name:"@design.estate/dees-catalog",version:"1.0.205",description:"website for lossless.com"};export{M2 as DeesButton,v4 as DeesButtonExit,ee as DeesChips,p2 as DeesContextmenu,Ve as DeesDataviewCodebox,b3 as DeesDataviewStatusobject,vt as DeesForm,F2 as DeesFormSubmit,Ue as DeesIcon,N2 as DeesInputCheckbox,R2 as DeesInputDropdown,g2 as DeesInputFileupload,y2 as DeesInputQuantitySelector,x2 as DeesInputRadio,l2 as DeesInputText,U2 as DeesMobilenavigation,h2 as DeesModal,f2 as DeesPdf,y3 as DeesSimpleAppDash,x3 as DeesSimpleLogin,ae as DeesSpeechbubble,Ce as DeesSpinner,Ge as DeesStepper,d2 as DeesTable,Ka as DeesToast,Ye as DeesUpdater,i2 as DeesWindowLayer,pz as commitinfo,uz as faIcons};
|
|
2842
2848
|
/*! Bundled license information:
|
|
2843
2849
|
|
|
2844
2850
|
ieee754/index.js:
|