@design.estate/dees-catalog 1.0.210 → 1.0.212
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 +220 -187
- package/dist_bundle/bundle.js.map +4 -4
- package/dist_ts_web/00_commitinfo_data.js +1 -1
- package/dist_ts_web/elements/dees-dataview-codebox.js +27 -14
- package/dist_ts_web/elements/dees-icon.d.ts +6 -20
- package/dist_ts_web/elements/dees-icon.demo.d.ts +1 -0
- package/dist_ts_web/elements/dees-icon.demo.js +52 -0
- package/dist_ts_web/elements/dees-icon.js +11 -41
- package/dist_watch/bundle.js +113 -59
- package/dist_watch/bundle.js.map +4 -4
- package/package.json +1 -1
- package/ts_web/00_commitinfo_data.ts +1 -1
- package/ts_web/elements/dees-dataview-codebox.ts +27 -13
- package/ts_web/elements/dees-icon.demo.ts +55 -0
- package/ts_web/elements/dees-icon.ts +12 -38
package/dist_watch/bundle.js
CHANGED
|
@@ -68764,11 +68764,11 @@ var DeesDataviewCodebox = class extends DeesElement {
|
|
|
68764
68764
|
}
|
|
68765
68765
|
|
|
68766
68766
|
.appbar {
|
|
68767
|
+
color: ${cssManager.bdTheme("#333", "#ccc")};
|
|
68768
|
+
background: ${cssManager.bdTheme("#ffffff", "#161616")};
|
|
68769
|
+
border-bottom: 1px solid ${cssManager.bdTheme("#eeeeeb", "#222222")};
|
|
68767
68770
|
height: 24px;
|
|
68768
|
-
background: #161616;
|
|
68769
|
-
border-bottom: 1px solid #222222;
|
|
68770
68771
|
font-size: 12px;
|
|
68771
|
-
color: #CCC;
|
|
68772
68772
|
font-family: 'Hubot Sans', 'monospace';
|
|
68773
68773
|
line-height: 24px;
|
|
68774
68774
|
}
|
|
@@ -68794,15 +68794,15 @@ var DeesDataviewCodebox = class extends DeesElement {
|
|
|
68794
68794
|
}
|
|
68795
68795
|
|
|
68796
68796
|
.appbar .macControls div.close {
|
|
68797
|
-
background: #
|
|
68797
|
+
background: #ff5f57;
|
|
68798
68798
|
}
|
|
68799
68799
|
|
|
68800
68800
|
.appbar .macControls div.toDock {
|
|
68801
|
-
background: #
|
|
68801
|
+
background: #ffbd2e;
|
|
68802
68802
|
}
|
|
68803
68803
|
|
|
68804
68804
|
.appbar .macControls div.minMax {
|
|
68805
|
-
background: #
|
|
68805
|
+
background: #27c93f;
|
|
68806
68806
|
}
|
|
68807
68807
|
|
|
68808
68808
|
.appbar .macControls div:hover {
|
|
@@ -68814,11 +68814,11 @@ var DeesDataviewCodebox = class extends DeesElement {
|
|
|
68814
68814
|
}
|
|
68815
68815
|
|
|
68816
68816
|
.bottomBar {
|
|
68817
|
+
color: ${cssManager.bdTheme("#333", "#ccc")};
|
|
68818
|
+
background: ${cssManager.bdTheme("#ffffff", "#161616")};
|
|
68819
|
+
border-top: 1px solid ${cssManager.bdTheme("#eeeeeb", "#222222")};
|
|
68817
68820
|
height: 24px;
|
|
68818
|
-
background: #161616;
|
|
68819
|
-
border-top: 1px solid #222222;
|
|
68820
68821
|
font-size: 12px;
|
|
68821
|
-
color: #888;
|
|
68822
68822
|
font-family: 'Hubot Sans', 'monospace';
|
|
68823
68823
|
line-height: 24px;
|
|
68824
68824
|
text-align: right;
|
|
@@ -68826,7 +68826,7 @@ var DeesDataviewCodebox = class extends DeesElement {
|
|
|
68826
68826
|
}
|
|
68827
68827
|
|
|
68828
68828
|
.languageLabel {
|
|
68829
|
-
color: #ccc;
|
|
68829
|
+
color: ${cssManager.bdTheme("#333", "#ccc")};
|
|
68830
68830
|
font-size: 12px;
|
|
68831
68831
|
line-height: 24px;
|
|
68832
68832
|
z-index: 10;
|
|
@@ -68849,7 +68849,6 @@ var DeesDataviewCodebox = class extends DeesElement {
|
|
|
68849
68849
|
}
|
|
68850
68850
|
|
|
68851
68851
|
.lineNumbers {
|
|
68852
|
-
|
|
68853
68852
|
color: ${this.goBright ? "#acacac" : "#666666"};
|
|
68854
68853
|
padding: 30px 16px 0px 0px;
|
|
68855
68854
|
text-align: right;
|
|
@@ -68900,7 +68899,20 @@ var DeesDataviewCodebox = class extends DeesElement {
|
|
|
68900
68899
|
color: ${this.goBright ? "#EF9300" : "#ffd765"};
|
|
68901
68900
|
}
|
|
68902
68901
|
</style>
|
|
68903
|
-
<div
|
|
68902
|
+
<div
|
|
68903
|
+
class="mainbox"
|
|
68904
|
+
@contextmenu="${(eventArg) => {
|
|
68905
|
+
DeesContextmenu.openContextMenuWithOptions(eventArg, [
|
|
68906
|
+
{
|
|
68907
|
+
name: "About",
|
|
68908
|
+
iconName: "circleInfo",
|
|
68909
|
+
action: async () => {
|
|
68910
|
+
return null;
|
|
68911
|
+
}
|
|
68912
|
+
}
|
|
68913
|
+
]);
|
|
68914
|
+
}}"
|
|
68915
|
+
>
|
|
68904
68916
|
<div class="appbar">
|
|
68905
68917
|
<div class="macControls">
|
|
68906
68918
|
<div class="close"></div>
|
|
@@ -72448,6 +72460,11 @@ var faMedium = {
|
|
|
72448
72460
|
};
|
|
72449
72461
|
|
|
72450
72462
|
// node_modules/.pnpm/@fortawesome+free-regular-svg-icons@6.4.2/node_modules/@fortawesome/free-regular-svg-icons/index.mjs
|
|
72463
|
+
var faTrashCan = {
|
|
72464
|
+
prefix: "far",
|
|
72465
|
+
iconName: "trash-can",
|
|
72466
|
+
icon: [448, 512, [61460, "trash-alt"], "f2ed", "M170.5 51.6L151.5 80h145l-19-28.4c-1.5-2.2-4-3.6-6.7-3.6H177.1c-2.7 0-5.2 1.3-6.7 3.6zm147-26.6L354.2 80H368h48 8c13.3 0 24 10.7 24 24s-10.7 24-24 24h-8V432c0 44.2-35.8 80-80 80H112c-44.2 0-80-35.8-80-80V128H24c-13.3 0-24-10.7-24-24S10.7 80 24 80h8H80 93.8l36.7-55.1C140.9 9.4 158.4 0 177.1 0h93.7c18.7 0 36.2 9.4 46.6 24.9zM80 128V432c0 17.7 14.3 32 32 32H336c17.7 0 32-14.3 32-32V128H80zm80 64V400c0 8.8-7.2 16-16 16s-16-7.2-16-16V192c0-8.8 7.2-16 16-16s16 7.2 16 16zm80 0V400c0 8.8-7.2 16-16 16s-16-7.2-16-16V192c0-8.8 7.2-16 16-16s16 7.2 16 16zm80 0V400c0 8.8-7.2 16-16 16s-16-7.2-16-16V192c0-8.8 7.2-16 16-16s16 7.2 16 16z"]
|
|
72467
|
+
};
|
|
72451
72468
|
var faMessage = {
|
|
72452
72469
|
prefix: "far",
|
|
72453
72470
|
iconName: "message",
|
|
@@ -72480,6 +72497,11 @@ var faCircleXmark = {
|
|
|
72480
72497
|
};
|
|
72481
72498
|
|
|
72482
72499
|
// node_modules/.pnpm/@fortawesome+free-solid-svg-icons@6.4.2/node_modules/@fortawesome/free-solid-svg-icons/index.mjs
|
|
72500
|
+
var faTrashCan2 = {
|
|
72501
|
+
prefix: "fas",
|
|
72502
|
+
iconName: "trash-can",
|
|
72503
|
+
icon: [448, 512, [61460, "trash-alt"], "f2ed", "M135.2 17.7C140.6 6.8 151.7 0 163.8 0H284.2c12.1 0 23.2 6.8 28.6 17.7L320 32h96c17.7 0 32 14.3 32 32s-14.3 32-32 32H32C14.3 96 0 81.7 0 64S14.3 32 32 32h96l7.2-14.3zM32 128H416V448c0 35.3-28.7 64-64 64H96c-35.3 0-64-28.7-64-64V128zm96 64c-8.8 0-16 7.2-16 16V432c0 8.8 7.2 16 16 16s16-7.2 16-16V208c0-8.8-7.2-16-16-16zm96 0c-8.8 0-16 7.2-16 16V432c0 8.8 7.2 16 16 16s16-7.2 16-16V208c0-8.8-7.2-16-16-16zm96 0c-8.8 0-16 7.2-16 16V432c0 8.8 7.2 16 16 16s16-7.2 16-16V208c0-8.8-7.2-16-16-16z"]
|
|
72504
|
+
};
|
|
72483
72505
|
var faMessage2 = {
|
|
72484
72506
|
prefix: "fas",
|
|
72485
72507
|
iconName: "message",
|
|
@@ -72540,6 +72562,11 @@ var faEye = {
|
|
|
72540
72562
|
iconName: "eye",
|
|
72541
72563
|
icon: [576, 512, [128065], "f06e", "M288 32c-80.8 0-145.5 36.8-192.6 80.6C48.6 156 17.3 208 2.5 243.7c-3.3 7.9-3.3 16.7 0 24.6C17.3 304 48.6 356 95.4 399.4C142.5 443.2 207.2 480 288 480s145.5-36.8 192.6-80.6c46.8-43.5 78.1-95.4 93-131.1c3.3-7.9 3.3-16.7 0-24.6c-14.9-35.7-46.2-87.7-93-131.1C433.5 68.8 368.8 32 288 32zM144 256a144 144 0 1 1 288 0 144 144 0 1 1 -288 0zm144-64c0 35.3-28.7 64-64 64c-7.1 0-13.9-1.2-20.3-3.3c-5.5-1.8-11.9 1.6-11.7 7.4c.3 6.9 1.3 13.8 3.2 20.7c13.7 51.2 66.4 81.6 117.6 67.9s81.6-66.4 67.9-117.6c-11.1-41.5-47.8-69.4-88.6-71.1c-5.8-.2-9.2 6.1-7.4 11.7c2.1 6.4 3.3 13.2 3.3 20.3z"]
|
|
72542
72564
|
};
|
|
72565
|
+
var faTrash = {
|
|
72566
|
+
prefix: "fas",
|
|
72567
|
+
iconName: "trash",
|
|
72568
|
+
icon: [448, 512, [], "f1f8", "M135.2 17.7L128 32H32C14.3 32 0 46.3 0 64S14.3 96 32 96H416c17.7 0 32-14.3 32-32s-14.3-32-32-32H320l-7.2-14.3C307.4 6.8 296.3 0 284.2 0H163.8c-12.1 0-23.2 6.8-28.6 17.7zM416 128H32L53.2 467c1.6 25.3 22.6 45 47.9 45H346.9c25.3 0 46.3-19.7 47.9-45L416 128z"]
|
|
72569
|
+
};
|
|
72543
72570
|
var faCircleInfo = {
|
|
72544
72571
|
prefix: "fas",
|
|
72545
72572
|
iconName: "circle-info",
|
|
@@ -72575,6 +72602,11 @@ var faGrip = {
|
|
|
72575
72602
|
iconName: "grip",
|
|
72576
72603
|
icon: [448, 512, ["grip-horizontal"], "f58d", "M128 136c0-22.1-17.9-40-40-40L40 96C17.9 96 0 113.9 0 136l0 48c0 22.1 17.9 40 40 40H88c22.1 0 40-17.9 40-40l0-48zm0 192c0-22.1-17.9-40-40-40H40c-22.1 0-40 17.9-40 40l0 48c0 22.1 17.9 40 40 40H88c22.1 0 40-17.9 40-40V328zm32-192v48c0 22.1 17.9 40 40 40h48c22.1 0 40-17.9 40-40V136c0-22.1-17.9-40-40-40l-48 0c-22.1 0-40 17.9-40 40zM288 328c0-22.1-17.9-40-40-40H200c-22.1 0-40 17.9-40 40l0 48c0 22.1 17.9 40 40 40h48c22.1 0 40-17.9 40-40V328zm32-192v48c0 22.1 17.9 40 40 40h48c22.1 0 40-17.9 40-40V136c0-22.1-17.9-40-40-40l-48 0c-22.1 0-40 17.9-40 40zM448 328c0-22.1-17.9-40-40-40H360c-22.1 0-40 17.9-40 40v48c0 22.1 17.9 40 40 40h48c22.1 0 40-17.9 40-40V328z"]
|
|
72577
72604
|
};
|
|
72605
|
+
var faPlus = {
|
|
72606
|
+
prefix: "fas",
|
|
72607
|
+
iconName: "plus",
|
|
72608
|
+
icon: [448, 512, [10133, 61543, "add"], "2b", "M256 80c0-17.7-14.3-32-32-32s-32 14.3-32 32V224H48c-17.7 0-32 14.3-32 32s14.3 32 32 32H192V432c0 17.7 14.3 32 32 32s32-14.3 32-32V288H400c17.7 0 32-14.3 32-32s-14.3-32-32-32H256V80z"]
|
|
72609
|
+
};
|
|
72578
72610
|
var faXmark = {
|
|
72579
72611
|
prefix: "fas",
|
|
72580
72612
|
iconName: "xmark",
|
|
@@ -72616,60 +72648,100 @@ var faCircleXmark2 = {
|
|
|
72616
72648
|
icon: [512, 512, [61532, "times-circle", "xmark-circle"], "f057", "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM175 175c9.4-9.4 24.6-9.4 33.9 0l47 47 47-47c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-47 47 47 47c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-47-47-47 47c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l47-47-47-47c-9.4-9.4-9.4-24.6 0-33.9z"]
|
|
72617
72649
|
};
|
|
72618
72650
|
|
|
72651
|
+
// ts_web/elements/dees-icon.demo.ts
|
|
72652
|
+
var demoFunc5 = () => x`
|
|
72653
|
+
<style>
|
|
72654
|
+
.demoContainer {
|
|
72655
|
+
|
|
72656
|
+
width: 100%;
|
|
72657
|
+
display: flex;
|
|
72658
|
+
flex-wrap: wrap;
|
|
72659
|
+
background: #111111;
|
|
72660
|
+
padding: 10px; font-size: 30px;
|
|
72661
|
+
}
|
|
72662
|
+
dees-icon {
|
|
72663
|
+
transition: color 0.02s;
|
|
72664
|
+
color: #ffffff;
|
|
72665
|
+
}
|
|
72666
|
+
dees-icon:hover {
|
|
72667
|
+
color: #e4002b;
|
|
72668
|
+
}
|
|
72669
|
+
|
|
72670
|
+
.iconContainer {
|
|
72671
|
+
display: block;
|
|
72672
|
+
padding: 16px 16px 0px 16px;
|
|
72673
|
+
border: 1px solid #333333;
|
|
72674
|
+
margin-right: 8px;
|
|
72675
|
+
margin-bottom: 8px;
|
|
72676
|
+
}
|
|
72677
|
+
|
|
72678
|
+
.iconName {
|
|
72679
|
+
font-size: 12px;
|
|
72680
|
+
text-align: center;
|
|
72681
|
+
color: #ccc;
|
|
72682
|
+
background: #333333;
|
|
72683
|
+
padding: 4px 8px;
|
|
72684
|
+
padding-bottom: 4px;
|
|
72685
|
+
margin-left: -16px;
|
|
72686
|
+
margin-right: -16px;
|
|
72687
|
+
margin-top: 16px;
|
|
72688
|
+
}
|
|
72689
|
+
</style>
|
|
72690
|
+
|
|
72691
|
+
<div class="demoContainer">
|
|
72692
|
+
${Object.keys(faIcons).map(
|
|
72693
|
+
(iconName) => x`
|
|
72694
|
+
<div class="iconContainer">
|
|
72695
|
+
<dees-icon .iconFA=${iconName}></dees-icon>
|
|
72696
|
+
<div class="iconName">${iconName}</div>
|
|
72697
|
+
</div>
|
|
72698
|
+
`
|
|
72699
|
+
)}
|
|
72700
|
+
</div>
|
|
72701
|
+
|
|
72702
|
+
`;
|
|
72703
|
+
|
|
72619
72704
|
// ts_web/elements/dees-icon.ts
|
|
72620
72705
|
var faIcons = {
|
|
72621
72706
|
// normal
|
|
72622
72707
|
arrowRight: faArrowRight,
|
|
72623
72708
|
arrowUpRightFromSquare: faArrowUpRightFromSquare,
|
|
72624
|
-
arrowUpRightFromSquareSolid: faArrowUpRightFromSquare,
|
|
72625
72709
|
bell: faBell,
|
|
72626
|
-
bellSolid: faBell,
|
|
72627
72710
|
bug: faBug,
|
|
72628
|
-
bugSolid: faBug,
|
|
72629
72711
|
building: faBuilding,
|
|
72630
|
-
buildingSolid: faBuilding,
|
|
72631
72712
|
caretLeft: faCaretLeft,
|
|
72632
|
-
caretLeftSolid: faCaretLeft,
|
|
72633
72713
|
caretRight: faCaretRight,
|
|
72634
|
-
caretRightSolid: faCaretRight,
|
|
72635
72714
|
check: faCheck,
|
|
72636
|
-
checkSolid: faCheck,
|
|
72637
72715
|
circleInfo: faCircleInfo,
|
|
72638
|
-
circleInfoSolid: faCircleInfo,
|
|
72639
72716
|
circleCheck: faCircleCheck,
|
|
72640
72717
|
circleCheckSolid: faCircleCheck2,
|
|
72641
72718
|
circleXmark: faCircleXmark,
|
|
72642
72719
|
circleXmarkSolid: faCircleXmark2,
|
|
72643
72720
|
clockRotateLeft: faClockRotateLeft,
|
|
72644
|
-
clockRotateLeftSolid: faClockRotateLeft,
|
|
72645
72721
|
copy: faCopy,
|
|
72646
72722
|
copySolid: faCopy2,
|
|
72647
72723
|
desktop: faDesktop,
|
|
72648
|
-
desktopSolid: faDesktop,
|
|
72649
72724
|
eye: faEye,
|
|
72650
|
-
eyeSolid: faEye,
|
|
72651
72725
|
eyeSlash: faEyeSlash,
|
|
72652
|
-
eyeSlashSolid: faEyeSlash,
|
|
72653
72726
|
grip: faGrip,
|
|
72654
|
-
gripSolid: faGrip,
|
|
72655
72727
|
message: faMessage,
|
|
72656
72728
|
messageSolid: faMessage2,
|
|
72657
72729
|
mugHot: faMugHot,
|
|
72658
|
-
mugHotSolid: faMugHot,
|
|
72659
72730
|
minus: faMinus,
|
|
72660
|
-
minusSolid: faMinus,
|
|
72661
72731
|
paste: faPaste,
|
|
72662
72732
|
pasteSolid: faPaste2,
|
|
72663
72733
|
penToSquare: faPenToSquare,
|
|
72664
|
-
|
|
72734
|
+
plus: faPlus,
|
|
72665
72735
|
rss: faRss,
|
|
72666
|
-
rssSolid: faRss,
|
|
72667
72736
|
share: faShare,
|
|
72668
|
-
shareSolid: faShare,
|
|
72669
72737
|
sun: faSun,
|
|
72670
72738
|
sunSolid: faSun2,
|
|
72739
|
+
trash: faTrash,
|
|
72740
|
+
trashSolid: faTrash,
|
|
72741
|
+
trashCan: faTrashCan,
|
|
72742
|
+
trashCanSolid: faTrashCan2,
|
|
72743
|
+
users: faUsers,
|
|
72671
72744
|
xmark: faXmark,
|
|
72672
|
-
xmarkSolid: faXmark,
|
|
72673
72745
|
// brands
|
|
72674
72746
|
facebook: faFacebook,
|
|
72675
72747
|
google: faGoogle,
|
|
@@ -72678,8 +72750,7 @@ var faIcons = {
|
|
|
72678
72750
|
medium: faMedium,
|
|
72679
72751
|
slack: faSlackHash,
|
|
72680
72752
|
tiktok: faTiktok,
|
|
72681
|
-
twitter: faTwitter
|
|
72682
|
-
users: faUsers
|
|
72753
|
+
twitter: faTwitter
|
|
72683
72754
|
};
|
|
72684
72755
|
var DeesIcon = class extends DeesElement {
|
|
72685
72756
|
constructor() {
|
|
@@ -72707,24 +72778,7 @@ var DeesIcon = class extends DeesElement {
|
|
|
72707
72778
|
}
|
|
72708
72779
|
}
|
|
72709
72780
|
};
|
|
72710
|
-
DeesIcon.demo =
|
|
72711
|
-
<dees-icon iconName="visibility"></dees-icon>
|
|
72712
|
-
<div style="background: #fff; padding: 10px; font-size: 30px">
|
|
72713
|
-
<style>
|
|
72714
|
-
dees-icon {
|
|
72715
|
-
transition: color 0.05s;
|
|
72716
|
-
}
|
|
72717
|
-
dees-icon:hover {
|
|
72718
|
-
color: #e4002b;
|
|
72719
|
-
}
|
|
72720
|
-
</style>
|
|
72721
|
-
<dees-icon .iconFA=${"messageSolid"}></dees-icon>
|
|
72722
|
-
<dees-icon .iconFA=${"sun"}></dees-icon>
|
|
72723
|
-
<dees-icon .iconFA=${"sunSolid"}></dees-icon>
|
|
72724
|
-
<dees-icon .iconFA=${"facebook"}></dees-icon>
|
|
72725
|
-
<dees-icon .iconFA=${"arrowUpRightFromSquare"}></dees-icon>
|
|
72726
|
-
</div>
|
|
72727
|
-
`;
|
|
72781
|
+
DeesIcon.demo = demoFunc5;
|
|
72728
72782
|
DeesIcon.styles = [
|
|
72729
72783
|
cssManager.defaultStyles,
|
|
72730
72784
|
i`
|
|
@@ -73280,7 +73334,7 @@ DeesMobilenavigation = __decorateClass([
|
|
|
73280
73334
|
], DeesMobilenavigation);
|
|
73281
73335
|
|
|
73282
73336
|
// ts_web/elements/dees-modal.demo.ts
|
|
73283
|
-
var
|
|
73337
|
+
var demoFunc6 = () => x`
|
|
73284
73338
|
<dees-button @click=${() => {
|
|
73285
73339
|
DeesModal.createAndShow({
|
|
73286
73340
|
heading: "This is a heading",
|
|
@@ -73385,7 +73439,7 @@ var DeesModal = class extends DeesElement {
|
|
|
73385
73439
|
}
|
|
73386
73440
|
};
|
|
73387
73441
|
// STATIC
|
|
73388
|
-
DeesModal.demo =
|
|
73442
|
+
DeesModal.demo = demoFunc6;
|
|
73389
73443
|
DeesModal.styles = [
|
|
73390
73444
|
cssManager.defaultStyles,
|
|
73391
73445
|
i`
|
|
@@ -73568,7 +73622,7 @@ DeesPdf = __decorateClass([
|
|
|
73568
73622
|
], DeesPdf);
|
|
73569
73623
|
|
|
73570
73624
|
// ts_web/elements/dees-simple-appdash.demo.ts
|
|
73571
|
-
var
|
|
73625
|
+
var demoFunc7 = () => x`
|
|
73572
73626
|
<dees-simple-appdash>Hello there</dees-simple-appdash>
|
|
73573
73627
|
`;
|
|
73574
73628
|
|
|
@@ -73594,7 +73648,7 @@ var DeesSimpleAppDash = class extends DeesElement {
|
|
|
73594
73648
|
}
|
|
73595
73649
|
};
|
|
73596
73650
|
// STATIC
|
|
73597
|
-
DeesSimpleAppDash.demo =
|
|
73651
|
+
DeesSimpleAppDash.demo = demoFunc7;
|
|
73598
73652
|
DeesSimpleAppDash.styles = [
|
|
73599
73653
|
cssManager.defaultStyles,
|
|
73600
73654
|
i`
|
|
@@ -73631,7 +73685,7 @@ DeesSimpleAppDash = __decorateClass([
|
|
|
73631
73685
|
], DeesSimpleAppDash);
|
|
73632
73686
|
|
|
73633
73687
|
// ts_web/elements/dees-simple-login.demo.ts
|
|
73634
|
-
var
|
|
73688
|
+
var demoFunc8 = () => x` <dees-simple-login name="someapp"> Hello there </dees-simple-login> `;
|
|
73635
73689
|
|
|
73636
73690
|
// ts_web/elements/dees-simple-login.ts
|
|
73637
73691
|
var DeesSimpleLogin = class extends DeesElement {
|
|
@@ -73688,7 +73742,7 @@ var DeesSimpleLogin = class extends DeesElement {
|
|
|
73688
73742
|
}
|
|
73689
73743
|
};
|
|
73690
73744
|
// STATIC
|
|
73691
|
-
DeesSimpleLogin.demo =
|
|
73745
|
+
DeesSimpleLogin.demo = demoFunc8;
|
|
73692
73746
|
DeesSimpleLogin.styles = [
|
|
73693
73747
|
cssManager.defaultStyles,
|
|
73694
73748
|
i`
|
|
@@ -74200,7 +74254,7 @@ DeesStepper = __decorateClass([
|
|
|
74200
74254
|
], DeesStepper);
|
|
74201
74255
|
|
|
74202
74256
|
// ts_web/elements/dees-table.demo.ts
|
|
74203
|
-
var
|
|
74257
|
+
var demoFunc9 = () => x`
|
|
74204
74258
|
<style>
|
|
74205
74259
|
.demoWrapper {
|
|
74206
74260
|
box-sizing: border-box;
|
|
@@ -74606,7 +74660,7 @@ var DeesTable = class extends DeesElement {
|
|
|
74606
74660
|
input.focus();
|
|
74607
74661
|
}
|
|
74608
74662
|
};
|
|
74609
|
-
DeesTable.demo =
|
|
74663
|
+
DeesTable.demo = demoFunc9;
|
|
74610
74664
|
DeesTable.styles = [
|
|
74611
74665
|
cssManager.defaultStyles,
|
|
74612
74666
|
i`
|