@design.estate/dees-catalog 3.74.1 → 3.74.2
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 +18 -26
- package/dist_ts_web/00_commitinfo_data.js +1 -1
- package/dist_ts_web/elements/00group-input/dees-input-text/dees-input-text.demo.js +7 -23
- package/dist_ts_web/elements/00group-layout/dees-tile/dees-tile.js +2 -6
- package/dist_ts_web/elements/00group-overlay/dees-modal/dees-modal.js +9 -1
- package/dist_watch/bundle.js +33 -35
- package/dist_watch/bundle.js.map +3 -3
- package/package.json +2 -2
- package/ts_web/00_commitinfo_data.ts +1 -1
- package/ts_web/elements/00group-input/dees-input-text/dees-input-text.demo.ts +8 -27
- package/ts_web/elements/00group-layout/dees-tile/dees-tile.ts +1 -5
- package/ts_web/elements/00group-overlay/dees-modal/dees-modal.ts +8 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@design.estate/dees-catalog",
|
|
3
|
-
"version": "3.74.
|
|
3
|
+
"version": "3.74.2",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "A comprehensive library that provides dynamic web components for building sophisticated and modern web applications using JavaScript and TypeScript.",
|
|
6
6
|
"main": "dist_ts_web/index.js",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@design.estate/dees-domtools": "^2.5.4",
|
|
20
20
|
"@design.estate/dees-element": "^2.2.4",
|
|
21
|
-
"@design.estate/dees-wcctools": "^3.8.
|
|
21
|
+
"@design.estate/dees-wcctools": "^3.8.4",
|
|
22
22
|
"@fortawesome/fontawesome-svg-core": "^7.2.0",
|
|
23
23
|
"@fortawesome/free-brands-svg-icons": "^7.2.0",
|
|
24
24
|
"@fortawesome/free-regular-svg-icons": "^7.2.0",
|
|
@@ -3,6 +3,6 @@
|
|
|
3
3
|
*/
|
|
4
4
|
export const commitinfo = {
|
|
5
5
|
name: '@design.estate/dees-catalog',
|
|
6
|
-
version: '3.74.
|
|
6
|
+
version: '3.74.2',
|
|
7
7
|
description: 'A comprehensive library that provides dynamic web components for building sophisticated and modern web applications using JavaScript and TypeScript.'
|
|
8
8
|
}
|
|
@@ -284,40 +284,21 @@ export const demoFunc = () => html`
|
|
|
284
284
|
</dees-demowrapper>
|
|
285
285
|
|
|
286
286
|
<dees-demowrapper .runAfterRender=${async (elementArg: HTMLElement) => {
|
|
287
|
-
|
|
288
|
-
const dynamicInput = elementArg.querySelector('dees-input-text');
|
|
287
|
+
const dynamicInput = elementArg.querySelector('dees-input-text') as DeesInputText;
|
|
289
288
|
const output = elementArg.querySelector('#text-input-output');
|
|
290
|
-
|
|
289
|
+
|
|
291
290
|
if (dynamicInput && output) {
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
const value = (event.detail as DeesInputText).getValue();
|
|
295
|
-
output.textContent = `Current value: "${value}"`;
|
|
296
|
-
}) as EventListener);
|
|
297
|
-
|
|
298
|
-
// Also track focus/blur events
|
|
299
|
-
dynamicInput.addEventListener('focus', () => {
|
|
300
|
-
console.log('Input focused');
|
|
301
|
-
});
|
|
302
|
-
|
|
303
|
-
dynamicInput.addEventListener('blur', () => {
|
|
304
|
-
console.log('Input blurred');
|
|
305
|
-
});
|
|
306
|
-
|
|
307
|
-
// Track keypress events
|
|
308
|
-
let keypressCount = 0;
|
|
309
|
-
dynamicInput.addEventListener('keydown', () => {
|
|
310
|
-
keypressCount++;
|
|
311
|
-
console.log(`Keypress count: ${keypressCount}`);
|
|
291
|
+
dynamicInput.changeSubject.subscribe(() => {
|
|
292
|
+
output.textContent = `Current value: "${dynamicInput.getValue()}"`;
|
|
312
293
|
});
|
|
313
294
|
}
|
|
314
295
|
}}>
|
|
315
|
-
<dees-panel .title=${'Interactive Example'} .subtitle=${'Try typing in the
|
|
316
|
-
<dees-input-text
|
|
317
|
-
.label=${'Dynamic Input'}
|
|
296
|
+
<dees-panel .title=${'Interactive Example'} .subtitle=${'Try typing in the input to see real-time value changes'}>
|
|
297
|
+
<dees-input-text
|
|
298
|
+
.label=${'Dynamic Input'}
|
|
318
299
|
.placeholder=${'Type something here...'}
|
|
319
300
|
></dees-input-text>
|
|
320
|
-
|
|
301
|
+
|
|
321
302
|
<div class="interactive-section">
|
|
322
303
|
<div id="text-input-output" class="output-text">Current value: ""</div>
|
|
323
304
|
</div>
|
|
@@ -100,11 +100,7 @@ export class DeesTile extends DeesElement {
|
|
|
100
100
|
border-radius: 8px;
|
|
101
101
|
border-top: 1px solid var(--dees-color-border-subtle);
|
|
102
102
|
border-bottom: 1px solid var(--dees-color-border-subtle);
|
|
103
|
-
overflow
|
|
104
|
-
overflow-y: auto;
|
|
105
|
-
overscroll-behavior: contain;
|
|
106
|
-
scrollbar-width: thin;
|
|
107
|
-
scrollbar-color: var(--dees-color-scrollbar-thumb) transparent;
|
|
103
|
+
overflow: hidden;
|
|
108
104
|
}
|
|
109
105
|
|
|
110
106
|
.tile-content.no-footer {
|
|
@@ -153,6 +153,14 @@ export class DeesModal extends DeesElement {
|
|
|
153
153
|
overscroll-behavior: contain;
|
|
154
154
|
}
|
|
155
155
|
|
|
156
|
+
dees-tile::part(content) {
|
|
157
|
+
overflow-x: hidden;
|
|
158
|
+
overflow-y: auto;
|
|
159
|
+
overscroll-behavior: contain;
|
|
160
|
+
scrollbar-width: thin;
|
|
161
|
+
scrollbar-color: var(--dees-color-scrollbar-thumb) transparent;
|
|
162
|
+
}
|
|
163
|
+
|
|
156
164
|
dees-tile::part(outer) {
|
|
157
165
|
box-shadow:
|
|
158
166
|
0 0 0 1px ${cssManager.bdTheme('hsl(0 0% 0% / 0.03)', 'hsl(0 0% 100% / 0.03)')},
|