@design.estate/dees-catalog 3.68.0 → 3.69.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/dist_bundle/bundle.js +53 -29
- package/dist_ts_web/00_commitinfo_data.js +1 -1
- package/dist_ts_web/elements/00group-layout/dees-heading/dees-heading.d.ts +5 -2
- package/dist_ts_web/elements/00group-layout/dees-heading/dees-heading.demo.js +5 -3
- package/dist_ts_web/elements/00group-layout/dees-heading/dees-heading.js +52 -21
- package/dist_watch/bundle.js +6 -2
- 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/00group-layout/dees-heading/dees-heading.demo.ts +4 -2
- package/ts_web/elements/00group-layout/dees-heading/dees-heading.ts +52 -27
package/dist_bundle/bundle.js
CHANGED
|
@@ -186337,8 +186337,10 @@ function demoFunc53() {
|
|
|
186337
186337
|
<dees-heading level="4">This is a H4 heading</dees-heading>
|
|
186338
186338
|
<dees-heading level="5">This is a H5 heading</dees-heading>
|
|
186339
186339
|
<dees-heading level="6">This is a H6 heading</dees-heading>
|
|
186340
|
-
<dees-heading level="hr">This is an hr heading</dees-heading>
|
|
186341
|
-
<dees-heading level="
|
|
186340
|
+
<dees-heading level="hr">This is an hr heading (level="hr")</dees-heading>
|
|
186341
|
+
<dees-heading level="7">This is an hr heading (level="7")</dees-heading>
|
|
186342
|
+
<dees-heading level="hr-small">This is an hr-small heading (level="hr-small")</dees-heading>
|
|
186343
|
+
<dees-heading level="8">This is an hr-small heading (level="8")</dees-heading>
|
|
186342
186344
|
`;
|
|
186343
186345
|
}
|
|
186344
186346
|
__name(demoFunc53, "demoFunc");
|
|
@@ -186368,8 +186370,10 @@ var _DeesHeading = class _DeesHeading extends (_a79 = DeesElement, _level_dec =
|
|
|
186368
186370
|
return b2`<h5><slot></slot></h5>`;
|
|
186369
186371
|
case "6":
|
|
186370
186372
|
return b2`<h6><slot></slot></h6>`;
|
|
186373
|
+
case "7":
|
|
186371
186374
|
case "hr":
|
|
186372
186375
|
return b2`<div class="heading-hr"><slot></slot></div>`;
|
|
186376
|
+
case "8":
|
|
186373
186377
|
case "hr-small":
|
|
186374
186378
|
return b2`<div class="heading-hr heading-hr-small"><slot></slot></div>`;
|
|
186375
186379
|
default:
|
|
@@ -186390,58 +186394,78 @@ __publicField(_DeesHeading, "styles", [
|
|
|
186390
186394
|
themeDefaultStyles,
|
|
186391
186395
|
cssManager.defaultStyles,
|
|
186392
186396
|
i`
|
|
186393
|
-
|
|
186397
|
+
:host {
|
|
186398
|
+
display: block;
|
|
186399
|
+
}
|
|
186400
|
+
|
|
186394
186401
|
/* Heading styles */
|
|
186395
186402
|
h1, h2, h3, h4, h5, h6 {
|
|
186396
|
-
margin: 16px 0 8px;
|
|
186397
186403
|
font-weight: 600;
|
|
186398
|
-
color:
|
|
186404
|
+
color: var(--dees-color-text-primary);
|
|
186405
|
+
}
|
|
186406
|
+
|
|
186407
|
+
/* Per-level typography + spacing.
|
|
186408
|
+
* Margin scales with importance: h1 gets the most breathing room,
|
|
186409
|
+
* h6 the least. Top margin > bottom margin so headings group with
|
|
186410
|
+
* the content that follows them. */
|
|
186411
|
+
h1 {
|
|
186412
|
+
font-size: 32px;
|
|
186413
|
+
font-family: ${cssCalSansFontFamily};
|
|
186414
|
+
letter-spacing: 0.025em;
|
|
186415
|
+
margin: var(--dees-spacing-2xl) 0 var(--dees-spacing-lg);
|
|
186416
|
+
}
|
|
186417
|
+
h2 {
|
|
186418
|
+
font-size: 28px;
|
|
186419
|
+
margin: var(--dees-spacing-xl) 0 var(--dees-spacing-md);
|
|
186420
|
+
}
|
|
186421
|
+
h3 {
|
|
186422
|
+
font-size: 24px;
|
|
186423
|
+
margin: var(--dees-spacing-xl) 0 var(--dees-spacing-md);
|
|
186424
|
+
}
|
|
186425
|
+
h4 {
|
|
186426
|
+
font-size: 20px;
|
|
186427
|
+
margin: var(--dees-spacing-lg) 0 var(--dees-spacing-sm);
|
|
186399
186428
|
}
|
|
186400
|
-
|
|
186401
|
-
|
|
186402
|
-
|
|
186403
|
-
|
|
186404
|
-
|
|
186405
|
-
|
|
186429
|
+
h5 {
|
|
186430
|
+
font-size: 16px;
|
|
186431
|
+
margin: var(--dees-spacing-md) 0 var(--dees-spacing-sm);
|
|
186432
|
+
}
|
|
186433
|
+
h6 {
|
|
186434
|
+
font-size: 14px;
|
|
186435
|
+
margin: var(--dees-spacing-md) 0 var(--dees-spacing-xs);
|
|
186436
|
+
}
|
|
186437
|
+
|
|
186406
186438
|
/* Horizontal rule style heading */
|
|
186407
186439
|
.heading-hr {
|
|
186408
186440
|
display: flex;
|
|
186409
186441
|
align-items: center;
|
|
186410
186442
|
text-align: center;
|
|
186411
|
-
margin:
|
|
186412
|
-
color:
|
|
186443
|
+
margin: var(--dees-spacing-lg) 0;
|
|
186444
|
+
color: var(--dees-color-text-muted);
|
|
186413
186445
|
}
|
|
186414
186446
|
/* Fade lines toward and away from text for hr style */
|
|
186415
186447
|
.heading-hr::before {
|
|
186416
186448
|
content: '';
|
|
186417
186449
|
flex: 1;
|
|
186418
186450
|
height: 1px;
|
|
186419
|
-
|
|
186420
|
-
|
|
186421
|
-
"linear-gradient(to right, transparent, #ccc)",
|
|
186422
|
-
"linear-gradient(to right, transparent, #333)"
|
|
186423
|
-
)};
|
|
186424
|
-
margin: 0 8px;
|
|
186451
|
+
background: linear-gradient(to right, transparent, var(--dees-color-border-strong));
|
|
186452
|
+
margin: 0 var(--dees-spacing-sm);
|
|
186425
186453
|
}
|
|
186426
186454
|
.heading-hr::after {
|
|
186427
186455
|
content: '';
|
|
186428
186456
|
flex: 1;
|
|
186429
186457
|
height: 1px;
|
|
186430
|
-
|
|
186431
|
-
|
|
186432
|
-
"linear-gradient(to right, #ccc, transparent)",
|
|
186433
|
-
"linear-gradient(to right, #333, transparent)"
|
|
186434
|
-
)};
|
|
186435
|
-
margin: 0 8px;
|
|
186458
|
+
background: linear-gradient(to right, var(--dees-color-border-strong), transparent);
|
|
186459
|
+
margin: 0 var(--dees-spacing-sm);
|
|
186436
186460
|
}
|
|
186437
186461
|
/* Small hr variant with reduced margins */
|
|
186438
186462
|
.heading-hr.heading-hr-small {
|
|
186439
|
-
margin:
|
|
186463
|
+
margin: var(--dees-spacing-sm) 0;
|
|
186440
186464
|
font-size: 12px;
|
|
186441
186465
|
}
|
|
186442
186466
|
.heading-hr.heading-hr-small::before,
|
|
186443
186467
|
.heading-hr.heading-hr-small::after {
|
|
186444
|
-
margin: 0
|
|
186468
|
+
margin: 0 var(--dees-spacing-sm);
|
|
186445
186469
|
}
|
|
186446
186470
|
`
|
|
186447
186471
|
]);
|
|
@@ -200432,7 +200456,7 @@ init_group_runtime();
|
|
|
200432
200456
|
// ts_web/00_commitinfo_data.ts
|
|
200433
200457
|
var commitinfo = {
|
|
200434
200458
|
name: "@design.estate/dees-catalog",
|
|
200435
|
-
version: "3.
|
|
200459
|
+
version: "3.69.0",
|
|
200436
200460
|
description: "A comprehensive library that provides dynamic web components for building sophisticated and modern web applications using JavaScript and TypeScript."
|
|
200437
200461
|
};
|
|
200438
200462
|
export {
|
|
@@ -202405,4 +202429,4 @@ ibantools/jsnext/ibantools.js:
|
|
|
202405
202429
|
* @preferred
|
|
202406
202430
|
*)
|
|
202407
202431
|
*/
|
|
202408
|
-
//# sourceMappingURL=bundle-
|
|
202432
|
+
//# sourceMappingURL=bundle-1775638700514.js.map
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
*/
|
|
4
4
|
export const commitinfo = {
|
|
5
5
|
name: '@design.estate/dees-catalog',
|
|
6
|
-
version: '3.
|
|
6
|
+
version: '3.69.0',
|
|
7
7
|
description: 'A comprehensive library that provides dynamic web components for building sophisticated and modern web applications using JavaScript and TypeScript.'
|
|
8
8
|
};
|
|
9
9
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiMDBfY29tbWl0aW5mb19kYXRhLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vdHNfd2ViLzAwX2NvbW1pdGluZm9fZGF0YS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7R0FFRztBQUNILE1BQU0sQ0FBQyxNQUFNLFVBQVUsR0FBRztJQUN4QixJQUFJLEVBQUUsNkJBQTZCO0lBQ25DLE9BQU8sRUFBRSxRQUFRO0lBQ2pCLFdBQVcsRUFBRSxzSkFBc0o7Q0FDcEssQ0FBQSJ9
|
|
@@ -9,9 +9,12 @@ export declare class DeesHeading extends DeesElement {
|
|
|
9
9
|
static demo: typeof demoFunc;
|
|
10
10
|
static demoGroups: string[];
|
|
11
11
|
/**
|
|
12
|
-
* Heading level:
|
|
12
|
+
* Heading level:
|
|
13
|
+
* '1'-'6' → <h1>..<h6>
|
|
14
|
+
* '7'|'hr' → horizontal-rule style heading
|
|
15
|
+
* '8'|'hr-small' → small horizontal-rule style heading
|
|
13
16
|
*/
|
|
14
|
-
accessor level: '1' | '2' | '3' | '4' | '5' | '6' | 'hr' | 'hr-small';
|
|
17
|
+
accessor level: '1' | '2' | '3' | '4' | '5' | '6' | '7' | '8' | 'hr' | 'hr-small';
|
|
15
18
|
static styles: CSSResult[];
|
|
16
19
|
render(): TemplateResult;
|
|
17
20
|
}
|
|
@@ -7,8 +7,10 @@ export function demoFunc() {
|
|
|
7
7
|
<dees-heading level="4">This is a H4 heading</dees-heading>
|
|
8
8
|
<dees-heading level="5">This is a H5 heading</dees-heading>
|
|
9
9
|
<dees-heading level="6">This is a H6 heading</dees-heading>
|
|
10
|
-
<dees-heading level="hr">This is an hr heading</dees-heading>
|
|
11
|
-
<dees-heading level="
|
|
10
|
+
<dees-heading level="hr">This is an hr heading (level="hr")</dees-heading>
|
|
11
|
+
<dees-heading level="7">This is an hr heading (level="7")</dees-heading>
|
|
12
|
+
<dees-heading level="hr-small">This is an hr-small heading (level="hr-small")</dees-heading>
|
|
13
|
+
<dees-heading level="8">This is an hr-small heading (level="8")</dees-heading>
|
|
12
14
|
`;
|
|
13
15
|
}
|
|
14
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
16
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGVlcy1oZWFkaW5nLmRlbW8uanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi90c193ZWIvZWxlbWVudHMvMDBncm91cC1sYXlvdXQvZGVlcy1oZWFkaW5nL2RlZXMtaGVhZGluZy5kZW1vLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxJQUFJLEVBQUUsTUFBTSw2QkFBNkIsQ0FBQztBQUVuRCxNQUFNLFVBQVUsUUFBUTtJQUN0QixPQUFPLElBQUksQ0FBQTs7Ozs7Ozs7Ozs7R0FXVixDQUFDO0FBQ0osQ0FBQyJ9
|
|
@@ -61,7 +61,10 @@ let DeesHeading = (() => {
|
|
|
61
61
|
#level_accessor_storage = __runInitializers(this, _level_initializers, '1');
|
|
62
62
|
// properties
|
|
63
63
|
/**
|
|
64
|
-
* Heading level:
|
|
64
|
+
* Heading level:
|
|
65
|
+
* '1'-'6' → <h1>..<h6>
|
|
66
|
+
* '7'|'hr' → horizontal-rule style heading
|
|
67
|
+
* '8'|'hr-small' → small horizontal-rule style heading
|
|
65
68
|
*/
|
|
66
69
|
get level() { return this.#level_accessor_storage; }
|
|
67
70
|
set level(value) { this.#level_accessor_storage = value; }
|
|
@@ -70,52 +73,78 @@ let DeesHeading = (() => {
|
|
|
70
73
|
themeDefaultStyles,
|
|
71
74
|
cssManager.defaultStyles,
|
|
72
75
|
css `
|
|
73
|
-
|
|
76
|
+
:host {
|
|
77
|
+
display: block;
|
|
78
|
+
}
|
|
79
|
+
|
|
74
80
|
/* Heading styles */
|
|
75
81
|
h1, h2, h3, h4, h5, h6 {
|
|
76
|
-
margin: 16px 0 8px;
|
|
77
82
|
font-weight: 600;
|
|
78
|
-
color:
|
|
83
|
+
color: var(--dees-color-text-primary);
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
/* Per-level typography + spacing.
|
|
87
|
+
* Margin scales with importance: h1 gets the most breathing room,
|
|
88
|
+
* h6 the least. Top margin > bottom margin so headings group with
|
|
89
|
+
* the content that follows them. */
|
|
90
|
+
h1 {
|
|
91
|
+
font-size: 32px;
|
|
92
|
+
font-family: ${cssCalSansFontFamily};
|
|
93
|
+
letter-spacing: 0.025em;
|
|
94
|
+
margin: var(--dees-spacing-2xl) 0 var(--dees-spacing-lg);
|
|
95
|
+
}
|
|
96
|
+
h2 {
|
|
97
|
+
font-size: 28px;
|
|
98
|
+
margin: var(--dees-spacing-xl) 0 var(--dees-spacing-md);
|
|
99
|
+
}
|
|
100
|
+
h3 {
|
|
101
|
+
font-size: 24px;
|
|
102
|
+
margin: var(--dees-spacing-xl) 0 var(--dees-spacing-md);
|
|
103
|
+
}
|
|
104
|
+
h4 {
|
|
105
|
+
font-size: 20px;
|
|
106
|
+
margin: var(--dees-spacing-lg) 0 var(--dees-spacing-sm);
|
|
107
|
+
}
|
|
108
|
+
h5 {
|
|
109
|
+
font-size: 16px;
|
|
110
|
+
margin: var(--dees-spacing-md) 0 var(--dees-spacing-sm);
|
|
111
|
+
}
|
|
112
|
+
h6 {
|
|
113
|
+
font-size: 14px;
|
|
114
|
+
margin: var(--dees-spacing-md) 0 var(--dees-spacing-xs);
|
|
79
115
|
}
|
|
80
|
-
|
|
81
|
-
h2 { font-size: 28px; }
|
|
82
|
-
h3 { font-size: 24px; }
|
|
83
|
-
h4 { font-size: 20px; }
|
|
84
|
-
h5 { font-size: 16px; }
|
|
85
|
-
h6 { font-size: 14px; }
|
|
116
|
+
|
|
86
117
|
/* Horizontal rule style heading */
|
|
87
118
|
.heading-hr {
|
|
88
119
|
display: flex;
|
|
89
120
|
align-items: center;
|
|
90
121
|
text-align: center;
|
|
91
|
-
margin:
|
|
92
|
-
color:
|
|
122
|
+
margin: var(--dees-spacing-lg) 0;
|
|
123
|
+
color: var(--dees-color-text-muted);
|
|
93
124
|
}
|
|
94
125
|
/* Fade lines toward and away from text for hr style */
|
|
95
126
|
.heading-hr::before {
|
|
96
127
|
content: '';
|
|
97
128
|
flex: 1;
|
|
98
129
|
height: 1px;
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
margin: 0 8px;
|
|
130
|
+
background: linear-gradient(to right, transparent, var(--dees-color-border-strong));
|
|
131
|
+
margin: 0 var(--dees-spacing-sm);
|
|
102
132
|
}
|
|
103
133
|
.heading-hr::after {
|
|
104
134
|
content: '';
|
|
105
135
|
flex: 1;
|
|
106
136
|
height: 1px;
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
margin: 0 8px;
|
|
137
|
+
background: linear-gradient(to right, var(--dees-color-border-strong), transparent);
|
|
138
|
+
margin: 0 var(--dees-spacing-sm);
|
|
110
139
|
}
|
|
111
140
|
/* Small hr variant with reduced margins */
|
|
112
141
|
.heading-hr.heading-hr-small {
|
|
113
|
-
margin:
|
|
142
|
+
margin: var(--dees-spacing-sm) 0;
|
|
114
143
|
font-size: 12px;
|
|
115
144
|
}
|
|
116
145
|
.heading-hr.heading-hr-small::before,
|
|
117
146
|
.heading-hr.heading-hr-small::after {
|
|
118
|
-
margin: 0
|
|
147
|
+
margin: 0 var(--dees-spacing-sm);
|
|
119
148
|
}
|
|
120
149
|
`,
|
|
121
150
|
];
|
|
@@ -134,8 +163,10 @@ let DeesHeading = (() => {
|
|
|
134
163
|
return html `<h5><slot></slot></h5>`;
|
|
135
164
|
case '6':
|
|
136
165
|
return html `<h6><slot></slot></h6>`;
|
|
166
|
+
case '7':
|
|
137
167
|
case 'hr':
|
|
138
168
|
return html `<div class="heading-hr"><slot></slot></div>`;
|
|
169
|
+
case '8':
|
|
139
170
|
case 'hr-small':
|
|
140
171
|
return html `<div class="heading-hr heading-hr-small"><slot></slot></div>`;
|
|
141
172
|
default:
|
|
@@ -153,4 +184,4 @@ let DeesHeading = (() => {
|
|
|
153
184
|
return DeesHeading = _classThis;
|
|
154
185
|
})();
|
|
155
186
|
export { DeesHeading };
|
|
156
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
187
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGVlcy1oZWFkaW5nLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vdHNfd2ViL2VsZW1lbnRzLzAwZ3JvdXAtbGF5b3V0L2RlZXMtaGVhZGluZy9kZWVzLWhlYWRpbmcudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztBQUFBLE9BQU8sRUFDTCxhQUFhLEVBQ2IsSUFBSSxFQUNKLEdBQUcsRUFDSCxRQUFRLEVBQ1IsVUFBVSxFQUVWLFdBQVcsR0FFWixNQUFNLDZCQUE2QixDQUFDO0FBRXJDLE9BQU8sRUFBRSxRQUFRLEVBQUUsTUFBTSx3QkFBd0IsQ0FBQztBQUNsRCxPQUFPLEVBQUUsb0JBQW9CLEVBQUUsTUFBTSxrQkFBa0IsQ0FBQztBQUN4RCxPQUFPLEVBQUUsa0JBQWtCLEVBQUUsTUFBTSxrQkFBa0IsQ0FBQztJQVN6QyxXQUFXOzRCQUR2QixhQUFhLENBQUMsY0FBYyxDQUFDOzs7O3NCQUNHLFdBQVc7Ozs7MkJBQW5CLFNBQVEsV0FBVzs7OztpQ0FZekMsUUFBUSxDQUFDLEVBQUUsSUFBSSxFQUFFLE1BQU0sRUFBRSxPQUFPLEVBQUUsSUFBSSxFQUFFLENBQUM7WUFDMUMsb0tBQVMsS0FBSyw2QkFBTCxLQUFLLHFGQUEwRTtZQWIxRiw2S0EwSEM7Ozs7UUF6SEMsT0FBTztRQUNBLE1BQU0sQ0FBQyxJQUFJLEdBQUcsUUFBUSxDQUFDO1FBQ3ZCLE1BQU0sQ0FBQyxVQUFVLEdBQUcsQ0FBQyxRQUFRLENBQUMsQ0FBQztRQVV0Qyx1RUFBb0YsR0FBRyxFQUFDO1FBUnhGLGFBQWE7UUFDYjs7Ozs7V0FLRztRQUVILElBQVMsS0FBSywyQ0FBMEU7UUFBeEYsSUFBUyxLQUFLLGlEQUEwRTtRQUV4RixnQkFBZ0I7UUFDVCxNQUFNLENBQUMsTUFBTSxHQUFnQjtZQUNsQyxrQkFBa0I7WUFDbEIsVUFBVSxDQUFDLGFBQWE7WUFDeEIsR0FBRyxDQUFBOzs7Ozs7Ozs7Ozs7Ozs7Ozt1QkFpQmdCLG9CQUFvQjs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0tBeUR0QztTQUNGLENBQUM7UUFHRixXQUFXO1FBQ0osTUFBTTtZQUNYLFFBQVEsSUFBSSxDQUFDLEtBQUssRUFBRSxDQUFDO2dCQUNuQixLQUFLLEdBQUc7b0JBQ04sT0FBTyxJQUFJLENBQUEsd0JBQXdCLENBQUM7Z0JBQ3RDLEtBQUssR0FBRztvQkFDTixPQUFPLElBQUksQ0FBQSx3QkFBd0IsQ0FBQztnQkFDdEMsS0FBSyxHQUFHO29CQUNOLE9BQU8sSUFBSSxDQUFBLHdCQUF3QixDQUFDO2dCQUN0QyxLQUFLLEdBQUc7b0JBQ04sT0FBTyxJQUFJLENBQUEsd0JBQXdCLENBQUM7Z0JBQ3RDLEtBQUssR0FBRztvQkFDTixPQUFPLElBQUksQ0FBQSx3QkFBd0IsQ0FBQztnQkFDdEMsS0FBSyxHQUFHO29CQUNOLE9BQU8sSUFBSSxDQUFBLHdCQUF3QixDQUFDO2dCQUN0QyxLQUFLLEdBQUcsQ0FBQztnQkFDVCxLQUFLLElBQUk7b0JBQ1AsT0FBTyxJQUFJLENBQUEsNkNBQTZDLENBQUM7Z0JBQzNELEtBQUssR0FBRyxDQUFDO2dCQUNULEtBQUssVUFBVTtvQkFDYixPQUFPLElBQUksQ0FBQSw4REFBOEQsQ0FBQztnQkFDNUU7b0JBQ0UsT0FBTyxJQUFJLENBQUEsd0JBQXdCLENBQUM7WUFDeEMsQ0FBQztRQUNILENBQUM7Ozs7OztZQXpIVSx1REFBVzs7Ozs7U0FBWCxXQUFXIn0=
|
package/dist_watch/bundle.js
CHANGED
|
@@ -191683,8 +191683,10 @@ function demoFunc53() {
|
|
|
191683
191683
|
<dees-heading level="4">This is a H4 heading</dees-heading>
|
|
191684
191684
|
<dees-heading level="5">This is a H5 heading</dees-heading>
|
|
191685
191685
|
<dees-heading level="6">This is a H6 heading</dees-heading>
|
|
191686
|
-
<dees-heading level="hr">This is an hr heading</dees-heading>
|
|
191687
|
-
<dees-heading level="
|
|
191686
|
+
<dees-heading level="hr">This is an hr heading (level="hr")</dees-heading>
|
|
191687
|
+
<dees-heading level="7">This is an hr heading (level="7")</dees-heading>
|
|
191688
|
+
<dees-heading level="hr-small">This is an hr-small heading (level="hr-small")</dees-heading>
|
|
191689
|
+
<dees-heading level="8">This is an hr-small heading (level="8")</dees-heading>
|
|
191688
191690
|
`;
|
|
191689
191691
|
}
|
|
191690
191692
|
__name(demoFunc53, "demoFunc");
|
|
@@ -191714,8 +191716,10 @@ var _DeesHeading = class _DeesHeading extends (_a79 = DeesElement, _level_dec =
|
|
|
191714
191716
|
return b2`<h5><slot></slot></h5>`;
|
|
191715
191717
|
case "6":
|
|
191716
191718
|
return b2`<h6><slot></slot></h6>`;
|
|
191719
|
+
case "7":
|
|
191717
191720
|
case "hr":
|
|
191718
191721
|
return b2`<div class="heading-hr"><slot></slot></div>`;
|
|
191722
|
+
case "8":
|
|
191719
191723
|
case "hr-small":
|
|
191720
191724
|
return b2`<div class="heading-hr heading-hr-small"><slot></slot></div>`;
|
|
191721
191725
|
default:
|