Compare commits

..

20 Commits

Author SHA1 Message Date
997520f3ba v2.0.0
Some checks failed
Default (tags) / security (push) Failing after 20s
Default (tags) / test (push) Failing after 12s
Default (tags) / release (push) Has been skipped
Default (tags) / metadata (push) Has been skipped
2025-11-17 13:27:12 +00:00
92f69e2aa6 BREAKING CHANGE(decorators): Migrate to TC39 standard decorators (accessor) across components, update tsconfig and bump dependencies 2025-11-17 13:27:11 +00:00
70c29c778c 1.12.6
Some checks failed
Default (tags) / security (push) Failing after 26s
Default (tags) / test (push) Failing after 17s
Default (tags) / release (push) Has been skipped
Default (tags) / metadata (push) Has been skipped
2025-10-23 23:46:40 +00:00
0fc302699e fix(dependencies): Bump FontAwesome to ^7.1.0 2025-10-23 23:46:40 +00:00
dcb7ca2df3 1.12.5
Some checks failed
Default (tags) / security (push) Failing after 28s
Default (tags) / test (push) Failing after 15s
Default (tags) / release (push) Has been skipped
Default (tags) / metadata (push) Has been skipped
2025-09-23 20:26:55 +00:00
ccbb0415e4 fix(ci): Add local permissions settings for development 2025-09-23 20:26:55 +00:00
496f54cedd feat(dees-pdf-viewer): add toggle button for sidebar visibility and enhance thumbnail re-rendering logic 2025-09-23 19:43:51 +00:00
83b5ecebeb feat(dees-pdf-viewer): update styles to improve layout with full height and hidden overflow 2025-09-20 22:09:11 +00:00
53b5cbed07 feat(dees-pdf-viewer): optimize thumbnail rendering and styles for improved layout and responsiveness 2025-09-20 22:07:41 +00:00
352fe79791 feat(dees-pdf-viewer): improve scrolling behavior and styles for better user experience 2025-09-20 22:03:47 +00:00
a95d5a96a0 feat(dees-pdf-viewer): add functionality to scroll thumbnail into view when sidebar is visible 2025-09-20 22:00:40 +00:00
ece7bb9a94 feat(dees-pdf-viewer): enhance page rendering and scrolling behavior with new data structure and styles 2025-09-20 21:56:23 +00:00
d42859b7b2 1.12.4
Some checks failed
Default (tags) / security (push) Failing after 23s
Default (tags) / test (push) Failing after 13s
Default (tags) / release (push) Has been skipped
Default (tags) / metadata (push) Has been skipped
2025-09-20 21:52:27 +00:00
f5655ad20b fix(ci): Add local assistant settings to enable permitted dev tooling commands 2025-09-20 21:52:27 +00:00
d3463f009b feat(dees-pdf-preview): enhance A4 format detection and improve canvas rendering quality 2025-09-20 21:46:52 +00:00
bb883ce341 feat(dees-pdf-preview): enhance hover functionality and page indicator display
feat(dees-pdf-viewer): improve input handling and remove unused variables
2025-09-20 21:36:04 +00:00
d9703d3ce3 feat: Update PDF components to improve rendering performance and manage document lifecycle without caching 2025-09-20 21:28:43 +00:00
7b5ba74d8b feat: Add context menu functionality for PDF components with options to view, copy URL, and download 2025-09-20 11:54:37 +00:00
a61f57db13 feat: Add PDF viewer and preview components with styling and functionality
- Implemented DeesPdfViewer for full-featured PDF viewing with toolbar and sidebar navigation.
- Created DeesPdfPreview for lightweight PDF previews.
- Introduced PdfManager for managing PDF document loading and caching.
- Added CanvasPool for efficient canvas management.
- Developed utility functions for performance monitoring and file size formatting.
- Established styles for viewer and preview components to enhance UI/UX.
- Included demo examples for showcasing PDF viewer capabilities.
2025-09-20 11:42:22 +00:00
c33ad2e405 fix(dees-input-fileupload): reorder baseStyles import for consistent styling application 2025-09-19 18:23:45 +00:00
88 changed files with 4840 additions and 1951 deletions

View File

@@ -1,5 +1,35 @@
# Changelog # Changelog
## 2025-11-17 - 2.0.0 - BREAKING CHANGE(decorators)
Migrate to TC39 standard decorators (accessor) across components, update tsconfig and bump dependencies
- Replaced experimental decorator-backed class fields with the TC39-compatible "accessor" form across ~69 web component files (properties and state fields) to follow Lit 3.x recommendations.
- Updated tsconfig.json to remove experimentalDecorators and useDefineForClassFields, aligning compiler settings with the standard decorators migration.
- Fixed optional/nullable fields to explicit `Type | undefined = undefined` where necessary to preserve runtime behavior and typing.
- Adjusted/remove usages of some non-reactive decorators/@query patterns to be compatible with the new decorator model (notable changes in a few components).
- Bumped several dependencies and devDependencies (examples: @design.estate/dees-domtools, @design.estate/dees-element, @design.estate/dees-wcctools, @git.zone/tsbuild, @git.zone/tstest, apexcharts, lucide).
- Added migration notes and testing summary to readme.hints.md documenting the TC39 decorators migration and verification steps.
## 2025-10-23 - 1.12.6 - fix(dependencies)
Bump FontAwesome to ^7.1.0 and add local claude settings
- Updated @fortawesome packages (@fortawesome/fontawesome-svg-core, @fortawesome/free-brands-svg-icons, @fortawesome/free-regular-svg-icons, @fortawesome/free-solid-svg-icons) to ^7.1.0 in package.json
- Added .claude/settings.local.json to configure local Claude/tooling permissions for repository operations
## 2025-09-23 - 1.12.5 - fix(ci)
Add local permissions settings for development
- Adds a new local settings file: .claude/settings.local.json
- Provides explicit permission entries for development tasks (allow running pnpm scripts, reading files, searching/replacing patterns, activating project, and helper tooling)
- Intended for local dev environment to enable tool automation without changing repository code
## 2025-09-20 - 1.12.4 - fix(ci)
Add local assistant settings to enable permitted dev tooling commands
- Add a local assistant settings file to configure allowed development tooling commands.
- Allows running pnpm scripts, file read/search/replace operations and other local project helper actions.
- Local configuration only — does not change library code or public API.
## 2025-09-19 - 1.12.3 - fix(dees-input-fileupload) ## 2025-09-19 - 1.12.3 - fix(dees-input-fileupload)
Show selected files inside dropzone and improve file upload UX Show selected files inside dropzone and improve file upload UX

View File

@@ -1,6 +1,6 @@
{ {
"name": "@design.estate/dees-catalog", "name": "@design.estate/dees-catalog",
"version": "1.12.3", "version": "2.0.0",
"private": false, "private": false,
"description": "A comprehensive library that provides dynamic web components for building sophisticated and modern web applications using JavaScript and TypeScript.", "description": "A comprehensive library that provides dynamic web components for building sophisticated and modern web applications using JavaScript and TypeScript.",
"main": "dist_ts_web/index.js", "main": "dist_ts_web/index.js",
@@ -16,13 +16,13 @@
"author": "Lossless GmbH", "author": "Lossless GmbH",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@design.estate/dees-domtools": "^2.3.3", "@design.estate/dees-domtools": "^2.3.6",
"@design.estate/dees-element": "^2.1.2", "@design.estate/dees-element": "^2.1.3",
"@design.estate/dees-wcctools": "^1.2.0", "@design.estate/dees-wcctools": "^1.2.1",
"@fortawesome/fontawesome-svg-core": "^7.0.1", "@fortawesome/fontawesome-svg-core": "^7.1.0",
"@fortawesome/free-brands-svg-icons": "^7.0.1", "@fortawesome/free-brands-svg-icons": "^7.1.0",
"@fortawesome/free-regular-svg-icons": "^7.0.1", "@fortawesome/free-regular-svg-icons": "^7.1.0",
"@fortawesome/free-solid-svg-icons": "^7.0.1", "@fortawesome/free-solid-svg-icons": "^7.1.0",
"@push.rocks/smarti18n": "^1.0.4", "@push.rocks/smarti18n": "^1.0.4",
"@push.rocks/smartpromise": "^4.2.0", "@push.rocks/smartpromise": "^4.2.0",
"@push.rocks/smartstring": "^4.1.0", "@push.rocks/smartstring": "^4.1.0",
@@ -32,21 +32,22 @@
"@tiptap/extension-typography": "^2.23.0", "@tiptap/extension-typography": "^2.23.0",
"@tiptap/extension-underline": "^2.23.0", "@tiptap/extension-underline": "^2.23.0",
"@tiptap/starter-kit": "^2.23.0", "@tiptap/starter-kit": "^2.23.0",
"@tsclass/tsclass": "^9.2.0", "@tsclass/tsclass": "^9.3.0",
"@webcontainer/api": "1.2.0", "@webcontainer/api": "1.2.0",
"apexcharts": "^5.3.5", "apexcharts": "^5.3.6",
"highlight.js": "11.11.1", "highlight.js": "11.11.1",
"ibantools": "^4.5.1", "ibantools": "^4.5.1",
"lucide": "^0.544.0", "lit": "^3.3.1",
"lucide": "^0.553.0",
"monaco-editor": "0.52.2", "monaco-editor": "0.52.2",
"pdfjs-dist": "^4.10.38", "pdfjs-dist": "^4.10.38",
"xterm": "^5.3.0", "xterm": "^5.3.0",
"xterm-addon-fit": "^0.8.0" "xterm-addon-fit": "^0.8.0"
}, },
"devDependencies": { "devDependencies": {
"@git.zone/tsbuild": "^2.6.8", "@git.zone/tsbuild": "^3.1.0",
"@git.zone/tsbundle": "^2.5.1", "@git.zone/tsbundle": "^2.5.2",
"@git.zone/tstest": "^2.3.8", "@git.zone/tstest": "^2.8.1",
"@git.zone/tswatch": "^2.2.1", "@git.zone/tswatch": "^2.2.1",
"@push.rocks/projectinfo": "^5.0.2", "@push.rocks/projectinfo": "^5.0.2",
"@push.rocks/tapbundle": "^6.0.3", "@push.rocks/tapbundle": "^6.0.3",

3249
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@@ -604,4 +604,80 @@ import { zIndexLayers } from './00zindex.js';
z-index: ${zIndexLayers.overlay.modal}; z-index: ${zIndexLayers.overlay.modal};
``` ```
This system ensures proper stacking order for all overlay components and prevents z-index conflicts. This system ensures proper stacking order for all overlay components and prevents z-index conflicts.
## TC39 Standard Decorators Migration (2025-01-17)
Successfully migrated from experimental TypeScript decorators to standard TC39 decorators as recommended by Lit 3.x documentation.
### Migration Overview:
#### 1. Changes Made:
- **Added `accessor` keyword** to all `@property` and `@state` decorated fields across 69 component files
- **Updated tsconfig.json**: Removed `experimentalDecorators: true` and `useDefineForClassFields: false`
- **Fixed optional properties**: Changed `accessor prop?: Type` to `accessor prop: Type | undefined = undefined`
- **Removed incompatible decorators**: Removed `@query` and non-reactive `@state` decorators from regular fields
#### 2. Key Pattern Changes:
**Before (Experimental Decorators):**
```typescript
@property({ type: String })
public value: string = '';
@property({ type: Boolean })
public disabled?: boolean;
```
**After (Standard TC39 Decorators):**
```typescript
@property({ type: String })
accessor value: string = '';
@property({ type: Boolean })
accessor disabled: boolean | undefined = undefined;
```
#### 3. Important Rules:
- **@property and @state**: MUST use `accessor` keyword for reactive properties
- **@query decorators**: Should NOT use `accessor` (they work with regular fields)
- **Optional properties**: Cannot use `?` syntax with accessor, must use `| undefined = undefined`
- **Private fields**: Non-reactive private fields should not use decorators
#### 4. TypeScript Configuration:
```json
{
"compilerOptions": {
"target": "ES2022",
"module": "NodeNext",
"moduleResolution": "NodeNext"
}
}
```
Note: `experimentalDecorators` defaults to false, and `useDefineForClassFields` defaults to true with ES2022 target.
#### 5. Build Results:
- ✅ Build successful with standard decorators
- ✅ Tests passing (7/8 - same as before migration)
- ✅ No bundle size changes reported
- ✅ All components working correctly
#### 6. Files Modified:
- 69 component files with decorator updates
- 16 files with optional property fixes
- 3 files with @query decorator removals
- tsconfig.json configuration update
### Why This Migration:
According to Lit's documentation (https://lit.dev/docs/components/decorators/#decorator-versions):
- TC39 standard decorators are the future-proof approach
- Provides better TypeScript integration
- Aligns with JavaScript specification
- While bundle sizes are slightly larger, the standardization benefits outweigh this
### Testing:
- All unit tests passing
- Manual testing of key components verified
- No regressions detected
- Focus management and interactions working correctly

Binary file not shown.

View File

@@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@design.estate/dees-catalog', name: '@design.estate/dees-catalog',
version: '1.12.3', version: '2.0.0',
description: 'A comprehensive library that provides dynamic web components for building sophisticated and modern web applications using JavaScript and TypeScript.' description: 'A comprehensive library that provides dynamic web components for building sophisticated and modern web applications using JavaScript and TypeScript.'
} }

View File

@@ -31,47 +31,47 @@ export class DeesAppuiBar extends DeesElement {
// INSTANCE PROPERTIES // INSTANCE PROPERTIES
@property({ type: Array }) @property({ type: Array })
public menuItems: interfaces.IAppBarMenuItem[] = []; accessor menuItems: interfaces.IAppBarMenuItem[] = [];
@property({ type: String }) @property({ type: String })
public breadcrumbs: string = ''; accessor breadcrumbs: string = '';
@property({ type: String }) @property({ type: String })
public breadcrumbSeparator: string = ' > '; accessor breadcrumbSeparator: string = ' > ';
@property({ type: Boolean }) @property({ type: Boolean })
public showWindowControls: boolean = true; accessor showWindowControls: boolean = true;
@property({ type: Object }) @property({ type: Object })
public user?: { accessor user: {
name: string; name: string;
email?: string; email?: string;
avatar?: string; avatar?: string;
status?: 'online' | 'offline' | 'busy' | 'away'; status?: 'online' | 'offline' | 'busy' | 'away';
}; } | undefined = undefined;
@property({ type: Array }) @property({ type: Array })
public profileMenuItems: (plugins.tsclass.website.IMenuItem & { shortcut?: string } | { divider: true })[] = []; accessor profileMenuItems: (plugins.tsclass.website.IMenuItem & { shortcut?: string } | { divider: true })[] = [];
@property({ type: Boolean }) @property({ type: Boolean })
public showSearch: boolean = false; accessor showSearch: boolean = false;
// STATE // STATE
@state() @state()
private activeMenu: string | null = null; accessor activeMenu: string | null = null;
@state() @state()
private openDropdowns: Set<string> = new Set(); accessor openDropdowns: Set<string> = new Set();
@state() @state()
private focusedItem: string | null = null; accessor focusedItem: string | null = null;
@state() @state()
private focusedDropdownItem: number = -1; accessor focusedDropdownItem: number = -1;
@state() @state()
private isProfileDropdownOpen: boolean = false; accessor isProfileDropdownOpen: boolean = false;
public static styles = appuiAppbarStyles; public static styles = appuiAppbarStyles;

View File

@@ -30,65 +30,65 @@ export class DeesAppuiBase extends DeesElement {
// Properties for appbar // Properties for appbar
@property({ type: Array }) @property({ type: Array })
public appbarMenuItems: interfaces.IAppBarMenuItem[] = []; accessor appbarMenuItems: interfaces.IAppBarMenuItem[] = [];
@property({ type: String }) @property({ type: String })
public appbarBreadcrumbs: string = ''; accessor appbarBreadcrumbs: string = '';
@property({ type: String }) @property({ type: String })
public appbarBreadcrumbSeparator: string = ' > '; accessor appbarBreadcrumbSeparator: string = ' > ';
@property({ type: Boolean }) @property({ type: Boolean })
public appbarShowWindowControls: boolean = true; accessor appbarShowWindowControls: boolean = true;
@property({ type: Object }) @property({ type: Object })
public appbarUser?: { accessor appbarUser: {
name: string; name: string;
email?: string; email?: string;
avatar?: string; avatar?: string;
status?: 'online' | 'offline' | 'busy' | 'away'; status?: 'online' | 'offline' | 'busy' | 'away';
}; } | undefined = undefined;
@property({ type: Array }) @property({ type: Array })
public appbarProfileMenuItems: (plugins.tsclass.website.IMenuItem & { shortcut?: string } | { divider: true })[] = []; accessor appbarProfileMenuItems: (plugins.tsclass.website.IMenuItem & { shortcut?: string } | { divider: true })[] = [];
@property({ type: Boolean }) @property({ type: Boolean })
public appbarShowSearch: boolean = false; accessor appbarShowSearch: boolean = false;
// Properties for mainmenu // Properties for mainmenu
@property({ type: Array }) @property({ type: Array })
public mainmenuTabs: interfaces.ITab[] = []; accessor mainmenuTabs: interfaces.ITab[] = [];
@property({ type: Object }) @property({ type: Object })
public mainmenuSelectedTab?: interfaces.ITab; accessor mainmenuSelectedTab: interfaces.ITab | undefined = undefined;
// Properties for mainselector // Properties for mainselector
@property({ type: Array }) @property({ type: Array })
public mainselectorOptions: (interfaces.ISelectionOption | { divider: true })[] = []; accessor mainselectorOptions: (interfaces.ISelectionOption | { divider: true })[] = [];
@property({ type: Object }) @property({ type: Object })
public mainselectorSelectedOption?: interfaces.ISelectionOption; accessor mainselectorSelectedOption: interfaces.ISelectionOption | undefined = undefined;
// Properties for maincontent // Properties for maincontent
@property({ type: Array }) @property({ type: Array })
public maincontentTabs: interfaces.ITab[] = []; accessor maincontentTabs: interfaces.ITab[] = [];
// References to child components // References to child components
@state() @state()
public appbar?: DeesAppuiBar; accessor appbar: DeesAppuiBar | undefined = undefined;
@state() @state()
public mainmenu?: DeesAppuiMainmenu; accessor mainmenu: DeesAppuiMainmenu | undefined = undefined;
@state() @state()
public mainselector?: DeesAppuiMainselector; accessor mainselector: DeesAppuiMainselector | undefined = undefined;
@state() @state()
public maincontent?: DeesAppuiMaincontent; accessor maincontent: DeesAppuiMaincontent | undefined = undefined;
@state() @state()
public activitylog?: DeesAppuiActivitylog; accessor activitylog: DeesAppuiActivitylog | undefined = undefined;
public static styles = [ public static styles = [
cssManager.defaultStyles, cssManager.defaultStyles,

View File

@@ -35,12 +35,12 @@ export class DeesAppuiMaincontent extends DeesElement {
@property({ @property({
type: Array, type: Array,
}) })
public tabs: interfaces.ITab[] = [ accessor tabs: interfaces.ITab[] = [
{ key: '⚠️ Please set tabs', action: () => console.warn('No tabs configured for maincontent') }, { key: '⚠️ Please set tabs', action: () => console.warn('No tabs configured for maincontent') },
]; ];
@property({ type: Object }) @property({ type: Object })
public selectedTab: interfaces.ITab | null = null; accessor selectedTab: interfaces.ITab | null = null;
public static styles = [ public static styles = [
cssManager.defaultStyles, cssManager.defaultStyles,

View File

@@ -34,12 +34,12 @@ export class DeesAppuiMainmenu extends DeesElement {
// INSTANCE // INSTANCE
@property({ type: Array }) @property({ type: Array })
public tabs: interfaces.ITab[] = [ accessor tabs: interfaces.ITab[] = [
{ key: '⚠️ Please set tabs', iconName: 'lucide:alertTriangle', action: () => console.warn('No tabs configured for mainmenu') }, { key: '⚠️ Please set tabs', iconName: 'lucide:alertTriangle', action: () => console.warn('No tabs configured for mainmenu') },
]; ];
@property() @property()
public selectedTab: interfaces.ITab; accessor selectedTab: interfaces.ITab;
public static styles = [ public static styles = [
cssManager.defaultStyles, cssManager.defaultStyles,

View File

@@ -34,12 +34,12 @@ export class DeesAppuiMainselector extends DeesElement {
// INSTANCE // INSTANCE
@property({ type: Array }) @property({ type: Array })
public selectionOptions: (interfaces.ISelectionOption | { divider: true })[] = [ accessor selectionOptions: (interfaces.ISelectionOption | { divider: true })[] = [
{ key: '⚠️ Please set selection options', action: () => console.warn('No selection options configured for mainselector') }, { key: '⚠️ Please set selection options', action: () => console.warn('No selection options configured for mainselector') },
]; ];
@property() @property()
public selectedOption: interfaces.ISelectionOption = null; accessor selectedOption: interfaces.ISelectionOption = null;
public static styles = [ public static styles = [
cssManager.defaultStyles, cssManager.defaultStyles,

View File

@@ -36,21 +36,21 @@ export class DeesAppuiProfileDropdown extends DeesElement {
`; `;
@property({ type: Object }) @property({ type: Object })
public user?: { accessor user: {
name: string; name: string;
email?: string; email?: string;
avatar?: string; avatar?: string;
status?: 'online' | 'offline' | 'busy' | 'away'; status?: 'online' | 'offline' | 'busy' | 'away';
}; } | undefined = undefined;
@property({ type: Array }) @property({ type: Array })
public menuItems: (plugins.tsclass.website.IMenuItem & { shortcut?: string } | { divider: true })[] = []; accessor menuItems: (plugins.tsclass.website.IMenuItem & { shortcut?: string } | { divider: true })[] = [];
@property({ type: Boolean, reflect: true }) @property({ type: Boolean, reflect: true })
public isOpen: boolean = false; accessor isOpen: boolean = false;
@property({ type: String }) @property({ type: String })
public position: 'top-right' | 'top-left' | 'bottom-right' | 'bottom-left' = 'top-right'; accessor position: 'top-right' | 'top-left' | 'bottom-right' | 'bottom-left' = 'top-right';
public static styles = [ public static styles = [
cssManager.defaultStyles, cssManager.defaultStyles,

View File

@@ -107,16 +107,16 @@ export class DeesAppuiTabs extends DeesElement {
@property({ @property({
type: Array, type: Array,
}) })
public tabs: interfaces.ITab[] = []; accessor tabs: interfaces.ITab[] = [];
@property({ type: Object }) @property({ type: Object })
public selectedTab: interfaces.ITab | null = null; accessor selectedTab: interfaces.ITab | null = null;
@property({ type: Boolean }) @property({ type: Boolean })
public showTabIndicator: boolean = true; accessor showTabIndicator: boolean = true;
@property({ type: String }) @property({ type: String })
public tabStyle: 'horizontal' | 'vertical' = 'horizontal'; accessor tabStyle: 'horizontal' | 'vertical' = 'horizontal';
public static styles = [ public static styles = [
cssManager.defaultStyles, cssManager.defaultStyles,

View File

@@ -60,13 +60,13 @@ export class DeesAppuiView extends DeesElement {
// INSTANCE // INSTANCE
@property({ type: Object }) @property({ type: Object })
public viewConfig: IAppView; accessor viewConfig: IAppView;
@state() @state()
private selectedTab: IAppViewTab | null = null; accessor selectedTab: IAppViewTab | null = null;
@state() @state()
private tabs: DeesAppuiTabs; accessor tabs: DeesAppuiTabs;
public static styles = [ public static styles = [
cssManager.defaultStyles, cssManager.defaultStyles,

View File

@@ -23,13 +23,13 @@ export class DeesBadge extends DeesElement {
public static demo = demoFunc; public static demo = demoFunc;
@property({ type: String }) @property({ type: String })
public type: 'default' | 'primary' | 'success' | 'warning' | 'error' = 'default'; accessor type: 'default' | 'primary' | 'success' | 'warning' | 'error' = 'default';
@property({ type: String }) @property({ type: String })
public text: string = ''; accessor text: string = '';
@property({ type: Boolean }) @property({ type: Boolean })
public rounded: boolean = false; accessor rounded: boolean = false;
constructor() { constructor() {
super(); super();

View File

@@ -21,7 +21,7 @@ export class DeesButtonExit extends DeesElement {
@property({ @property({
type: Number type: Number
}) })
public size: number = 24; accessor size: number = 24;
public styles = [ public styles = [
cssManager.defaultStyles, cssManager.defaultStyles,

View File

@@ -22,10 +22,10 @@ export class DeesButtonGroup extends DeesElement {
public static demo = demoFunc; public static demo = demoFunc;
@property() @property()
public label: string = ''; accessor label: string = '';
@property() @property()
public direction: 'horizontal' | 'vertical' = 'horizontal'; accessor direction: 'horizontal' | 'vertical' = 'horizontal';
constructor() { constructor() {
super(); super();

View File

@@ -29,42 +29,42 @@ export class DeesButton extends DeesElement {
return true; return true;
} }
}) })
public text: string; accessor text: string;
@property() @property()
public eventDetailData: string; accessor eventDetailData: string;
@property({ @property({
type: Boolean, type: Boolean,
reflect: true, reflect: true,
}) })
public disabled = false; accessor disabled = false;
@property({ @property({
type: Boolean type: Boolean
}) })
public isHidden = false; accessor isHidden = false;
@property({ @property({
type: String type: String
}) })
public type: 'default' | 'destructive' | 'outline' | 'secondary' | 'ghost' | 'link' | 'normal' | 'highlighted' | 'discreet' | 'big' = 'default'; accessor type: 'default' | 'destructive' | 'outline' | 'secondary' | 'ghost' | 'link' | 'normal' | 'highlighted' | 'discreet' | 'big' = 'default';
@property({
type: String
})
public size: 'default' | 'sm' | 'lg' | 'icon' = 'default';
@property({ @property({
type: String type: String
}) })
public status: 'normal' | 'pending' | 'success' | 'error' = 'normal'; accessor size: 'default' | 'sm' | 'lg' | 'icon' = 'default';
@property({
type: String
})
accessor status: 'normal' | 'pending' | 'success' | 'error' = 'normal';
@property({ @property({
type: Boolean, type: Boolean,
reflect: true reflect: true
}) })
public insideForm: boolean = false; accessor insideForm: boolean = false;
constructor() { constructor() {
super(); super();

View File

@@ -25,36 +25,36 @@ export class DeesChartArea extends DeesElement {
// instance // instance
@state() @state()
public chart: ApexCharts; accessor chart: ApexCharts;
@property() @property()
public label: string = 'Untitled Chart'; accessor label: string = 'Untitled Chart';
@property({ type: Array }) @property({ type: Array })
public series: ApexAxisChartSeries = []; accessor series: ApexAxisChartSeries = [];
// Override getter to return internal chart data // Override getter to return internal chart data
get chartSeries(): ApexAxisChartSeries { get chartSeries(): ApexAxisChartSeries {
return this.internalChartData.length > 0 ? this.internalChartData : this.series; return this.internalChartData.length > 0 ? this.internalChartData : this.series;
} }
@property({ attribute: false }) @property({ attribute: false })
public yAxisFormatter: (value: number) => string = (val) => `${val} Mbps`; accessor yAxisFormatter: (value: number) => string = (val) => `${val} Mbps`;
@property({ type: Number }) @property({ type: Number })
public rollingWindow: number = 0; // 0 means no rolling window accessor rollingWindow: number = 0; // 0 means no rolling window
@property({ type: Boolean }) @property({ type: Boolean })
public realtimeMode: boolean = false; accessor realtimeMode: boolean = false;
@property({ type: String }) @property({ type: String })
public yAxisScaling: 'fixed' | 'dynamic' | 'percentage' = 'dynamic'; accessor yAxisScaling: 'fixed' | 'dynamic' | 'percentage' = 'dynamic';
@property({ type: Number }) @property({ type: Number })
public yAxisMax: number = 100; // Used when yAxisScaling is 'fixed' or 'percentage' accessor yAxisMax: number = 100; // Used when yAxisScaling is 'fixed' or 'percentage'
@property({ type: Number }) @property({ type: Number })
public autoScrollInterval: number = 1000; // Auto-scroll interval in milliseconds (0 to disable) accessor autoScrollInterval: number = 1000; // Auto-scroll interval in milliseconds (0 to disable)
private resizeObserver: ResizeObserver; private resizeObserver: ResizeObserver;
private resizeTimeout: number; private resizeTimeout: number;

View File

@@ -30,16 +30,16 @@ export class DeesChartLog extends DeesElement {
public static demo = demoFunc; public static demo = demoFunc;
@property() @property()
public label: string = 'Server Logs'; accessor label: string = 'Server Logs';
@property({ type: Array }) @property({ type: Array })
public logEntries: ILogEntry[] = []; accessor logEntries: ILogEntry[] = [];
@property({ type: Boolean }) @property({ type: Boolean })
public autoScroll: boolean = true; accessor autoScroll: boolean = true;
@property({ type: Number }) @property({ type: Number })
public maxEntries: number = 1000; accessor maxEntries: number = 1000;
private logContainer: HTMLDivElement; private logContainer: HTMLDivElement;

View File

@@ -26,25 +26,25 @@ export class DeesChips extends DeesElement {
public static demo = demoFunc; public static demo = demoFunc;
@property() @property()
public selectionMode: 'none' | 'single' | 'multiple' = 'single'; accessor selectionMode: 'none' | 'single' | 'multiple' = 'single';
@property({ @property({
type: Boolean, type: Boolean,
}) })
public chipsAreRemovable: boolean = false; accessor chipsAreRemovable: boolean = false;
@property({ @property({
type: Array, type: Array,
}) })
public selectableChips: Tag[] = []; accessor selectableChips: Tag[] = [];
@property() @property()
public selectedChip: Tag = null; accessor selectedChip: Tag = null;
@property({ @property({
type: Array, type: Array,
}) })
public selectedChips: Tag[] = []; accessor selectedChips: Tag[] = [];
constructor() { constructor() {
super(); super();

View File

@@ -127,7 +127,7 @@ export class DeesContextmenu extends DeesElement {
@property({ @property({
type: Array, type: Array,
}) })
public menuItems: (plugins.tsclass.website.IMenuItem & { shortcut?: string; disabled?: boolean; submenu?: (plugins.tsclass.website.IMenuItem & { shortcut?: string; disabled?: boolean } | { divider: true })[]; divider?: never } | { divider: true })[] = []; accessor menuItems: (plugins.tsclass.website.IMenuItem & { shortcut?: string; disabled?: boolean; submenu?: (plugins.tsclass.website.IMenuItem & { shortcut?: string; disabled?: boolean } | { divider: true })[]; divider?: never } | { divider: true })[] = [];
windowLayer: DeesWindowLayer; windowLayer: DeesWindowLayer;
private submenu: DeesContextmenu | null = null; private submenu: DeesContextmenu | null = null;

View File

@@ -71,49 +71,49 @@ export class DeesDashboardgrid extends DeesElement {
public static styles = dashboardGridStyles; public static styles = dashboardGridStyles;
@property({ type: Array }) @property({ type: Array })
public widgets: DashboardWidget[] = []; accessor widgets: DashboardWidget[] = [];
@property({ type: Number }) @property({ type: Number })
public cellHeight: number = 80; accessor cellHeight: number = 80;
@property({ type: Object }) @property({ type: Object })
public margin: DashboardMargin = 10; accessor margin: DashboardMargin = 10;
@property({ type: Number }) @property({ type: Number })
public columns: number = 12; accessor columns: number = 12;
@property({ type: Boolean }) @property({ type: Boolean })
public editable: boolean = true; accessor editable: boolean = true;
@property({ type: Boolean, reflect: true }) @property({ type: Boolean, reflect: true })
public enableAnimation: boolean = true; accessor enableAnimation: boolean = true;
@property({ type: String }) @property({ type: String })
public cellHeightUnit: CellHeightUnit = 'px'; accessor cellHeightUnit: CellHeightUnit = 'px';
@property({ type: Boolean }) @property({ type: Boolean })
public rtl: boolean = false; accessor rtl: boolean = false;
@property({ type: Boolean }) @property({ type: Boolean })
public showGridLines: boolean = false; accessor showGridLines: boolean = false;
@property({ attribute: false }) @property({ attribute: false })
public layouts?: Record<string, DashboardLayoutItem[]>; accessor layouts: Record<string, DashboardLayoutItem[]> | undefined = undefined;
@property({ type: String }) @property({ type: String })
public activeBreakpoint: string = 'base'; accessor activeBreakpoint: string = 'base';
@state() @state()
private placeholderPosition: DashboardLayoutItem | null = null; accessor placeholderPosition: DashboardLayoutItem | null = null;
@state() @state()
private metrics: GridCellMetrics | null = null; accessor metrics: GridCellMetrics | null = null;
@state() @state()
private resolvedMargins: DashboardResolvedMargins | null = null; accessor resolvedMargins: DashboardResolvedMargins | null = null;
@state() @state()
private previewWidgets: DashboardWidget[] | null = null; accessor previewWidgets: DashboardWidget[] | null = null;
private containerBounds: DOMRect | null = null; private containerBounds: DOMRect | null = null;
private dragState: DragState | null = null; private dragState: DragState | null = null;

View File

@@ -28,13 +28,13 @@ export class DeesDataviewCodebox extends DeesElement {
public static demo = demoFunc; public static demo = demoFunc;
@property() @property()
public progLang: string = 'typescript'; accessor progLang: string = 'typescript';
@property({ @property({
type: String, type: String,
reflect: true, reflect: true,
}) })
public codeToDisplay: string = ''; accessor codeToDisplay: string = '';
constructor() { constructor() {
super(); super();
@@ -228,7 +228,6 @@ export class DeesDataviewCodebox extends DeesElement {
`; `;
} }
@state()
private codeToDisplayStore = ''; private codeToDisplayStore = '';
public async updated(_changedProperties) { public async updated(_changedProperties) {

View File

@@ -27,7 +27,7 @@ declare global {
export class DeesDataviewStatusobject extends DeesElement { export class DeesDataviewStatusobject extends DeesElement {
public static demo = demoFunc; public static demo = demoFunc;
@property({ type: Object }) statusObject: tsclass.code.IStatusObject; @property({ type: Object }) accessor statusObject: tsclass.code.IStatusObject;
public static styles = [ public static styles = [
cssManager.defaultStyles, cssManager.defaultStyles,

View File

@@ -33,17 +33,17 @@ export class DeesEditor extends DeesElement {
@property({ @property({
type: String type: String
}) })
public content = "function hello() {\n\talert('Hello world!');\n}"; accessor content = "function hello() {\n\talert('Hello world!');\n}";
@property({ @property({
type: Object type: Object
}) })
public contentSubject = new domtools.plugins.smartrx.rxjs.Subject<string>(); accessor contentSubject = new domtools.plugins.smartrx.rxjs.Subject<string>();
@property({ @property({
type: Boolean type: Boolean
}) })
public wordWrap: monaco.editor.IStandaloneEditorConstructionOptions['wordWrap'] = 'off'; accessor wordWrap: monaco.editor.IStandaloneEditorConstructionOptions['wordWrap'] = 'off';
constructor() { constructor() {
super(); super();

View File

@@ -23,17 +23,17 @@ export class DeesFormSubmit extends DeesElement {
type: Boolean, type: Boolean,
reflect: true, reflect: true,
}) })
public disabled = false; accessor disabled = false;
@property({ @property({
type: String, type: String,
}) })
public text: string; accessor text: string;
@property({ @property({
type: String, type: String,
}) })
public status: 'normal' | 'pending' | 'success' | 'error' = 'normal'; accessor status: 'normal' | 'pending' | 'success' | 'error' = 'normal';
constructor() { constructor() {
super(); super();

View File

@@ -72,7 +72,7 @@ export class DeesForm extends DeesElement {
* When true, sets all child inputs to horizontal layout * When true, sets all child inputs to horizontal layout
*/ */
@property({ type: Boolean, reflect: true, attribute: 'horizontal-layout' }) @property({ type: Boolean, reflect: true, attribute: 'horizontal-layout' })
public horizontalLayout: boolean = false; accessor horizontalLayout: boolean = false;
public render(): TemplateResult { public render(): TemplateResult {
return html` return html`

View File

@@ -28,7 +28,7 @@ export class DeesHeading extends DeesElement {
* Heading level: 1-6 for h1-h6, or 'hr' for horizontal rule style * Heading level: 1-6 for h1-h6, or 'hr' for horizontal rule style
*/ */
@property({ type: String, reflect: true }) @property({ type: String, reflect: true })
public level: '1' | '2' | '3' | '4' | '5' | '6' | 'hr' | 'hr-small' = '1'; accessor level: '1' | '2' | '3' | '4' | '5' | '6' | 'hr' | 'hr-small' = '1';
// STATIC STYLES // STATIC STYLES
public static styles: CSSResult[] = [ public static styles: CSSResult[] = [

View File

@@ -23,7 +23,7 @@ export class DeesHint extends DeesElement {
public static demo = demoFunc; public static demo = demoFunc;
@property({ type: String }) @property({ type: String })
public type: 'info' | 'warn' | 'error' | 'critical' = 'info'; accessor type: 'info' | 'warn' | 'error' | 'critical' = 'info';
constructor() { constructor() {
super(); super();

View File

@@ -190,7 +190,7 @@ export class DeesIcon extends DeesElement {
toAttribute: (value: TIconKey): string => value toAttribute: (value: TIconKey): string => value
} }
}) })
public iconFA?: TIconKey; accessor iconFA: TIconKey | undefined = undefined;
/** /**
* The preferred icon property. Use format "fa:iconName" or "lucide:iconName" * The preferred icon property. Use format "fa:iconName" or "lucide:iconName"
@@ -203,16 +203,16 @@ export class DeesIcon extends DeesElement {
toAttribute: (value: IconWithPrefix): string => value toAttribute: (value: IconWithPrefix): string => value
} }
}) })
public icon?: IconWithPrefix; accessor icon: IconWithPrefix | undefined = undefined;
@property({ type: Number }) @property({ type: Number })
public iconSize: number; accessor iconSize: number;
@property({ type: String }) @property({ type: String })
public color: string = 'currentColor'; accessor color: string = 'currentColor';
@property({ type: Number }) @property({ type: Number })
public strokeWidth: number = 2; accessor strokeWidth: number = 2;
// For tracking when we need to re-render // For tracking when we need to re-render
private lastIcon: IconWithPrefix | TIconKey | null = null; private lastIcon: IconWithPrefix | TIconKey | null = null;

View File

@@ -19,31 +19,31 @@ export abstract class DeesInputBase<T = any> extends DeesElement {
* - auto: Detect from parent context * - auto: Detect from parent context
*/ */
@property({ type: String }) @property({ type: String })
public layoutMode: 'vertical' | 'horizontal' | 'auto' = 'auto'; accessor layoutMode: 'vertical' | 'horizontal' | 'auto' = 'auto';
/** /**
* Position of the label relative to the input * Position of the label relative to the input
*/ */
@property({ type: String }) @property({ type: String })
public labelPosition: 'top' | 'left' | 'right' | 'none' = 'top'; accessor labelPosition: 'top' | 'left' | 'right' | 'none' = 'top';
/** /**
* Common properties for all inputs * Common properties for all inputs
*/ */
@property({ type: String }) @property({ type: String })
public key: string; accessor key: string;
@property({ type: String }) @property({ type: String })
public label: string; accessor label: string;
@property({ type: Boolean }) @property({ type: Boolean })
public required: boolean = false; accessor required: boolean = false;
@property({ type: Boolean }) @property({ type: Boolean })
public disabled: boolean = false; accessor disabled: boolean = false;
@property({ type: String }) @property({ type: String })
public description: string; accessor description: string;
/** /**
* Common styles for all input components * Common styles for all input components

View File

@@ -26,10 +26,10 @@ export class DeesInputCheckbox extends DeesInputBase<DeesInputCheckbox> {
@property({ @property({
type: Boolean, type: Boolean,
}) })
public value: boolean = false; accessor value: boolean = false;
@property({ type: Boolean }) @property({ type: Boolean })
public indeterminate: boolean = false; accessor indeterminate: boolean = false;
constructor() { constructor() {

View File

@@ -24,61 +24,61 @@ export class DeesInputDatepicker extends DeesInputBase<DeesInputDatepicker> {
public static demo = demoFunc; public static demo = demoFunc;
@property({ type: String }) @property({ type: String })
public value: string = ''; accessor value: string = '';
@property({ type: Boolean }) @property({ type: Boolean })
public enableTime: boolean = false; accessor enableTime: boolean = false;
@property({ type: String }) @property({ type: String })
public timeFormat: '24h' | '12h' = '24h'; accessor timeFormat: '24h' | '12h' = '24h';
@property({ type: Number }) @property({ type: Number })
public minuteIncrement: number = 1; accessor minuteIncrement: number = 1;
@property({ type: String }) @property({ type: String })
public dateFormat: string = 'YYYY-MM-DD'; accessor dateFormat: string = 'YYYY-MM-DD';
@property({ type: String }) @property({ type: String })
public minDate: string = ''; accessor minDate: string = '';
@property({ type: String }) @property({ type: String })
public maxDate: string = ''; accessor maxDate: string = '';
@property({ type: Array }) @property({ type: Array })
public disabledDates: string[] = []; accessor disabledDates: string[] = [];
@property({ type: Number }) @property({ type: Number })
public weekStartsOn: 0 | 1 = 1; // Default to Monday accessor weekStartsOn: 0 | 1 = 1; // Default to Monday
@property({ type: String }) @property({ type: String })
public placeholder: string = 'YYYY-MM-DD'; accessor placeholder: string = 'YYYY-MM-DD';
@property({ type: Boolean }) @property({ type: Boolean })
public enableTimezone: boolean = false; accessor enableTimezone: boolean = false;
@property({ type: String }) @property({ type: String })
public timezone: string = Intl.DateTimeFormat().resolvedOptions().timeZone; accessor timezone: string = Intl.DateTimeFormat().resolvedOptions().timeZone;
@property({ type: Array }) @property({ type: Array })
public events: IDateEvent[] = []; accessor events: IDateEvent[] = [];
@state() @state()
public isOpened: boolean = false; accessor isOpened: boolean = false;
@state() @state()
public opensToTop: boolean = false; accessor opensToTop: boolean = false;
@state() @state()
public selectedDate: Date | null = null; accessor selectedDate: Date | null = null;
@state() @state()
public viewDate: Date = new Date(); accessor viewDate: Date = new Date();
@state() @state()
public selectedHour: number = 0; accessor selectedHour: number = 0;
@state() @state()
public selectedMinute: number = 0; accessor selectedMinute: number = 0;
public static styles = datepickerStyles; public static styles = datepickerStyles;

View File

@@ -25,10 +25,10 @@ export class DeesInputDropdown extends DeesInputBase<DeesInputDropdown> {
// INSTANCE // INSTANCE
@property() @property()
public options: { option: string; key: string; payload?: any }[] = []; accessor options: { option: string; key: string; payload?: any }[] = [];
@property() @property()
public selectedOption: { option: string; key: string; payload?: any } = null; accessor selectedOption: { option: string; key: string; payload?: any } = null;
// Add value property for form compatibility // Add value property for form compatibility
public get value() { public get value() {
@@ -42,22 +42,22 @@ export class DeesInputDropdown extends DeesInputBase<DeesInputDropdown> {
@property({ @property({
type: Boolean, type: Boolean,
}) })
public enableSearch: boolean = true; accessor enableSearch: boolean = true;
@state() @state()
public opensToTop: boolean = false; accessor opensToTop: boolean = false;
@state() @state()
private filteredOptions: { option: string; key: string; payload?: any }[] = []; accessor filteredOptions: { option: string; key: string; payload?: any }[] = [];
@state() @state()
private highlightedIndex: number = 0; accessor highlightedIndex: number = 0;
@state() @state()
public isOpened = false; accessor isOpened = false;
@state() @state()
private searchValue: string = ''; accessor searchValue: string = '';
public static styles = [ public static styles = [
...DeesInputBase.baseStyles, ...DeesInputBase.baseStyles,

View File

@@ -23,33 +23,33 @@ export class DeesInputFileupload extends DeesInputBase<DeesInputFileupload> {
public static demo = demoFunc; public static demo = demoFunc;
@property({ attribute: false }) @property({ attribute: false })
public value: File[] = []; accessor value: File[] = [];
@state() @state()
public state: 'idle' | 'dragOver' | 'dropped' | 'uploading' | 'completed' = 'idle'; accessor state: 'idle' | 'dragOver' | 'dropped' | 'uploading' | 'completed' = 'idle';
@state() @state()
public isLoading: boolean = false; accessor isLoading: boolean = false;
@property({ type: String }) @property({ type: String })
public buttonText: string = 'Select files'; accessor buttonText: string = 'Select files';
@property({ type: String }) @property({ type: String })
public accept: string = ''; accessor accept: string = '';
@property({ type: Boolean }) @property({ type: Boolean })
public multiple: boolean = true; accessor multiple: boolean = true;
@property({ type: Number }) @property({ type: Number })
public maxSize: number = 0; // 0 means no limit accessor maxSize: number = 0; // 0 means no limit
@property({ type: Number }) @property({ type: Number })
public maxFiles: number = 0; // 0 means no limit accessor maxFiles: number = 0; // 0 means no limit
@property({ type: String, reflect: true }) @property({ type: String, reflect: true })
public validationState: 'valid' | 'invalid' | 'warn' | 'pending' = null; accessor validationState: 'valid' | 'invalid' | 'warn' | 'pending' = null;
public validationMessage: string = ''; accessor validationMessage: string = '';
private previewUrlMap: WeakMap<File, string> = new WeakMap(); private previewUrlMap: WeakMap<File, string> = new WeakMap();
private dropArea: HTMLElement | null = null; private dropArea: HTMLElement | null = null;

View File

@@ -2,8 +2,8 @@ import { css, cssManager } from '@design.estate/dees-element';
import { DeesInputBase } from '../dees-input-base.js'; import { DeesInputBase } from '../dees-input-base.js';
export const fileuploadStyles = [ export const fileuploadStyles = [
...DeesInputBase.baseStyles,
cssManager.defaultStyles, cssManager.defaultStyles,
...DeesInputBase.baseStyles,
css` css`
:host { :host {
position: relative; position: relative;

View File

@@ -19,15 +19,15 @@ export class DeesInputIban extends DeesInputBase<DeesInputIban> {
// INSTANCE // INSTANCE
@state() @state()
enteredString: string = ''; accessor enteredString: string = '';
@state() @state()
enteredIbanIsValid: boolean = false; accessor enteredIbanIsValid: boolean = false;
@property({ @property({
type: String, type: String,
}) })
public value = ''; accessor value = '';
public static styles = [ public static styles = [
...DeesInputBase.baseStyles, ...DeesInputBase.baseStyles,

View File

@@ -25,43 +25,43 @@ export class DeesInputList extends DeesInputBase<DeesInputList> {
// INSTANCE // INSTANCE
@property({ type: Array }) @property({ type: Array })
public value: string[] = []; accessor value: string[] = [];
@property({ type: String }) @property({ type: String })
public placeholder: string = 'Add new item...'; accessor placeholder: string = 'Add new item...';
@property({ type: Number }) @property({ type: Number })
public maxItems: number = 0; // 0 means unlimited accessor maxItems: number = 0; // 0 means unlimited
@property({ type: Number }) @property({ type: Number })
public minItems: number = 0; accessor minItems: number = 0;
@property({ type: Boolean }) @property({ type: Boolean })
public allowDuplicates: boolean = false; accessor allowDuplicates: boolean = false;
@property({ type: Boolean }) @property({ type: Boolean })
public sortable: boolean = false; accessor sortable: boolean = false;
@property({ type: Boolean }) @property({ type: Boolean })
public confirmDelete: boolean = false; accessor confirmDelete: boolean = false;
@property({ type: String }) @property({ type: String })
public validationText: string = ''; accessor validationText: string = '';
@state() @state()
private inputValue: string = ''; accessor inputValue: string = '';
@state() @state()
private editingIndex: number = -1; accessor editingIndex: number = -1;
@state() @state()
private editingValue: string = ''; accessor editingValue: string = '';
@state() @state()
private draggedIndex: number = -1; accessor draggedIndex: number = -1;
@state() @state()
private dragOverIndex: number = -1; accessor dragOverIndex: number = -1;
public static styles = [ public static styles = [
...DeesInputBase.baseStyles, ...DeesInputBase.baseStyles,

View File

@@ -24,24 +24,24 @@ export class DeesInputMultitoggle extends DeesInputBase<DeesInputMultitoggle> {
@property() @property()
type: 'boolean' | 'multi' | 'single' = 'multi'; accessor type: 'boolean' | 'multi' | 'single' = 'multi';
@property() @property()
booleanTrueName: string = 'true'; accessor booleanTrueName: string = 'true';
@property() @property()
booleanFalseName: string = 'false'; accessor booleanFalseName: string = 'false';
@property({ @property({
type: Array, type: Array,
}) })
options: string[] = []; accessor options: string[] = [];
@property() @property()
selectedOption: string = ''; accessor selectedOption: string = '';
@property({ type: Boolean }) @property({ type: Boolean })
boolValue: boolean = false; accessor boolValue: boolean = false;
// Add value property for form compatibility // Add value property for form compatibility
public get value(): string | boolean { public get value(): string | boolean {

View File

@@ -24,13 +24,13 @@ export class DeesInputPhone extends DeesInputBase<DeesInputPhone> {
// INSTANCE // INSTANCE
@state() @state()
protected formattedPhone: string = ''; accessor formattedPhone: string = '';
@property({ type: String }) @property({ type: String })
public value: string = ''; accessor value: string = '';
@property({ type: String }) @property({ type: String })
public placeholder: string = '+1 (555) 123-4567'; accessor placeholder: string = '+1 (555) 123-4567';
public static styles = [ public static styles = [
...DeesInputBase.baseStyles, ...DeesInputBase.baseStyles,

View File

@@ -18,7 +18,7 @@ export class DeesInputQuantitySelector extends DeesInputBase<DeesInputQuantitySe
@property({ @property({
type: Number type: Number
}) })
public value: number = 1; accessor value: number = 1;

View File

@@ -24,16 +24,16 @@ export class DeesInputRadiogroup extends DeesInputBase<string | object> {
// INSTANCE // INSTANCE
@property({ type: Array }) @property({ type: Array })
public options: RadioOption[] = []; accessor options: RadioOption[] = [];
@property() @property()
public selectedOption: string = ''; accessor selectedOption: string = '';
@property({ type: String }) @property({ type: String })
public direction: 'vertical' | 'horizontal' = 'vertical'; accessor direction: 'vertical' | 'horizontal' = 'vertical';
@property({ type: String, reflect: true }) @property({ type: String, reflect: true })
public validationState: 'valid' | 'invalid' | 'warn' | 'pending' = null; accessor validationState: 'valid' | 'invalid' | 'warn' | 'pending' = null;
// Form compatibility // Form compatibility
public get value() { public get value() {

View File

@@ -38,33 +38,31 @@ export class DeesInputRichtext extends DeesInputBase<string> {
type: String, type: String,
reflect: true, reflect: true,
}) })
public value: string = ''; accessor value: string = '';
@property({ @property({
type: String, type: String,
}) })
public placeholder: string = ''; accessor placeholder: string = '';
@property({ @property({
type: Boolean, type: Boolean,
}) })
public showWordCount: boolean = true; accessor showWordCount: boolean = true;
@property({ @property({
type: Number, type: Number,
}) })
public minHeight: number = 200; accessor minHeight: number = 200;
@state() @state()
public showLinkInput: boolean = false; accessor showLinkInput: boolean = false;
@state() @state()
public wordCount: number = 0; accessor wordCount: number = 0;
@query('.editor-content')
private editorElement: HTMLElement; private editorElement: HTMLElement;
@query('.link-input input')
private linkInputElement: HTMLInputElement; private linkInputElement: HTMLInputElement;
public editor: Editor; public editor: Editor;

View File

@@ -24,28 +24,28 @@ export class DeesInputTags extends DeesInputBase<DeesInputTags> {
// INSTANCE // INSTANCE
@property({ type: Array }) @property({ type: Array })
public value: string[] = []; accessor value: string[] = [];
@property({ type: String }) @property({ type: String })
public placeholder: string = 'Add tags...'; accessor placeholder: string = 'Add tags...';
@property({ type: Number }) @property({ type: Number })
public maxTags: number = 0; // 0 means unlimited accessor maxTags: number = 0; // 0 means unlimited
@property({ type: Array }) @property({ type: Array })
public suggestions: string[] = []; accessor suggestions: string[] = [];
@state() @state()
private inputValue: string = ''; accessor inputValue: string = '';
@state() @state()
private showSuggestions: boolean = false; accessor showSuggestions: boolean = false;
@state() @state()
private highlightedSuggestionIndex: number = -1; accessor highlightedSuggestionIndex: number = -1;
@property({ type: String }) @property({ type: String })
public validationText: string = ''; accessor validationText: string = '';
public static styles = [ public static styles = [
...DeesInputBase.baseStyles, ...DeesInputBase.baseStyles,

View File

@@ -27,33 +27,33 @@ export class DeesInputText extends DeesInputBase {
type: String, type: String,
reflect: true, reflect: true,
}) })
public value: string = ''; accessor value: string = '';
@property({ @property({
type: Boolean, type: Boolean,
reflect: true, reflect: true,
}) })
public isPasswordBool = false; accessor isPasswordBool = false;
@property({ @property({
type: Boolean, type: Boolean,
reflect: true, reflect: true,
}) })
public showPasswordBool = false; accessor showPasswordBool = false;
@property({ @property({
type: Boolean, type: Boolean,
reflect: true, reflect: true,
}) })
public validationState: 'valid' | 'warn' | 'invalid'; accessor validationState: 'valid' | 'warn' | 'invalid';
@property({ @property({
reflect: true, reflect: true,
}) })
public validationText: string = ''; accessor validationText: string = '';
@property({}) @property({})
validationFunction: (value: string) => boolean; accessor validationFunction: (value: string) => boolean;
public static styles = [ public static styles = [
...DeesInputBase.baseStyles, ...DeesInputBase.baseStyles,

View File

@@ -20,10 +20,10 @@ export class DeesInputTypelist extends DeesInputBase<DeesInputTypelist> {
// INSTANCE // INSTANCE
@property({ type: Array }) @property({ type: Array })
public value: string[] = []; accessor value: string[] = [];
@state() @state()
private inputValue: string = ''; accessor inputValue: string = '';
public static styles = [ public static styles = [

View File

@@ -30,13 +30,13 @@ export class DeesFormattingMenu extends DeesElement {
} }
@state() @state()
public visible: boolean = false; accessor visible: boolean = false;
@state() @state()
private position: { x: number; y: number } = { x: 0, y: 0 }; accessor position: { x: number; y: number } = { x: 0, y: 0 };
@state() @state()
private menuZIndex: number = 1000; accessor menuZIndex: number = 1000;
private callback: ((command: string) => void | Promise<void>) | null = null; private callback: ((command: string) => void | Promise<void>) | null = null;

View File

@@ -40,13 +40,13 @@ export class DeesInputWysiwyg extends DeesInputBase<string> {
public static demo = demoFunc; public static demo = demoFunc;
@property({ type: String }) @property({ type: String })
public value: string = ''; accessor value: string = '';
@property({ type: String }) @property({ type: String })
public outputFormat: OutputFormat = 'html'; accessor outputFormat: OutputFormat = 'html';
@state() @state()
public blocks: IBlock[] = [ accessor blocks: IBlock[] = [
{ {
id: WysiwygShortcuts.generateBlockId(), id: WysiwygShortcuts.generateBlockId(),
type: 'paragraph', type: 'paragraph',
@@ -61,19 +61,19 @@ export class DeesInputWysiwyg extends DeesInputBase<string> {
public slashMenu = DeesSlashMenu.getInstance(); public slashMenu = DeesSlashMenu.getInstance();
@state() @state()
public draggedBlockId: string | null = null; accessor draggedBlockId: string | null = null;
@state() @state()
public dragOverBlockId: string | null = null; accessor dragOverBlockId: string | null = null;
@state() @state()
public dragOverPosition: 'before' | 'after' | null = null; accessor dragOverPosition: 'before' | 'after' | null = null;
// Formatting menu is now globally rendered // Formatting menu is now globally rendered
public formattingMenu = DeesFormattingMenu.getInstance(); public formattingMenu = DeesFormattingMenu.getInstance();
@state() @state()
private selectedText: string = ''; accessor selectedText: string = '';
public editorContentRef: HTMLDivElement; public editorContentRef: HTMLDivElement;
public isComposing: boolean = false; public isComposing: boolean = false;

View File

@@ -32,19 +32,19 @@ export class DeesSlashMenu extends DeesElement {
} }
@state() @state()
public visible: boolean = false; accessor visible: boolean = false;
@state() @state()
private position: { x: number; y: number } = { x: 0, y: 0 }; accessor position: { x: number; y: number } = { x: 0, y: 0 };
@state() @state()
private filter: string = ''; accessor filter: string = '';
@state() @state()
private selectedIndex: number = 0; accessor selectedIndex: number = 0;
@state() @state()
private menuZIndex: number = 1000; accessor menuZIndex: number = 1000;
private callback: ((type: string) => void) | null = null; private callback: ((type: string) => void) | null = null;

View File

@@ -32,16 +32,16 @@ export class DeesWysiwygBlock extends DeesElement {
} }
} }
@property({ type: Object }) @property({ type: Object })
public block: IBlock; accessor block: IBlock;
@property({ type: Boolean }) @property({ type: Boolean })
public isSelected: boolean = false; accessor isSelected: boolean = false;
@property({ type: Object }) @property({ type: Object })
public handlers: IBlockEventHandlers; accessor handlers: IBlockEventHandlers;
@property({ type: Object }) @property({ type: Object })
public wysiwygComponent: any; // Reference to parent dees-input-wysiwyg accessor wysiwygComponent: any; // Reference to parent dees-input-wysiwyg
// Reference to the editable block element // Reference to the editable block element
private blockElement: HTMLDivElement | null = null; private blockElement: HTMLDivElement | null = null;

View File

@@ -24,19 +24,19 @@ export class DeesLabel extends DeesElement {
type: String, type: String,
reflect: true, reflect: true,
}) })
public label = ''; accessor label = '';
@property({ @property({
type: String, type: String,
reflect: true, reflect: true,
}) })
public description: string; accessor description: string;
@property({ @property({
type: Boolean, type: Boolean,
reflect: true, reflect: true,
}) })
public required: boolean = false; accessor required: boolean = false;
public static styles = [ public static styles = [
cssManager.defaultStyles, cssManager.defaultStyles,

View File

@@ -83,15 +83,15 @@ export class DeesMobilenavigation extends DeesElement {
@property({ @property({
type: String, type: String,
}) })
public heading: string = `Menu`; accessor heading: string = `Menu`;
@property({ @property({
type: Array, type: Array,
}) })
public menuItems: plugins.tsclass.website.IMenuItem[] = []; accessor menuItems: plugins.tsclass.website.IMenuItem[] = [];
@state() @state()
private mobileNavZIndex: number = 1000; accessor mobileNavZIndex: number = 1000;
readyDeferred: plugins.smartpromise.Deferred<any> = domtools.plugins.smartpromise.defer(); readyDeferred: plugins.smartpromise.Deferred<any> = domtools.plugins.smartpromise.defer();

View File

@@ -78,37 +78,37 @@ export class DeesModal extends DeesElement {
@property({ @property({
type: String, type: String,
}) })
public heading = ''; accessor heading = '';
@state({}) @state({})
public content: TemplateResult; accessor content: TemplateResult;
@state({}) @state({})
public menuOptions: plugins.tsclass.website.IMenuItem<DeesModal>[] = []; accessor menuOptions: plugins.tsclass.website.IMenuItem<DeesModal>[] = [];
@property({ type: String }) @property({ type: String })
public width: 'small' | 'medium' | 'large' | 'fullscreen' | number = 'medium'; accessor width: 'small' | 'medium' | 'large' | 'fullscreen' | number = 'medium';
@property({ type: Number }) @property({ type: Number })
public maxWidth: number; accessor maxWidth: number;
@property({ type: Number }) @property({ type: Number })
public minWidth: number; accessor minWidth: number;
@property({ type: Boolean }) @property({ type: Boolean })
public showCloseButton: boolean = true; accessor showCloseButton: boolean = true;
@property({ type: Boolean }) @property({ type: Boolean })
public showHelpButton: boolean = false; accessor showHelpButton: boolean = false;
@property({ attribute: false }) @property({ attribute: false })
public onHelp: () => void | Promise<void>; accessor onHelp: () => void | Promise<void>;
@property({ type: Boolean }) @property({ type: Boolean })
public mobileFullscreen: boolean = false; accessor mobileFullscreen: boolean = false;
@state() @state()
private modalZIndex: number = 1000; accessor modalZIndex: number = 1000;
constructor() { constructor() {
super(); super();

View File

@@ -16,11 +16,11 @@ export class DeesPagination extends DeesElement {
public static demo = demoFunc; public static demo = demoFunc;
/** Current page (1-based) */ /** Current page (1-based) */
@property({ type: Number, reflect: true }) @property({ type: Number, reflect: true })
public page = 1; accessor page = 1;
/** Total number of pages */ /** Total number of pages */
@property({ type: Number, reflect: true }) @property({ type: Number, reflect: true })
public total = 1; accessor total = 1;
public static styles = [ public static styles = [
cssManager.defaultStyles, cssManager.defaultStyles,

View File

@@ -21,19 +21,19 @@ export class DeesPanel extends DeesElement {
public static demo = demoFunc; public static demo = demoFunc;
@property({ type: String }) @property({ type: String })
public title: string = ''; accessor title: string = '';
@property({ type: String }) @property({ type: String })
public subtitle: string = ''; accessor subtitle: string = '';
@property({ type: String }) @property({ type: String })
public variant: 'default' | 'outline' | 'ghost' = 'default'; accessor variant: 'default' | 'outline' | 'ghost' = 'default';
@property({ type: String }) @property({ type: String })
public size: 'sm' | 'md' | 'lg' = 'md'; accessor size: 'sm' | 'md' | 'lg' = 'md';
@property({ attribute: false }) @property({ attribute: false })
public runAfterRender?: (elementArg: HTMLElement) => void | Promise<void>; accessor runAfterRender: ((elementArg: HTMLElement) => void | Promise<void>) | undefined = undefined;
public static styles = [ public static styles = [
cssManager.defaultStyles, cssManager.defaultStyles,

View File

@@ -0,0 +1,537 @@
import { DeesElement, property, html, customElement, type TemplateResult } from '@design.estate/dees-element';
import { PdfManager } from '../dees-pdf-shared/PdfManager.js';
import { CanvasPool, type PooledCanvas } from '../dees-pdf-shared/CanvasPool.js';
import { PerformanceMonitor, throttle } from '../dees-pdf-shared/utils.js';
import { previewStyles } from './styles.js';
import { demo as demoFunc } from './demo.js';
import '../dees-icon.js';
declare global {
interface HTMLElementTagNameMap {
'dees-pdf-preview': DeesPdfPreview;
}
}
@customElement('dees-pdf-preview')
export class DeesPdfPreview extends DeesElement {
public static demo = demoFunc;
public static styles = previewStyles;
@property({ type: String })
accessor pdfUrl: string = '';
@property({ type: Number })
accessor currentPreviewPage: number = 1;
@property({ type: Boolean })
accessor clickable: boolean = true;
@property({ type: Number })
accessor pageCount: number = 0;
@property({ type: Boolean })
accessor loading: boolean = false;
@property({ type: Boolean })
accessor rendered: boolean = false;
@property({ type: Boolean })
accessor error: boolean = false;
@property({ type: Boolean })
accessor isHovering: boolean = false;
@property({ type: Boolean })
accessor isA4Format: boolean = true;
private renderPagesTask: Promise<void> | null = null;
private renderPagesQueued: boolean = false;
private observer: IntersectionObserver;
private pdfDocument: any;
private canvases: PooledCanvas[] = [];
private resizeObserver?: ResizeObserver;
private previewContainer: HTMLElement | null = null;
private stackElement: HTMLElement | null = null;
private loadedPdfUrl: string | null = null;
constructor() {
super();
}
public render(): TemplateResult {
return html`
<div
class="preview-container ${this.loading ? 'loading' : ''} ${this.error ? 'error' : ''} ${this.clickable ? 'clickable' : ''}"
@click=${this.handleClick}
@mouseenter=${this.handleMouseEnter}
@mouseleave=${this.handleMouseLeave}
@mousemove=${this.handleMouseMove}
>
${this.loading ? html`
<div class="preview-loading">
<div class="preview-spinner"></div>
<div class="preview-text">Loading preview...</div>
</div>
` : ''}
${this.error ? html`
<div class="preview-error">
<dees-icon icon="lucide:FileX"></dees-icon>
<div class="preview-text">Failed to load PDF</div>
</div>
` : ''}
${!this.loading && !this.error ? html`
<div class="preview-stack ${!this.isA4Format ? 'non-a4' : ''}">
<canvas
class="preview-canvas"
data-page="${this.currentPreviewPage}"
></canvas>
</div>
${this.pageCount > 1 && this.isHovering ? html`
<div class="preview-page-indicator">
Page ${this.currentPreviewPage} of ${this.pageCount}
</div>
` : ''}
${this.pageCount > 0 && !this.isHovering ? html`
<div class="preview-info">
<dees-icon icon="lucide:FileText"></dees-icon>
<span class="preview-pages">${this.pageCount} page${this.pageCount > 1 ? 's' : ''}</span>
</div>
` : ''}
${this.clickable ? html`
<div class="preview-overlay">
<dees-icon icon="lucide:Eye"></dees-icon>
<span>View PDF</span>
</div>
` : ''}
` : ''}
</div>
`;
}
private handleMouseEnter() {
this.isHovering = true;
}
private handleMouseLeave() {
this.isHovering = false;
// Reset to first page when not hovering
if (this.currentPreviewPage !== 1) {
this.currentPreviewPage = 1;
void this.scheduleRenderPages();
}
}
private handleMouseMove(e: MouseEvent) {
if (!this.isHovering || this.pageCount <= 1) return;
const rect = this.getBoundingClientRect();
const x = e.clientX - rect.left;
const width = rect.width;
// Calculate which page to show based on horizontal position
const percentage = Math.max(0, Math.min(1, x / width));
const newPage = Math.ceil(percentage * this.pageCount) || 1;
if (newPage !== this.currentPreviewPage) {
this.currentPreviewPage = newPage;
void this.scheduleRenderPages();
}
}
public async connectedCallback() {
await super.connectedCallback();
this.setupIntersectionObserver();
await this.updateComplete;
this.cacheElements();
this.setupResizeObserver();
}
public async disconnectedCallback() {
await super.disconnectedCallback();
this.cleanup();
if (this.observer) {
this.observer.disconnect();
}
this.resizeObserver?.disconnect();
this.resizeObserver = undefined;
}
private setupIntersectionObserver() {
const options = {
root: null,
rootMargin: '200px',
threshold: 0.01,
};
this.observer = new IntersectionObserver(
throttle((entries) => {
for (const entry of entries) {
if (entry.isIntersecting && !this.rendered && this.pdfUrl) {
this.loadAndRenderPreview();
} else if (!entry.isIntersecting && this.rendered) {
// Optional: Clear canvases when out of view for memory optimization
// this.clearCanvases();
}
}
}, 100),
options
);
this.observer.observe(this);
}
private async loadAndRenderPreview() {
if (this.rendered || this.loading) return;
this.loading = true;
this.error = false;
PerformanceMonitor.mark(`preview-load-${this.pdfUrl}`);
try {
this.pdfDocument = await PdfManager.loadDocument(this.pdfUrl);
this.pageCount = this.pdfDocument.numPages;
this.currentPreviewPage = 1;
this.loadedPdfUrl = this.pdfUrl;
// Force an update to ensure the canvas element is in the DOM
this.loading = false;
await this.updateComplete;
this.cacheElements();
// Now render the first page
await this.scheduleRenderPages();
this.rendered = true;
const duration = PerformanceMonitor.measure(`preview-render-${this.pdfUrl}`, `preview-load-${this.pdfUrl}`);
console.log(`PDF preview rendered in ${duration}ms`);
} catch (error) {
console.error('Failed to load PDF preview:', error);
this.error = true;
this.loading = false;
}
}
private scheduleRenderPages(): Promise<void> {
if (!this.pdfDocument) {
return Promise.resolve();
}
if (this.renderPagesTask) {
this.renderPagesQueued = true;
return this.renderPagesTask;
}
this.renderPagesTask = (async () => {
try {
await this.performRenderPages();
} catch (error) {
console.error('Failed to render PDF preview pages:', error);
}
})().finally(() => {
this.renderPagesTask = null;
if (this.renderPagesQueued) {
this.renderPagesQueued = false;
void this.scheduleRenderPages();
}
});
return this.renderPagesTask;
}
private async performRenderPages() {
if (!this.pdfDocument) return;
// Wait a frame to ensure DOM is ready
await new Promise(resolve => requestAnimationFrame(resolve));
const canvas = this.shadowRoot?.querySelector('.preview-canvas') as HTMLCanvasElement;
if (!canvas) {
console.warn('Preview canvas not found in DOM');
return;
}
// Release old canvases
this.clearCanvases();
this.cacheElements();
// Get available size for the preview
const { availableWidth, availableHeight } = this.getAvailableSize();
try {
// Get the page to render
const pageNum = this.currentPreviewPage;
const page = await this.pdfDocument.getPage(pageNum);
// Calculate scale to fit within available area while keeping aspect ratio
// Use higher scale for sharper rendering
const initialViewport = page.getViewport({ scale: 1 });
// Check if this is standard paper format (A4 or US Letter)
const aspectRatio = initialViewport.height / initialViewport.width;
// Common paper format ratios
const a4PortraitRatio = 1.414; // 297mm / 210mm
const a4LandscapeRatio = 0.707; // 210mm / 297mm
const letterPortraitRatio = 1.294; // 11" / 8.5"
const letterLandscapeRatio = 0.773; // 8.5" / 11"
// Check for standard formats with 5% tolerance
const tolerance = 0.05;
const isA4Portrait = Math.abs(aspectRatio - a4PortraitRatio) < (a4PortraitRatio * tolerance);
const isA4Landscape = Math.abs(aspectRatio - a4LandscapeRatio) < (a4LandscapeRatio * tolerance);
const isLetterPortrait = Math.abs(aspectRatio - letterPortraitRatio) < (letterPortraitRatio * tolerance);
const isLetterLandscape = Math.abs(aspectRatio - letterLandscapeRatio) < (letterLandscapeRatio * tolerance);
// Consider it standard format if it matches A4 or US Letter
this.isA4Format = isA4Portrait || isA4Landscape || isLetterPortrait || isLetterLandscape;
// Debug logging
console.log(`PDF aspect ratio: ${aspectRatio.toFixed(3)}, standard format: ${this.isA4Format}`)
// Adjust available size for non-A4 documents (account for padding)
const adjustedWidth = this.isA4Format ? availableWidth : availableWidth - 24;
const adjustedHeight = this.isA4Format ? availableHeight : availableHeight - 24;
const scaleX = adjustedWidth > 0 ? adjustedWidth / initialViewport.width : 0;
const scaleY = adjustedHeight > 0 ? adjustedHeight / initialViewport.height : 0;
// Increase scale by 2x for sharper rendering, but limit to 3.0 max
const baseScale = Math.min(scaleX || 0.5, scaleY || scaleX || 0.5);
const renderScale = Math.min(baseScale * 2, 3.0);
if (!Number.isFinite(renderScale) || renderScale <= 0) {
page.cleanup?.();
return;
}
const viewport = page.getViewport({ scale: renderScale });
// Acquire canvas from pool
const pooledCanvas = CanvasPool.acquire(viewport.width, viewport.height);
this.canvases.push(pooledCanvas);
// Render to pooled canvas first
const renderContext = {
canvasContext: pooledCanvas.ctx,
viewport: viewport,
};
await page.render(renderContext).promise;
// Transfer to display canvas
// Set actual canvas resolution for sharpness
canvas.width = viewport.width;
canvas.height = viewport.height;
// Scale down display size to fit the container while keeping high resolution
// For A4, fill the container; for non-A4, respect padding
const displayWidth = adjustedWidth;
const displayHeight = (viewport.height / viewport.width) * adjustedWidth;
// If it fits height-wise better, scale by height instead
if (displayHeight > adjustedHeight) {
const altDisplayHeight = adjustedHeight;
const altDisplayWidth = (viewport.width / viewport.height) * adjustedHeight;
canvas.style.width = `${altDisplayWidth}px`;
canvas.style.height = `${altDisplayHeight}px`;
} else {
canvas.style.width = `${displayWidth}px`;
canvas.style.height = `${displayHeight}px`;
}
const ctx = canvas.getContext('2d');
if (ctx) {
// Enable image smoothing for better quality
ctx.imageSmoothingEnabled = true;
ctx.imageSmoothingQuality = 'high';
ctx.drawImage(pooledCanvas.canvas, 0, 0);
}
// Release page to free memory
page.cleanup();
} catch (error) {
console.error(`Failed to render page ${this.currentPreviewPage}:`, error);
}
}
private clearCanvases() {
// Release pooled canvases
for (const pooledCanvas of this.canvases) {
CanvasPool.release(pooledCanvas);
}
this.canvases = [];
}
private cleanup() {
this.clearCanvases();
if (this.pdfDocument) {
PdfManager.releaseDocument(this.loadedPdfUrl ?? this.pdfUrl);
this.pdfDocument = null;
}
this.renderPagesQueued = false;
this.pageCount = 0;
this.currentPreviewPage = 1;
this.isHovering = false;
this.isA4Format = true;
this.previewContainer = null;
this.stackElement = null;
this.loadedPdfUrl = null;
this.rendered = false;
this.loading = false;
this.error = false;
}
private handleClick() {
if (!this.clickable) return;
// Dispatch custom event for parent to handle
this.dispatchEvent(new CustomEvent('pdf-preview-click', {
detail: {
pdfUrl: this.pdfUrl,
pageCount: this.pageCount,
},
bubbles: true,
composed: true,
}));
}
public async updated(changedProperties: Map<PropertyKey, unknown>) {
super.updated(changedProperties);
if (changedProperties.has('pdfUrl') && this.pdfUrl) {
const previousUrl = changedProperties.get('pdfUrl') as string | undefined;
if (previousUrl) {
PdfManager.releaseDocument(previousUrl);
}
this.cleanup();
this.rendered = false;
this.currentPreviewPage = 1;
// Check if in viewport and render if so
if (this.observer) {
const rect = this.getBoundingClientRect();
if (rect.top < window.innerHeight && rect.bottom > 0) {
this.loadAndRenderPreview();
}
}
}
if (changedProperties.has('currentPreviewPage') && this.rendered) {
await this.scheduleRenderPages();
}
}
/**
* Provide context menu items for right-click functionality
*/
public getContextMenuItems() {
const items: any[] = [];
// If clickable, add option to view the PDF
if (this.clickable) {
items.push({
name: 'View PDF',
iconName: 'lucide:Eye',
action: async () => {
this.handleClick();
}
});
items.push({ divider: true });
}
items.push(
{
name: 'Open PDF in New Tab',
iconName: 'lucide:ExternalLink',
action: async () => {
window.open(this.pdfUrl, '_blank');
}
},
{ divider: true },
{
name: 'Copy PDF URL',
iconName: 'lucide:Copy',
action: async () => {
await navigator.clipboard.writeText(this.pdfUrl);
}
},
{
name: 'Download PDF',
iconName: 'lucide:Download',
action: async () => {
const link = document.createElement('a');
link.href = this.pdfUrl;
link.download = this.pdfUrl.split('/').pop() || 'document.pdf';
link.click();
}
}
);
// Add page count info as a disabled item
if (this.pageCount > 0) {
items.push(
{ divider: true },
{
name: `${this.pageCount} page${this.pageCount > 1 ? 's' : ''}`,
iconName: 'lucide:FileText',
disabled: true,
action: async () => {}
}
);
}
return items;
}
private cacheElements() {
if (!this.previewContainer) {
this.previewContainer = this.shadowRoot?.querySelector('.preview-container') as HTMLElement;
}
if (!this.stackElement) {
this.stackElement = this.shadowRoot?.querySelector('.preview-stack') as HTMLElement;
}
}
private setupResizeObserver() {
if (!this.previewContainer || this.resizeObserver) return;
this.resizeObserver = new ResizeObserver(() => {
if (this.rendered && this.pdfDocument && !this.loading) {
void this.scheduleRenderPages();
}
});
this.resizeObserver.observe(this);
}
private getAvailableSize() {
if (!this.stackElement) {
// Try to get the stack element if it's not cached
this.stackElement = this.shadowRoot?.querySelector('.preview-stack') as HTMLElement;
}
if (!this.stackElement) {
// Fallback to default size if element not found
return {
availableWidth: 200, // Full container width
availableHeight: 260, // Full container height
};
}
const rect = this.stackElement.getBoundingClientRect();
const availableWidth = Math.max(rect.width, 0) || 200;
const availableHeight = Math.max(rect.height, 0) || 260;
return { availableWidth, availableHeight };
}
}

View File

@@ -0,0 +1,189 @@
import { html } from '@design.estate/dees-element';
export const demo = () => {
const samplePdfs = [
'https://raw.githubusercontent.com/mozilla/pdf.js/ba2edeae/examples/learning/helloworld.pdf',
'https://raw.githubusercontent.com/mozilla/pdf.js/ba2edeae/web/compressed.tracemonkey-pldi-09.pdf',
];
const generateGridItems = (count: number) => {
const items = [];
for (let i = 0; i < count; i++) {
const pdfUrl = samplePdfs[i % samplePdfs.length];
items.push(html`
<dees-pdf-preview
pdfUrl="${pdfUrl}"
maxPages="3"
stackOffset="6"
clickable="true"
grid-mode
@pdf-preview-click=${(e: CustomEvent) => {
console.log('PDF Preview clicked:', e.detail);
alert(`PDF clicked: ${e.detail.pageCount} pages`);
}}
></dees-pdf-preview>
`);
}
return items;
};
return html`
<style>
.demo-container {
padding: 40px;
background: #f5f5f5;
}
.demo-section {
margin-bottom: 60px;
}
h3 {
margin-bottom: 20px;
font-size: 18px;
font-weight: 600;
}
.preview-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
gap: 24px;
}
.preview-row {
display: flex;
gap: 24px;
align-items: center;
margin-bottom: 20px;
}
.preview-label {
font-size: 14px;
font-weight: 500;
min-width: 100px;
}
.performance-stats {
margin-top: 20px;
padding: 16px;
background: white;
border-radius: 8px;
font-size: 14px;
}
.stats-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
gap: 12px;
margin-top: 12px;
}
.stat-item {
display: flex;
flex-direction: column;
gap: 4px;
}
.stat-label {
font-size: 12px;
color: #666;
}
.stat-value {
font-size: 16px;
font-weight: 600;
}
</style>
<div class="demo-container">
<div class="demo-section">
<h3>Single PDF Preview with Stacked Pages</h3>
<dees-pdf-preview
pdfUrl="https://raw.githubusercontent.com/mozilla/pdf.js/ba2edeae/web/compressed.tracemonkey-pldi-09.pdf"
maxPages="3"
stackOffset="8"
clickable="true"
></dees-pdf-preview>
</div>
<div class="demo-section">
<h3>Different Sizes</h3>
<div class="preview-row">
<div class="preview-label">Small:</div>
<dees-pdf-preview
size="small"
pdfUrl="https://raw.githubusercontent.com/mozilla/pdf.js/ba2edeae/examples/learning/helloworld.pdf"
maxPages="2"
stackOffset="6"
clickable="true"
></dees-pdf-preview>
</div>
<div class="preview-row">
<div class="preview-label">Default:</div>
<dees-pdf-preview
pdfUrl="https://raw.githubusercontent.com/mozilla/pdf.js/ba2edeae/examples/learning/helloworld.pdf"
maxPages="3"
stackOffset="8"
clickable="true"
></dees-pdf-preview>
</div>
<div class="preview-row">
<div class="preview-label">Large:</div>
<dees-pdf-preview
size="large"
pdfUrl="https://raw.githubusercontent.com/mozilla/pdf.js/ba2edeae/examples/learning/helloworld.pdf"
maxPages="4"
stackOffset="10"
clickable="true"
></dees-pdf-preview>
</div>
</div>
<div class="demo-section">
<h3>Non-Clickable Preview</h3>
<dees-pdf-preview
pdfUrl="https://raw.githubusercontent.com/mozilla/pdf.js/ba2edeae/examples/learning/helloworld.pdf"
maxPages="3"
stackOffset="8"
clickable="false"
></dees-pdf-preview>
</div>
<div class="demo-section">
<h3>Performance Grid - 50 PDFs with Lazy Loading</h3>
<p style="margin-bottom: 20px; font-size: 14px; color: #666;">
This grid demonstrates the performance optimizations with 50 PDF previews.
Scroll to see lazy loading in action - previews render only when visible.
</p>
<div class="preview-grid">
${generateGridItems(50)}
</div>
<div class="performance-stats">
<h4>Performance Features</h4>
<div class="stats-grid">
<div class="stat-item">
<span class="stat-label">Lazy Loading</span>
<span class="stat-value">✓ Enabled</span>
</div>
<div class="stat-item">
<span class="stat-label">Canvas Pooling</span>
<span class="stat-value">✓ Active</span>
</div>
<div class="stat-item">
<span class="stat-label">Memory Management</span>
<span class="stat-value">✓ Optimized</span>
</div>
<div class="stat-item">
<span class="stat-label">Intersection Observer</span>
<span class="stat-value">200px margin</span>
</div>
</div>
</div>
</div>
</div>
`;
};

View File

@@ -0,0 +1 @@
export * from './component.js';

View File

@@ -0,0 +1,223 @@
import { css, cssManager } from '@design.estate/dees-element';
export const previewStyles = [
cssManager.defaultStyles,
css`
:host {
display: inline-block;
position: relative;
}
.preview-container {
position: relative;
width: 200px;
height: 260px;
background: ${cssManager.bdTheme('hsl(0 0% 98%)', 'hsl(215 20% 14%)')};
border-radius: 4px;
overflow: hidden;
transition: transform 0.2s ease, box-shadow 0.2s ease;
box-shadow: 0 1px 3px ${cssManager.bdTheme('rgba(0, 0, 0, 0.12)', 'rgba(0, 0, 0, 0.24)')};
}
.preview-container.clickable {
cursor: pointer;
}
.preview-container.clickable:hover {
transform: translateY(-2px);
box-shadow: 0 8px 24px ${cssManager.bdTheme('rgba(0, 0, 0, 0.12)', 'rgba(0, 0, 0, 0.3)')};
}
.preview-container.clickable:hover .preview-overlay {
opacity: 1;
}
.preview-stack {
position: relative;
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
box-sizing: border-box;
overflow: hidden;
}
.preview-stack.non-a4 {
padding: 12px;
}
.preview-canvas {
position: relative;
background: white;
display: block;
max-width: 100%;
max-height: 100%;
width: auto;
height: auto;
object-fit: contain;
image-rendering: auto;
-webkit-font-smoothing: antialiased;
box-shadow: 0 1px 3px ${cssManager.bdTheme('rgba(0, 0, 0, 0.1)', 'rgba(0, 0, 0, 0.3)')};
}
.non-a4 .preview-canvas {
border: 1px solid ${cssManager.bdTheme('hsl(214 31% 92%)', 'hsl(217 25% 24%)')};
border-radius: 4px;
}
.preview-info {
position: absolute;
bottom: 8px;
left: 8px;
right: 8px;
padding: 6px 10px;
background: ${cssManager.bdTheme('hsl(0 0% 100% / 0.92)', 'hsl(215 20% 12% / 0.92)')};
border-radius: 6px;
display: flex;
align-items: center;
gap: 6px;
font-size: 12px;
color: ${cssManager.bdTheme('hsl(215 16% 45%)', 'hsl(215 16% 75%)')};
backdrop-filter: blur(12px);
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
z-index: 10;
}
.preview-info dees-icon {
font-size: 13px;
color: ${cssManager.bdTheme('hsl(217 91% 60%)', 'hsl(213 93% 68%)')};
}
.preview-pages {
font-weight: 500;
font-size: 11px;
}
.preview-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: ${cssManager.bdTheme('rgba(0, 0, 0, 0.7)', 'rgba(0, 0, 0, 0.8)')};
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 8px;
opacity: 0;
transition: opacity 0.2s ease;
z-index: 20;
}
.preview-overlay dees-icon {
font-size: 24px;
color: white;
}
.preview-overlay span {
font-size: 14px;
font-weight: 500;
color: white;
}
.preview-loading,
.preview-error {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 12px;
color: ${cssManager.bdTheme('hsl(215 16% 45%)', 'hsl(215 16% 75%)')};
}
.preview-loading {
background: ${cssManager.bdTheme('hsl(0 0% 99%)', 'hsl(215 20% 14%)')};
}
.preview-error {
background: ${cssManager.bdTheme('hsl(0 72% 98%)', 'hsl(0 62% 20%)')};
color: ${cssManager.bdTheme('hsl(0 72% 40%)', 'hsl(0 70% 68%)')};
}
.preview-spinner {
width: 24px;
height: 24px;
border-radius: 50%;
border: 2px solid ${cssManager.bdTheme('hsl(214 31% 86%)', 'hsl(217 25% 28%)')};
border-top-color: ${cssManager.bdTheme('hsl(217 91% 60%)', 'hsl(213 93% 68%)')};
animation: spin 0.8s linear infinite;
}
@keyframes spin {
to {
transform: rotate(360deg);
}
}
.preview-text {
font-size: 13px;
font-weight: 500;
}
.preview-error dees-icon {
font-size: 32px;
}
.preview-page-indicator {
position: absolute;
top: 8px;
left: 8px;
right: 8px;
padding: 5px 8px;
background: ${cssManager.bdTheme('hsl(0 0% 0% / 0.7)', 'hsl(0 0% 100% / 0.9)')};
color: ${cssManager.bdTheme('white', 'hsl(215 20% 12%)')};
border-radius: 4px;
font-size: 11px;
font-weight: 600;
text-align: center;
backdrop-filter: blur(12px);
z-index: 15;
pointer-events: none;
animation: fadeIn 0.2s ease;
}
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(-4px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
/* Responsive sizes */
:host([size="small"]) .preview-container {
width: 150px;
height: 195px;
}
:host([size="large"]) .preview-container {
width: 250px;
height: 325px;
}
/* Grid optimizations */
:host([grid-mode]) .preview-container {
will-change: auto;
}
:host([grid-mode]) .preview-canvas {
image-rendering: -webkit-optimize-contrast;
image-rendering: crisp-edges;
}
`,
];

View File

@@ -0,0 +1,135 @@
export interface PooledCanvas {
canvas: HTMLCanvasElement;
ctx: CanvasRenderingContext2D;
inUse: boolean;
lastUsed: number;
}
export class CanvasPool {
private static pool: PooledCanvas[] = [];
private static maxPoolSize = 20;
private static readonly MIN_CANVAS_SIZE = 256;
private static readonly MAX_CANVAS_SIZE = 4096;
public static acquire(width: number, height: number): PooledCanvas {
// Try to find a suitable canvas from the pool
const suitable = this.pool.find(
(item) => !item.inUse &&
item.canvas.width >= width &&
item.canvas.height >= height &&
item.canvas.width <= width * 1.5 &&
item.canvas.height <= height * 1.5
);
if (suitable) {
suitable.inUse = true;
suitable.lastUsed = Date.now();
// Clear and resize if needed
suitable.canvas.width = width;
suitable.canvas.height = height;
suitable.ctx.clearRect(0, 0, width, height);
return suitable;
}
// Create new canvas if pool not full
if (this.pool.length < this.maxPoolSize) {
const canvas = document.createElement('canvas');
const ctx = canvas.getContext('2d', {
alpha: true,
desynchronized: true,
}) as CanvasRenderingContext2D;
canvas.width = Math.min(Math.max(width, this.MIN_CANVAS_SIZE), this.MAX_CANVAS_SIZE);
canvas.height = Math.min(Math.max(height, this.MIN_CANVAS_SIZE), this.MAX_CANVAS_SIZE);
const pooledCanvas: PooledCanvas = {
canvas,
ctx,
inUse: true,
lastUsed: Date.now(),
};
this.pool.push(pooledCanvas);
return pooledCanvas;
}
// Evict and reuse least recently used canvas
const lru = this.pool
.filter((item) => !item.inUse)
.sort((a, b) => a.lastUsed - b.lastUsed)[0];
if (lru) {
lru.canvas.width = width;
lru.canvas.height = height;
lru.ctx.clearRect(0, 0, width, height);
lru.inUse = true;
lru.lastUsed = Date.now();
return lru;
}
// Fallback: create temporary canvas (shouldn't normally happen)
const canvas = document.createElement('canvas');
const ctx = canvas.getContext('2d') as CanvasRenderingContext2D;
canvas.width = width;
canvas.height = height;
return {
canvas,
ctx,
inUse: true,
lastUsed: Date.now(),
};
}
public static release(pooledCanvas: PooledCanvas) {
if (this.pool.includes(pooledCanvas)) {
pooledCanvas.inUse = false;
// Clear canvas to free memory
pooledCanvas.ctx.clearRect(0, 0, pooledCanvas.canvas.width, pooledCanvas.canvas.height);
}
}
public static releaseAll() {
for (const item of this.pool) {
item.inUse = false;
item.ctx.clearRect(0, 0, item.canvas.width, item.canvas.height);
}
}
public static destroy() {
for (const item of this.pool) {
item.canvas.width = 0;
item.canvas.height = 0;
}
this.pool = [];
}
public static getStats() {
return {
poolSize: this.pool.length,
maxPoolSize: this.maxPoolSize,
inUse: this.pool.filter((item) => item.inUse).length,
available: this.pool.filter((item) => !item.inUse).length,
};
}
public static adjustPoolSize(newSize: number) {
if (newSize < this.pool.length) {
// Remove excess canvases
const toRemove = this.pool.length - newSize;
const removed = this.pool
.filter((item) => !item.inUse)
.slice(0, toRemove);
for (const item of removed) {
const index = this.pool.indexOf(item);
if (index > -1) {
this.pool.splice(index, 1);
}
}
}
this.maxPoolSize = newSize;
}
}

View File

@@ -0,0 +1,36 @@
import { domtools } from '@design.estate/dees-element';
export class PdfManager {
private static pdfjsLib: any;
private static initialized = false;
public static async initialize() {
if (this.initialized) return;
// @ts-ignore
this.pdfjsLib = await import('https://cdn.jsdelivr.net/npm/pdfjs-dist@4.0.379/+esm');
this.pdfjsLib.GlobalWorkerOptions.workerSrc = 'https://cdn.jsdelivr.net/npm/pdfjs-dist@4.0.379/build/pdf.worker.mjs';
this.initialized = true;
}
public static async loadDocument(url: string): Promise<any> {
await this.initialize();
// IMPORTANT: Disabled caching to ensure component isolation
// Each viewer instance gets its own document to prevent state sharing
// This fixes issues where multiple viewers interfere with each other
const loadingTask = this.pdfjsLib.getDocument(url);
const document = await loadingTask.promise;
return document;
}
public static releaseDocument(_url: string) {
// No-op since we're not caching documents anymore
// Each viewer manages its own document lifecycle
}
// Cache methods removed to ensure component isolation
// Each viewer now manages its own document lifecycle
}

View File

@@ -0,0 +1,98 @@
export function debounce<T extends (...args: any[]) => any>(
func: T,
wait: number
): (...args: Parameters<T>) => void {
let timeout: number | undefined;
return function executedFunction(...args: Parameters<T>) {
const later = () => {
clearTimeout(timeout);
func(...args);
};
clearTimeout(timeout);
timeout = window.setTimeout(later, wait);
};
}
export function throttle<T extends (...args: any[]) => any>(
func: T,
limit: number
): (...args: Parameters<T>) => void {
let inThrottle: boolean;
return function executedFunction(...args: Parameters<T>) {
if (!inThrottle) {
func.apply(this, args);
inThrottle = true;
setTimeout(() => inThrottle = false, limit);
}
};
}
export function formatFileSize(bytes: number): string {
if (bytes === 0) return '0 Bytes';
const k = 1024;
const sizes = ['Bytes', 'KB', 'MB', 'GB'];
const i = Math.floor(Math.log(bytes) / Math.log(k));
return Math.round(bytes / Math.pow(k, i) * 100) / 100 + ' ' + sizes[i];
}
export function isInViewport(element: Element, margin = 0): boolean {
const rect = element.getBoundingClientRect();
return (
rect.top >= -margin &&
rect.left >= -margin &&
rect.bottom <= (window.innerHeight || document.documentElement.clientHeight) + margin &&
rect.right <= (window.innerWidth || document.documentElement.clientWidth) + margin
);
}
export class PerformanceMonitor {
private static marks = new Map<string, number>();
private static measures: Array<{ name: string; duration: number }> = [];
public static mark(name: string) {
this.marks.set(name, performance.now());
}
public static measure(name: string, startMark: string) {
const start = this.marks.get(startMark);
if (start) {
const duration = performance.now() - start;
this.measures.push({ name, duration });
this.marks.delete(startMark);
return duration;
}
return 0;
}
public static getReport() {
const report = {
measures: [...this.measures],
averages: {} as Record<string, number>,
};
// Calculate averages for repeated measures
const grouped = new Map<string, number[]>();
for (const measure of this.measures) {
if (!grouped.has(measure.name)) {
grouped.set(measure.name, []);
}
grouped.get(measure.name)!.push(measure.duration);
}
for (const [name, durations] of grouped) {
report.averages[name] = durations.reduce((a, b) => a + b, 0) / durations.length;
}
return report;
}
public static clear() {
this.marks.clear();
this.measures = [];
}
}

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,69 @@
import { html } from '@design.estate/dees-element';
export const demo = () => html`
<style>
.demo-container {
padding: 40px;
background: #f5f5f5;
}
.demo-section {
margin-bottom: 40px;
}
h3 {
margin-bottom: 20px;
font-size: 18px;
font-weight: 600;
}
dees-pdf-viewer {
border: 1px solid #ddd;
border-radius: 8px;
overflow: hidden;
}
.viewer-tall {
height: 800px;
}
.viewer-compact {
height: 500px;
}
</style>
<div class="demo-container">
<div class="demo-section">
<h3>Full Featured PDF Viewer with Toolbar</h3>
<dees-pdf-viewer
class="viewer-tall"
pdfUrl="https://raw.githubusercontent.com/mozilla/pdf.js/ba2edeae/web/compressed.tracemonkey-pldi-09.pdf"
showToolbar="true"
showSidebar="false"
initialZoom="page-fit"
></dees-pdf-viewer>
</div>
<div class="demo-section">
<h3>PDF Viewer with Sidebar Navigation</h3>
<dees-pdf-viewer
class="viewer-tall"
pdfUrl="https://raw.githubusercontent.com/mozilla/pdf.js/ba2edeae/web/compressed.tracemonkey-pldi-09.pdf"
showToolbar="true"
showSidebar="true"
initialZoom="page-width"
></dees-pdf-viewer>
</div>
<div class="demo-section">
<h3>Compact Viewer without Controls</h3>
<dees-pdf-viewer
class="viewer-compact"
pdfUrl="https://raw.githubusercontent.com/mozilla/pdf.js/ba2edeae/examples/learning/helloworld.pdf"
showToolbar="false"
showSidebar="false"
initialZoom="auto"
></dees-pdf-viewer>
</div>
</div>
`;

View File

@@ -0,0 +1 @@
export * from './component.js';

View File

@@ -0,0 +1,291 @@
import { css, cssManager } from '@design.estate/dees-element';
export const viewerStyles = [
cssManager.defaultStyles,
css`
:host {
display: block;
width: 100%;
height: 600px;
position: relative;
font-family: 'Geist Sans', sans-serif;
contain: layout style;
}
.pdf-viewer {
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
background: ${cssManager.bdTheme('hsl(0 0% 97%)', 'hsl(215 20% 10%)')};
position: relative;
overflow: hidden;
}
.toolbar {
height: 48px;
background: ${cssManager.bdTheme('hsl(0 0% 100%)', 'hsl(215 20% 15%)')};
border-bottom: 1px solid ${cssManager.bdTheme('hsl(214 31% 91%)', 'hsl(217 25% 22%)')};
display: flex;
align-items: center;
padding: 0 16px;
gap: 16px;
flex-shrink: 0;
}
.toolbar-group {
display: flex;
align-items: center;
gap: 4px;
}
.toolbar-group--end {
margin-left: auto;
}
.toolbar-button {
width: 32px;
height: 32px;
border-radius: 6px;
background: transparent;
border: none;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: background 0.15s ease;
color: ${cssManager.bdTheme('hsl(215 16% 45%)', 'hsl(215 16% 75%)')};
}
.toolbar-button:hover:not(:disabled) {
background: ${cssManager.bdTheme('hsl(214 31% 92%)', 'hsl(217 25% 22%)')};
}
.toolbar-button:disabled {
opacity: 0.4;
cursor: not-allowed;
}
.toolbar-button dees-icon {
font-size: 16px;
}
.page-info {
display: flex;
align-items: center;
gap: 8px;
padding: 0 8px;
font-size: 14px;
color: ${cssManager.bdTheme('hsl(215 16% 45%)', 'hsl(215 16% 75%)')};
}
.page-input {
width: 48px;
height: 28px;
border-radius: 4px;
border: 1px solid ${cssManager.bdTheme('hsl(214 31% 86%)', 'hsl(217 25% 28%)')};
background: ${cssManager.bdTheme('hsl(0 0% 100%)', 'hsl(215 20% 12%)')};
color: ${cssManager.bdTheme('hsl(222 47% 11%)', 'hsl(210 20% 96%)')};
text-align: center;
font-size: 14px;
font-family: inherit;
outline: none;
}
.page-input:focus {
border-color: ${cssManager.bdTheme('hsl(217 91% 60%)', 'hsl(213 93% 68%)')};
}
.page-separator {
color: ${cssManager.bdTheme('hsl(215 16% 60%)', 'hsl(215 16% 50%)')};
}
.zoom-level {
font-size: 13px;
font-weight: 500;
min-width: 48px;
text-align: center;
}
.viewer-container {
flex: 1;
display: flex;
overflow: hidden;
position: relative;
min-height: 0;
}
.sidebar {
width: 200px;
background: ${cssManager.bdTheme('hsl(0 0% 100%)', 'hsl(215 20% 15%)')};
border-right: 1px solid ${cssManager.bdTheme('hsl(214 31% 91%)', 'hsl(217 25% 22%)')};
display: flex;
flex-direction: column;
height: 100%;
overflow: hidden;
}
.sidebar-header {
height: 40px;
padding: 0 12px;
display: flex;
align-items: center;
justify-content: space-between;
border-bottom: 1px solid ${cssManager.bdTheme('hsl(214 31% 91%)', 'hsl(217 25% 22%)')};
font-size: 13px;
font-weight: 600;
color: ${cssManager.bdTheme('hsl(215 16% 45%)', 'hsl(215 16% 75%)')};
}
.sidebar-close {
width: 24px;
height: 24px;
border-radius: 4px;
background: transparent;
border: none;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
color: ${cssManager.bdTheme('hsl(215 16% 45%)', 'hsl(215 16% 75%)')};
transition: background 0.15s ease;
}
.sidebar-close:hover {
background: ${cssManager.bdTheme('hsl(214 31% 92%)', 'hsl(217 25% 22%)')};
}
.sidebar-close dees-icon {
font-size: 14px;
}
.sidebar-content {
flex: 1;
overflow-y: auto;
overflow-x: hidden;
padding: 12px;
display: block;
overscroll-behavior: contain;
min-height: 0;
}
.thumbnail {
position: relative;
border-radius: 8px;
overflow: hidden;
cursor: pointer;
border: 2px solid transparent;
transition: border-color 0.15s ease;
background: ${cssManager.bdTheme('hsl(0 0% 95%)', 'hsl(215 20% 18%)')};
display: block;
width: 100%;
margin-bottom: 12px;
/* Default A4 aspect ratio (297mm / 210mm ≈ 1.414) */
min-height: calc(176px * 1.414);
}
.thumbnail:last-child {
margin-bottom: 0;
}
.thumbnail:hover {
border-color: ${cssManager.bdTheme('hsl(214 31% 86%)', 'hsl(217 25% 35%)')};
}
.thumbnail.active {
border-color: ${cssManager.bdTheme('hsl(217 91% 60%)', 'hsl(213 93% 68%)')};
}
.thumbnail-canvas {
display: block;
width: 100%;
height: auto;
image-rendering: -webkit-optimize-contrast;
image-rendering: crisp-edges;
}
.thumbnail-number {
position: absolute;
bottom: 4px;
right: 4px;
background: ${cssManager.bdTheme('rgba(0, 0, 0, 0.7)', 'rgba(0, 0, 0, 0.8)')};
color: white;
font-size: 11px;
font-weight: 500;
padding: 2px 6px;
border-radius: 4px;
}
.viewer-main {
flex: 1;
overflow-y: auto;
overflow-x: hidden;
padding: 20px;
scroll-behavior: smooth;
overscroll-behavior: contain;
min-height: 0;
position: relative;
}
.loading-container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100%;
gap: 16px;
color: ${cssManager.bdTheme('hsl(215 16% 45%)', 'hsl(215 16% 75%)')};
}
.loading-spinner {
width: 32px;
height: 32px;
border-radius: 50%;
border: 3px solid ${cssManager.bdTheme('hsl(214 31% 86%)', 'hsl(217 25% 28%)')};
border-top-color: ${cssManager.bdTheme('hsl(217 91% 60%)', 'hsl(213 93% 68%)')};
animation: spin 0.8s linear infinite;
}
@keyframes spin {
to {
transform: rotate(360deg);
}
}
.loading-text {
font-size: 14px;
font-weight: 500;
}
.pages-container {
display: flex;
flex-direction: column;
align-items: center;
gap: 20px;
}
.page-wrapper {
display: flex;
justify-content: center;
width: 100%;
}
.canvas-container {
background: white;
box-shadow: 0 2px 12px ${cssManager.bdTheme('rgba(0, 0, 0, 0.1)', 'rgba(0, 0, 0, 0.3)')};
border-radius: 4px;
overflow: hidden;
display: inline-block;
}
.page-canvas {
display: block;
image-rendering: -webkit-optimize-contrast;
image-rendering: crisp-edges;
}
.pdf-viewer.with-sidebar .viewer-main {
margin-left: 0;
}
`,
];

View File

@@ -1,6 +1,8 @@
import { DeesElement, property, html, customElement, domtools, type TemplateResult, type CSSResult, } from '@design.estate/dees-element'; import { DeesElement, property, html, customElement, domtools, type TemplateResult, type CSSResult, } from '@design.estate/dees-element';
import { Deferred } from '@push.rocks/smartpromise'; import { Deferred } from '@push.rocks/smartpromise';
import { DeesContextmenu } from '../dees-contextmenu.js';
import '../dees-icon.js';
// import type pdfjsTypes from 'pdfjs-dist'; // import type pdfjsTypes from 'pdfjs-dist';
@@ -10,6 +12,11 @@ declare global {
} }
} }
/**
* @deprecated Use DeesPdfViewer or DeesPdfPreview instead
* - DeesPdfViewer: Full-featured PDF viewing with controls, navigation, zoom
* - DeesPdfPreview: Lightweight, performance-optimized preview for grids
*/
@customElement('dees-pdf') @customElement('dees-pdf')
export class DeesPdf extends DeesElement { export class DeesPdf extends DeesElement {
// DEMO // DEMO
@@ -18,9 +25,11 @@ export class DeesPdf extends DeesElement {
// INSTANCE // INSTANCE
@property() @property()
public pdfUrl: string = accessor pdfUrl: string =
'https://raw.githubusercontent.com/mozilla/pdf.js/ba2edeae/examples/learning/helloworld.pdf'; 'https://raw.githubusercontent.com/mozilla/pdf.js/ba2edeae/examples/learning/helloworld.pdf';
constructor() { constructor() {
super(); super();
@@ -44,9 +53,15 @@ export class DeesPdf extends DeesElement {
#pdfcanvas { #pdfcanvas {
box-shadow: 0px 0px 5px #ccc; box-shadow: 0px 0px 5px #ccc;
width: 100%; width: 100%;
cursor: pointer;
} }
</style> </style>
<canvas id="pdfcanvas" .height=${0} .width=${0}></canvas> <canvas
id="pdfcanvas"
.height=${0}
.width=${0}
></canvas>
`; `;
} }
@@ -64,6 +79,8 @@ export class DeesPdf extends DeesElement {
} }
await DeesPdf.pdfJsReady; await DeesPdf.pdfJsReady;
this.displayContent(); this.displayContent();
} }
public async displayContent() { public async displayContent() {
@@ -107,4 +124,37 @@ export class DeesPdf extends DeesElement {
} }
); );
} }
}
/**
* Provide context menu items for the global context menu handler
*/
public getContextMenuItems() {
return [
{
name: 'Open PDF in New Tab',
iconName: 'lucide:ExternalLink',
action: async () => {
window.open(this.pdfUrl, '_blank');
}
},
{ divider: true },
{
name: 'Copy PDF URL',
iconName: 'lucide:Copy',
action: async () => {
await navigator.clipboard.writeText(this.pdfUrl);
}
},
{
name: 'Download PDF',
iconName: 'lucide:Download',
action: async () => {
const link = document.createElement('a');
link.href = this.pdfUrl;
link.download = this.pdfUrl.split('/').pop() || 'document.pdf';
link.click();
}
}
];
}
}

View File

@@ -0,0 +1 @@
export * from './component.js';

View File

@@ -26,7 +26,7 @@ export class DeesProgressbar extends DeesElement {
@property({ @property({
type: Number, type: Number,
}) })
public percentage = 0; accessor percentage = 0;
public static styles = [ public static styles = [
cssManager.defaultStyles, cssManager.defaultStyles,

View File

@@ -99,12 +99,10 @@ export class DeesSearchbar extends DeesElement {
// INSTANCE // INSTANCE
@property() @property()
public filters = []; accessor filters = [];
@query('input')
public searchInput!: HTMLInputElement; public searchInput!: HTMLInputElement;
@query('.searchButton')
public searchButton!: HTMLElement; public searchButton!: HTMLElement;
constructor() { constructor() {

View File

@@ -33,22 +33,22 @@ export class DeesShoppingProductcard extends DeesElement {
public static demo = demoFunc; public static demo = demoFunc;
@property({ type: Object }) @property({ type: Object })
public productData: IProductData = { accessor productData: IProductData = {
name: 'Product Name', name: 'Product Name',
price: 0, price: 0,
}; };
@property({ type: Number }) @property({ type: Number })
public quantity: number = 0; accessor quantity: number = 0;
@property({ type: Boolean }) @property({ type: Boolean })
public showQuantitySelector: boolean = true; accessor showQuantitySelector: boolean = true;
@property({ type: Boolean }) @property({ type: Boolean })
public selectable: boolean = false; accessor selectable: boolean = false;
@property({ type: Boolean }) @property({ type: Boolean })
public selected: boolean = false; accessor selected: boolean = false;
public static styles = [ public static styles = [
cssManager.defaultStyles, cssManager.defaultStyles,

View File

@@ -35,16 +35,16 @@ export class DeesSimpleAppDash extends DeesElement {
// INSTANCE // INSTANCE
@property() @property()
public name: string = 'Application Dashboard'; accessor name: string = 'Application Dashboard';
@property({ type: Array }) @property({ type: Array })
public viewTabs: IView[] = []; accessor viewTabs: IView[] = [];
@property({ type: String }) @property({ type: String })
public terminalSetupCommand: string = `echo "Terminal ready"`; accessor terminalSetupCommand: string = `echo "Terminal ready"`;
@state() @state()
private selectedView: IView; accessor selectedView: IView;
public static styles = [ public static styles = [

View File

@@ -23,7 +23,7 @@ export class DeesSimpleLogin extends DeesElement {
// INSTANCE // INSTANCE
@property() @property()
public name: string = 'Application'; accessor name: string = 'Application';
public static styles = [ public static styles = [
cssManager.defaultStyles, cssManager.defaultStyles,

View File

@@ -48,28 +48,28 @@ export class DeesSpeechbubble extends DeesElement {
@property({ @property({
type: Object, type: Object,
}) })
reffedElement: HTMLElement; accessor reffedElement: HTMLElement;
@property({ @property({
type: String, type: String,
reflect: true, reflect: true,
}) })
public text: string; accessor text: string;
@property({ @property({
type: Boolean, type: Boolean,
}) })
public wave: boolean = false; accessor wave: boolean = false;
@property({ @property({
type: Boolean, type: Boolean,
}) })
public manifested = false; accessor manifested = false;
@property({ @property({
type: String, type: String,
}) })
public status: 'normal' | 'pending' | 'success' | 'error' = 'normal'; accessor status: 'normal' | 'pending' | 'success' | 'error' = 'normal';
public windowLayer: DeesWindowLayer; public windowLayer: DeesWindowLayer;

View File

@@ -31,15 +31,15 @@ export class DeesSpinner extends DeesElement {
@property({ @property({
type: Number, type: Number,
}) })
public size = 20; accessor size = 20;
@property({ @property({
type: String, type: String,
}) })
public bnw: boolean = false; accessor bnw: boolean = false;
@property() @property()
public status: 'normal' | 'pending' | 'success' | 'error' = 'normal'; accessor status: 'normal' | 'pending' | 'success' | 'error' = 'normal';
constructor() { constructor() {
super(); super();

View File

@@ -54,25 +54,25 @@ export class DeesStatsGrid extends DeesElement {
public static demo = demoFunc; public static demo = demoFunc;
@property({ type: Array }) @property({ type: Array })
public tiles: IStatsTile[] = []; accessor tiles: IStatsTile[] = [];
@property({ type: Number }) @property({ type: Number })
public minTileWidth: number = 250; accessor minTileWidth: number = 250;
@property({ type: Number }) @property({ type: Number })
public gap: number = 16; accessor gap: number = 16;
@property({ type: Array }) @property({ type: Array })
public gridActions: plugins.tsclass.website.IMenuItem[] = []; accessor gridActions: plugins.tsclass.website.IMenuItem[] = [];
@state() @state()
private contextMenuVisible = false; accessor contextMenuVisible = false;
@state() @state()
private contextMenuPosition = { x: 0, y: 0 }; accessor contextMenuPosition = { x: 0, y: 0 };
@state() @state()
private contextMenuActions: plugins.tsclass.website.IMenuItem[] = []; accessor contextMenuActions: plugins.tsclass.website.IMenuItem[] = [];
public static styles = [ public static styles = [
cssManager.defaultStyles, cssManager.defaultStyles,

View File

@@ -37,12 +37,12 @@ export class DeesStepper extends DeesElement {
@property({ @property({
type: Array, type: Array,
}) })
public steps: IStep[] = []; accessor steps: IStep[] = [];
@property({ @property({
type: Object, type: Object,
}) })
public selectedStep: IStep; accessor selectedStep: IStep;
constructor() { constructor() {
super(); super();

View File

@@ -34,38 +34,38 @@ export class DeesTable<T> extends DeesElement {
@property({ @property({
type: String, type: String,
}) })
public heading1: string = 'heading 1'; accessor heading1: string = 'heading 1';
@property({ @property({
type: String, type: String,
}) })
public heading2: string = 'heading 2'; accessor heading2: string = 'heading 2';
@property({ @property({
type: Array, type: Array,
}) })
public data: T[] = []; accessor data: T[] = [];
// dees-form compatibility ----------------------------------------- // dees-form compatibility -----------------------------------------
@property({ @property({
type: String, type: String,
}) })
public key: string; accessor key: string;
@property({ @property({
type: String, type: String,
}) })
public label: string; accessor label: string;
@property({ @property({
type: Boolean, type: Boolean,
}) })
public disabled: boolean = false; accessor disabled: boolean = false;
@property({ @property({
type: Boolean, type: Boolean,
}) })
public required: boolean = false; accessor required: boolean = false;
get value() { get value() {
return this.data; return this.data;
@@ -81,77 +81,77 @@ export class DeesTable<T> extends DeesElement {
type: String, type: String,
reflect: true, reflect: true,
}) })
public dataName: string; accessor dataName: string;
@property({ @property({
type: Boolean, type: Boolean,
}) })
searchable: boolean = true; accessor searchable: boolean = true;
@property({ @property({
type: Array, type: Array,
}) })
public dataActions: ITableAction<T>[] = []; accessor dataActions: ITableAction<T>[] = [];
// schema-first columns API // schema-first columns API
@property({ attribute: false }) @property({ attribute: false })
public columns: Column<T>[] = []; accessor columns: Column<T>[] = [];
/** /**
* Stable row identity for selection and updates. If provided as a function, * Stable row identity for selection and updates. If provided as a function,
* it is only usable as a property (not via attribute). * it is only usable as a property (not via attribute).
*/ */
@property({ attribute: false }) @property({ attribute: false })
public rowKey?: keyof T | ((row: T) => string); accessor rowKey: keyof T | ((row: T) => string) | undefined = undefined;
/** /**
* When true and columns are provided, merge any missing columns discovered * When true and columns are provided, merge any missing columns discovered
* via displayFunction into the effective schema. * via displayFunction into the effective schema.
*/ */
@property({ type: Boolean }) @property({ type: Boolean })
public augmentFromDisplayFunction: boolean = false; accessor augmentFromDisplayFunction: boolean = false;
@property({ @property({
attribute: false, attribute: false,
}) })
public displayFunction: TDisplayFunction = (itemArg: T) => itemArg as any; accessor displayFunction: TDisplayFunction = (itemArg: T) => itemArg as any;
@property({ @property({
attribute: false, attribute: false,
}) })
public reverseDisplayFunction: (itemArg: any) => T = (itemArg: any) => itemArg as T; accessor reverseDisplayFunction: (itemArg: any) => T = (itemArg: any) => itemArg as T;
@property({ @property({
type: Object, type: Object,
}) })
public selectedDataRow: T; accessor selectedDataRow: T;
@property({ @property({
type: Array, type: Array,
}) })
public editableFields: string[] = []; accessor editableFields: string[] = [];
@property({ @property({
type: Boolean, type: Boolean,
reflect: true, reflect: true,
attribute: 'show-vertical-lines' attribute: 'show-vertical-lines'
}) })
public showVerticalLines: boolean = false; accessor showVerticalLines: boolean = false;
@property({ @property({
type: Boolean, type: Boolean,
reflect: true, reflect: true,
attribute: 'show-horizontal-lines' attribute: 'show-horizontal-lines'
}) })
public showHorizontalLines: boolean = false; accessor showHorizontalLines: boolean = false;
@property({ @property({
type: Boolean, type: Boolean,
reflect: true, reflect: true,
attribute: 'show-grid' attribute: 'show-grid'
}) })
public showGrid: boolean = true; accessor showGrid: boolean = true;
public files: File[] = []; public files: File[] = [];
public fileWeakMap = new WeakMap(); public fileWeakMap = new WeakMap();
@@ -160,32 +160,32 @@ export class DeesTable<T> extends DeesElement {
// simple client-side sorting (Phase 1) // simple client-side sorting (Phase 1)
@property({ attribute: false }) @property({ attribute: false })
private sortKey?: string; accessor sortKey: string | undefined = undefined;
@property({ attribute: false }) @property({ attribute: false })
private sortDir: 'asc' | 'desc' | null = null; accessor sortDir: 'asc' | 'desc' | null = null;
// simple client-side filtering (Phase 1) // simple client-side filtering (Phase 1)
@property({ type: String }) @property({ type: String })
public filterText: string = ''; accessor filterText: string = '';
// per-column quick filters // per-column quick filters
@property({ attribute: false }) @property({ attribute: false })
public columnFilters: Record<string, string> = {}; accessor columnFilters: Record<string, string> = {};
@property({ type: Boolean, attribute: 'show-column-filters' }) @property({ type: Boolean, attribute: 'show-column-filters' })
public showColumnFilters: boolean = false; accessor showColumnFilters: boolean = false;
@property({ type: Boolean, reflect: true, attribute: 'sticky-header' }) @property({ type: Boolean, reflect: true, attribute: 'sticky-header' })
public stickyHeader: boolean = false; accessor stickyHeader: boolean = false;
// search row state // search row state
@property({ type: String }) @property({ type: String })
public searchMode: 'table' | 'data' | 'server' = 'table'; accessor searchMode: 'table' | 'data' | 'server' = 'table';
private __searchTextSub?: { unsubscribe?: () => void }; private __searchTextSub?: { unsubscribe?: () => void };
private __searchModeSub?: { unsubscribe?: () => void }; private __searchModeSub?: { unsubscribe?: () => void };
// selection (Phase 1) // selection (Phase 1)
@property({ type: String }) @property({ type: String })
public selectionMode: 'none' | 'single' | 'multi' = 'none'; accessor selectionMode: 'none' | 'single' | 'multi' = 'none';
@property({ attribute: false }) @property({ attribute: false })
private selectedIds: Set<string> = new Set(); accessor selectedIds: Set<string> = new Set();
private _rowIdMap = new WeakMap<object, string>(); private _rowIdMap = new WeakMap<object, string>();
private _rowIdCounter = 0; private _rowIdCounter = 0;

View File

@@ -33,10 +33,10 @@ export class DeesTerminal extends DeesElement {
private resizeObserver: ResizeObserver; private resizeObserver: ResizeObserver;
@property() @property()
public setupCommand = `pnpm install @serve.zone/cli && servezone cli\n`; accessor setupCommand = `pnpm install @serve.zone/cli && servezone cli\n`;
@property() @property()
environment: {[key: string]: string} = {}; accessor environment: {[key: string]: string} = {};
// exposing webcontainer // exposing webcontainer
private webcontainerDeferred = new domtools.plugins.smartpromise.Deferred<webcontainer.WebContainer>(); private webcontainerDeferred = new domtools.plugins.smartpromise.Deferred<webcontainer.WebContainer>();

View File

@@ -131,16 +131,16 @@ export class DeesToast extends DeesElement {
// INSTANCE // INSTANCE
@property({ type: String }) @property({ type: String })
public message: string = ''; accessor message: string = '';
@property({ type: String }) @property({ type: String })
public type: ToastType = 'info'; accessor type: ToastType = 'info';
@property({ type: Number }) @property({ type: Number })
public duration: number = 3000; accessor duration: number = 3000;
@property({ type: Boolean, reflect: true }) @property({ type: Boolean, reflect: true })
public isVisible: boolean = false; accessor isVisible: boolean = false;
constructor() { constructor() {
super(); super();

View File

@@ -31,12 +31,12 @@ export class DeesUpdater extends DeesElement {
@property({ @property({
type: String, type: String,
}) })
currentVersion: string; accessor currentVersion: string;
@property({ @property({
type: String, type: String,
}) })
updatedVersion: string; accessor updatedVersion: string;
constructor() { constructor() {
super(); super();

View File

@@ -26,12 +26,12 @@ export class DeesWindowControls extends DeesElement {
@property({ @property({
reflect: true, reflect: true,
}) })
public type: 'mac' | 'linux' | 'windows' = 'mac'; accessor type: 'mac' | 'linux' | 'windows' = 'mac';
@property({ @property({
reflect: true, reflect: true,
}) })
public position: 'left' | 'right' = 'left'; accessor position: 'left' | 'right' = 'left';
public static styles = [ public static styles = [
cssManager.defaultStyles, cssManager.defaultStyles,

View File

@@ -30,21 +30,21 @@ export class DeesWindowLayer extends DeesElement {
} }
@state() @state()
public options: IOptions_DeesWindowLayer = { accessor options: IOptions_DeesWindowLayer = {
blur: false blur: false
}; };
@state() @state()
private backdropZIndex: number = 1000; accessor backdropZIndex: number = 1000;
@state() @state()
private contentZIndex: number = 1001; accessor contentZIndex: number = 1001;
// INSTANCE // INSTANCE
@property({ @property({
type: Boolean type: Boolean
}) })
public visible = false; accessor visible = false;
constructor() { constructor() {
super(); super();

View File

@@ -48,7 +48,9 @@ export * from './dees-mobilenavigation.js';
export * from './dees-modal.js'; export * from './dees-modal.js';
export * from './dees-input-multitoggle.js'; export * from './dees-input-multitoggle.js';
export * from './dees-panel.js'; export * from './dees-panel.js';
export * from './dees-pdf.js'; export * from './dees-pdf/index.js'; // @deprecated - Use dees-pdf-viewer or dees-pdf-preview instead
export * from './dees-pdf-viewer/index.js';
export * from './dees-pdf-preview/index.js';
export * from './dees-searchbar.js'; export * from './dees-searchbar.js';
export * from './dees-shopping-productcard.js'; export * from './dees-shopping-productcard.js';
export * from './dees-simple-appdash.js'; export * from './dees-simple-appdash.js';

View File

@@ -26,43 +26,43 @@ export class DeesInputProfilePicture extends DeesInputBase<DeesInputProfilePictu
public static demo = demoFunc; public static demo = demoFunc;
@property({ type: String }) @property({ type: String })
public value: string = ''; // Base64 encoded image or URL accessor value: string = ''; // Base64 encoded image or URL
@property({ type: String }) @property({ type: String })
public shape: ProfileShape = 'round'; accessor shape: ProfileShape = 'round';
@property({ type: Number }) @property({ type: Number })
public size: number = 120; accessor size: number = 120;
@property({ type: String }) @property({ type: String })
public placeholder: string = ''; accessor placeholder: string = '';
@property({ type: Boolean }) @property({ type: Boolean })
public allowUpload: boolean = true; accessor allowUpload: boolean = true;
@property({ type: Boolean }) @property({ type: Boolean })
public allowDelete: boolean = true; accessor allowDelete: boolean = true;
@property({ type: Number }) @property({ type: Number })
public maxFileSize: number = 5 * 1024 * 1024; // 5MB accessor maxFileSize: number = 5 * 1024 * 1024; // 5MB
@property({ type: Array }) @property({ type: Array })
public acceptedFormats: string[] = ['image/jpeg', 'image/png', 'image/webp']; accessor acceptedFormats: string[] = ['image/jpeg', 'image/png', 'image/webp'];
@property({ type: Number }) @property({ type: Number })
public outputSize: number = 800; // Output resolution in pixels accessor outputSize: number = 800; // Output resolution in pixels
@property({ type: Number }) @property({ type: Number })
public outputQuality: number = 0.95; // 0-1 quality for JPEG accessor outputQuality: number = 0.95; // 0-1 quality for JPEG
@state() @state()
private isHovered: boolean = false; accessor isHovered: boolean = false;
@state() @state()
private isDragging: boolean = false; accessor isDragging: boolean = false;
@state() @state()
private isLoading: boolean = false; accessor isLoading: boolean = false;
private modalInstance: ProfilePictureModal | null = null; private modalInstance: ProfilePictureModal | null = null;

View File

@@ -21,25 +21,25 @@ import type { ProfileShape } from './dees-input-profilepicture.js';
@customElement('dees-profilepicture-modal') @customElement('dees-profilepicture-modal')
export class ProfilePictureModal extends DeesElement { export class ProfilePictureModal extends DeesElement {
@property({ type: String }) @property({ type: String })
public initialImage: string = ''; accessor initialImage: string = '';
@property({ type: String }) @property({ type: String })
public shape: ProfileShape = 'round'; accessor shape: ProfileShape = 'round';
@property({ type: Number }) @property({ type: Number })
public outputSize: number = 800; accessor outputSize: number = 800;
@property({ type: Number }) @property({ type: Number })
public outputQuality: number = 0.95; accessor outputQuality: number = 0.95;
@state() @state()
private currentStep: 'crop' | 'preview' = 'crop'; accessor currentStep: 'crop' | 'preview' = 'crop';
@state() @state()
private croppedImage: string = ''; accessor croppedImage: string = '';
@state() @state()
private isProcessing: boolean = false; accessor isProcessing: boolean = false;
private cropper: ImageCropper | null = null; private cropper: ImageCropper | null = null;
private windowLayer: any; private windowLayer: any;

View File

@@ -1,7 +1,5 @@
{ {
"compilerOptions": { "compilerOptions": {
"experimentalDecorators": true,
"useDefineForClassFields": false,
"target": "ES2022", "target": "ES2022",
"module": "NodeNext", "module": "NodeNext",
"moduleResolution": "NodeNext", "moduleResolution": "NodeNext",