@pegasusheavy/ngx-tailwindcss 0.3.3 โ†’ 0.3.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/.cursorignore ADDED
@@ -0,0 +1,61 @@
1
+ # Dependencies
2
+ node_modules/
3
+ .pnpm-store/
4
+
5
+ # Build outputs
6
+ dist/
7
+ .angular/
8
+ .ng-cache/
9
+ coverage/
10
+
11
+ # IDE and editor
12
+ .idea/
13
+ .vscode/
14
+ *.swp
15
+ *.swo
16
+ *~
17
+
18
+ # OS files
19
+ .DS_Store
20
+ Thumbs.db
21
+
22
+ # Logs
23
+ *.log
24
+ npm-debug.log*
25
+ yarn-debug.log*
26
+ yarn-error.log*
27
+ pnpm-debug.log*
28
+
29
+ # Lock files (large and auto-generated)
30
+ pnpm-lock.yaml
31
+ package-lock.json
32
+ yarn.lock
33
+
34
+ # Test artifacts
35
+ .vitest/
36
+ __snapshots__/
37
+
38
+ # Generated files
39
+ *.tsbuildinfo
40
+ *.ngfactory.ts
41
+ *.ngsummary.json
42
+ *.metadata.json
43
+
44
+ # Documentation build
45
+ docs/.angular/
46
+ docs/dist/
47
+ docs/node_modules/
48
+
49
+ # Screenshots (for PR/debugging)
50
+ *.png
51
+ *.jpg
52
+ *.jpeg
53
+ *.gif
54
+ *.webp
55
+
56
+ # Temporary files
57
+ tmp/
58
+ temp/
59
+ .tmp/
60
+ .temp/
61
+
@@ -0,0 +1,19 @@
1
+ # Build outputs
2
+ dist/
3
+ out-tsc/
4
+ .angular/
5
+ coverage/
6
+
7
+ # Dependencies
8
+ node_modules/
9
+ pnpm-lock.yaml
10
+ package-lock.json
11
+
12
+ # IDE
13
+ .vscode/
14
+ .idea/
15
+
16
+ # Generated files
17
+ *.d.ts
18
+ *.tsbuildinfo
19
+
package/CHANGELOG.md ADDED
@@ -0,0 +1,323 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
+ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
+
8
+ ## [0.3.4] - 2025-12-31
9
+
10
+ ### ๐Ÿ› Bug Fixes
11
+
12
+ - **Volume Dial**: Refactored to use Angular's `model()` input for proper two-way binding support, fixing `NG0303` warning about `value` not being a known property
13
+ - **Pagination**: Fixed `NG0955` duplicate keys warning by using unique identifiers for left/right ellipsis in page number arrays
14
+ - **Native Components**: Fixed bundler resolution errors for Tauri/Electron imports in web-only applications by implementing dynamic import utilities that prevent static analysis
15
+ - **Dock Service**: Fixed `setBadge` method to properly use the `text` parameter by appending badge count to window title in Tauri (was previously calling `getCurrentWindow()` without using the result)
16
+
17
+ ### ๐Ÿงน Code Quality
18
+
19
+ - Removed redundant `valueChange` output from volume dial (now handled automatically by `model()`)
20
+ - Cleaned up unused imports in volume dial component
21
+ - Added `dynamic-import.ts` utility for runtime-only imports of optional dependencies (Electron, Tauri)
22
+ - Updated native services to use dynamic import utilities: FilePickerService, SystemTrayService, DockService, NativeNotificationsService, UpdateService
23
+
24
+ ## [0.3.3] - 2025-12-31
25
+
26
+ ### ๐ŸŽจ Dark Mode & UI Improvements
27
+
28
+ - Added dark mode variants to ghost and outline button variants
29
+ - Fixed ghost button icon visibility in dark mode
30
+ - Fixed avatar ring shapes (add rounded-full to prevent square rings)
31
+ - Fixed notification badge clipping (move outside button overflow)
32
+ - Removed redundant rounded corners from terminal and log-viewer
33
+ - Increased terminal and log-viewer demo heights to prevent cutoff
34
+ - Fixed DAW mixer fader styling (rectangular instead of rounded)
35
+
36
+ ### ๐Ÿ“ฆ Dependencies
37
+
38
+ - Updated `@angular/router` to 21.0.6 to match other Angular packages
39
+
40
+ ## [0.3.2] - 2025-12-30
41
+
42
+ ### ๐Ÿ›  CI/CD Fixes
43
+
44
+ - Fixed GitHub Pages deployment for documentation
45
+ - Removed CNAME configuration for github.io deployment
46
+ - Deployed docs from main branch instead of release tags
47
+ - Allow docs deployment even if npm publish fails
48
+
49
+ ## [0.3.1] - 2025-12-29
50
+
51
+ ### ๐Ÿงช Testing
52
+
53
+ - Added comprehensive unit test coverage (1006 tests)
54
+ - All components now have spec files with thorough testing
55
+ - Fixed test utilities and improved test infrastructure
56
+
57
+ ## [0.3.0] - 2025-12-28
58
+
59
+ ### โœจ Native App UI Components
60
+
61
+ Complete suite of UI components for building desktop-like applications with Tauri, Electron, or PWAs:
62
+
63
+ #### Window & Chrome Components
64
+ - **Title Bar** - Custom draggable title bar with platform-specific controls
65
+ - **Window Controls** - macOS traffic lights, Windows, and Linux style buttons
66
+ - **Menu Bar** - Native-style menu bar with keyboard navigation
67
+ - **Context Menu** - Right-click context menus with submenus
68
+
69
+ #### Navigation Components
70
+ - **Sidebar** - Collapsible sidebar with tree navigation
71
+ - **File Tree** - Hierarchical file/folder explorer
72
+ - **Breadcrumb Navigation** - Path-based breadcrumbs
73
+ - **Tab Bar** - Document tabs with close/reorder
74
+
75
+ #### Search & Commands
76
+ - **Command Palette** - VS Code-style command palette (Cmd+K)
77
+ - **Search Bar** - Global search with suggestions
78
+ - **Quick Switcher** - Quick file/tab switcher
79
+
80
+ #### Settings & Preferences
81
+ - **Settings Panel** - Categorized settings layout
82
+ - **Preferences Dialog** - macOS-style preferences
83
+ - **Keyboard Shortcuts Editor** - Visual shortcut editor
84
+ - **Theme Selector** - Light/Dark/System mode toggle
85
+
86
+ #### Dialogs & Notifications
87
+ - **Alert Dialog** - Info, Warning, Error, Success variants
88
+ - **Confirm Dialog** - Confirmation with custom buttons
89
+ - **Prompt Dialog** - Text input prompts
90
+ - **About Dialog** - App info with version, credits
91
+ - **Update Dialog** - Update available notifications
92
+ - **Onboarding Wizard** - Step-by-step introductions
93
+
94
+ #### Data Display
95
+ - **Property Inspector** - Key-value property display
96
+ - **Terminal/Console** - Terminal output with ANSI colors
97
+ - **Log Viewer** - Log entries with filtering
98
+ - **Code/JSON Viewer** - Syntax highlighted code display
99
+
100
+ #### Status & Feedback
101
+ - **Status Bar** - Bottom status bar with sections
102
+ - **Toolbar** - Icon buttons with overflow menu
103
+ - **Activity Indicator** - Loading states
104
+ - **Connection Status** - Online/offline indicators
105
+
106
+ #### Interaction & Input
107
+ - **Resizable Panels** - Drag-to-resize split panels
108
+ - **Keyboard Shortcut Display** - Visual key combinations
109
+ - **Drag & Drop Directives** - twDraggable, twDropZone
110
+ - **Shortcut Directive** - twShortcut for keyboard bindings
111
+
112
+ ### ๐Ÿ”ง Services
113
+
114
+ - `NativeAppPlatformService` - Window management, system info
115
+ - `StorageService` - Local, secure, and file storage
116
+ - `IpcService` - Tauri/Electron IPC communication
117
+ - `UpdateService` - App update management
118
+ - `FilePickerService` - Native file/folder dialogs
119
+ - `SystemTrayService` - System tray icon and menu
120
+ - `NativeNotificationsService` - System notifications
121
+ - `DockService` - Dock/taskbar integration
122
+
123
+ ## [0.2.0] - 2025-12-26
124
+
125
+ ### โœจ Music/Audio Components
126
+
127
+ Professional DAW-style audio components for music applications:
128
+
129
+ - **Piano Keyboard** - Interactive piano with MIDI support
130
+ - **Volume Dial** - Rotary volume/parameter control
131
+ - **Mixer Faders** - Multi-channel mixing interface
132
+ - **Waveform Display** - Audio waveform visualization
133
+ - **Spectrum Analyzer** - Real-time frequency display
134
+ - **VU Meter** - Level metering with peak hold
135
+ - **Transport Controls** - Play/pause/stop/record buttons
136
+ - **Timeline Ruler** - Time/beat markers
137
+
138
+ ### ๐Ÿ”ง Audio Services
139
+
140
+ - `AudioContextService` - Web Audio API management
141
+ - `MidiService` - MIDI device integration
142
+ - `MobileSupportService` - Touch device optimization
143
+ - `AccessibilityService` - Screen reader support for audio controls
144
+
145
+ ## [0.1.2] - 2025-12-21
146
+
147
+ ### ๐Ÿ›  Packaging & Reliability
148
+
149
+ - Copied `README.md` into the published `/dist/ngx-tailwindcss` output so npmjs can render the project documentation even when the tarball is built from the compiled library.
150
+ - Added a `publish:dist` script that runs the production build and publishes directly from `dist/ngx-tailwindcss` with `--access public`, keeping the published artifact aligned with the compiled bundle.
151
+ - Raised the Vitest hook and test timeouts to 60โ€ฏs so the longer-running directive specs no longer abort the Husky pre-push step.
152
+
153
+ ## [0.1.1] - 2025-12-19
154
+
155
+ ### ๐Ÿ›  Packaging & Reliability
156
+
157
+ - Ensured the npm release is produced from the compiled `/dist/ngx-tailwindcss` output so the published tarball includes the FESM bundle, typings, and theme CSS instead of just docs/config files.
158
+ - Replaced the deprecated `husky install` step with a runtime `node -e "import('husky')..."` bootstrap and added dedicated pre-commit/pre-push/commit-msg scripts so lint/test/commitlint hooks run reliably without invoking the removed shim.
159
+
160
+ ## [0.1.0] - 2025-12-19
161
+
162
+ ### โœจ Features
163
+
164
+ - Introduced a configurable theming system based on CSS custom properties, the `TwThemeService`, and `provideTwTheme()` so apps can swap palettes, override individual components, and keep `dark:` styles optional.
165
+ - Added a default `theme.css` bundle with semantic light/dark values and exposed the CSS variables through `ng-packagr` assets, letting downstream consumers tweak every shade without touching the library source.
166
+ - Delivered `TwDatatablesComponent`, a ready-to-go dashboard table with headers, toolbar slots, filters, pagination, and selection wired to the existing `tw-table` data layer.
167
+
168
+ ### ๐Ÿ“ Content & polish
169
+
170
+ - Documented how to configure themes and added the DataTables docs page, ensuring the sidebar, nav, and theming routes all reach the new experiences.
171
+ - Rebalanced the docs palette so dark mode text, containers, stack/grid/spacer demos, sticky/scroll-area/columns/bleed examples, and tabs are legible, spacing works, and the navbar no longer looks cramped.
172
+ - Fixed the horizontal spacer sample to honor `size="auto"` by giving it `flex-1` and updated copy snippets throughout the docs to reflect the new UX.
173
+
174
+ ### ๐Ÿ›  Tooling & quality
175
+
176
+ - Added comprehensive `.npmignore`, removed single-use scripts, and wired Husky with linting pre-commit, test pre-push, and commitlint hooks.
177
+ - Documented the new changelog entry, ensured dark-mode demos showcase `dark:text-slate-300`, and kept existing Tailwind `dark:` utilities as safe defaults while giving users CSS variable overrides for Tw components.
178
+
179
+ ## [0.1.0-beta.1] - 2025-12-15
180
+
181
+ ### ๐ŸŽ‰ Initial Release
182
+
183
+ First public release of `@pegasus-heavy/ngx-tailwindcss` - A highly customizable Angular component library for Tailwind CSS 4+.
184
+
185
+ ### โœจ Features
186
+
187
+ #### Core
188
+ - **TwClassService** - Intelligent Tailwind class merging with conflict resolution
189
+ - **Global Configuration** - `provideTwConfig()` for app-wide default styling
190
+ - **Class Override System** - `classOverride` and `classReplace` inputs on all components
191
+
192
+ #### Form Components
193
+ - **Button** - Multiple variants (primary, secondary, outline, ghost, link, danger), sizes, icons, loading states
194
+ - **Input** - Text, password, email, number inputs with validation, prefixes, suffixes
195
+ - **Checkbox** - Single and group checkboxes with indeterminate state
196
+ - **Radio** - Radio buttons with group support
197
+ - **Switch** - Toggle switches with labels
198
+ - **Select** - Dropdown select with search, multi-select, custom templates
199
+ - **Slider** - Range sliders with single/dual handles, steps, marks
200
+ - **Rating** - Star rating with half-star support
201
+
202
+ #### Layout Components
203
+ - **Card** - Flexible card layouts with header, body, footer directives
204
+ - **Accordion** - Collapsible panels with single/multiple open modes
205
+ - **Tabs** - Tab navigation with lazy loading support
206
+ - **Divider** - Horizontal/vertical dividers with labels
207
+
208
+ #### Data Display Components
209
+ - **Badge** - Status indicators with variants and sizes
210
+ - **Avatar** - User avatars with images, initials, status indicators, groups
211
+ - **Chip** - Removable chips/tags
212
+ - **Table** - Data tables with sorting, pagination, row selection
213
+ - **Tree** - Hierarchical tree view with expand/collapse
214
+ - **Timeline** - Vertical timeline for events
215
+
216
+ #### Navigation Components
217
+ - **Breadcrumb** - Navigation breadcrumbs with custom separators
218
+ - **Pagination** - Page navigation with customizable display
219
+ - **Steps** - Step indicators for multi-step processes
220
+ - **Menu** - Context menus and menu bars
221
+
222
+ #### Feedback Components
223
+ - **Alert** - Dismissible alerts with variants (info, success, warning, error)
224
+ - **Toast** - Toast notifications with positioning and auto-dismiss
225
+ - **Progress** - Linear and circular progress bars
226
+ - **Spinner** - Loading spinners (border, dots, pulse, bars)
227
+ - **Skeleton** - Loading placeholders (text, cards, tables)
228
+
229
+ #### Overlay Components
230
+ - **Modal** - Dialog modals with sizes and animations
231
+ - **Dropdown** - Dropdown menus with portal rendering
232
+ - **Sidebar** - Slide-out sidebar panels
233
+ - **Popover** - Floating popovers with positioning
234
+
235
+ #### Media Components
236
+ - **Image** - Responsive images with lazy loading, preview mode
237
+
238
+ #### Utility Components
239
+ - **ScrollTop** - Scroll-to-top button
240
+
241
+ ### ๐ŸŽฏ Directives
242
+
243
+ #### Core Directives
244
+ - **TwRippleDirective** - Material-style ripple effects
245
+ - **TwTooltipDirective** - Tooltip on hover
246
+ - **TwClickOutsideDirective** - Detect clicks outside element
247
+ - **TwFocusTrapDirective** - Trap focus within modals
248
+
249
+ #### DX Enhancement Directives
250
+ - **TwAutoFocusDirective** - Auto-focus elements on render
251
+ - **TwInViewDirective** - Intersection Observer for visibility
252
+ - **TwLongPressDirective** - Detect long press gestures
253
+ - **TwDebounceClickDirective** - Debounce rapid clicks
254
+ - **TwCopyClipboardDirective** - Copy text to clipboard
255
+ - **TwKeyboardShortcutDirective** - Handle keyboard shortcuts
256
+ - **TwSwipeDirective** - Detect swipe gestures
257
+ - **TwResizeObserverDirective** - Observe element resize
258
+ - **TwLazyImageDirective** - Lazy load images
259
+ - **TwScrollToDirective** - Smooth scroll navigation
260
+ - **TwHoverClassDirective** - Dynamic hover classes
261
+ - **TwTrapScrollDirective** - Prevent scroll propagation
262
+
263
+ #### ARIA Accessibility Directives
264
+ - **TwSrOnlyDirective** - Screen reader only content
265
+ - **TwAnnounceDirective** - Screen reader announcements
266
+ - **TwAriaExpandedDirective** - Manage expanded state
267
+ - **TwAriaSelectedDirective** - Manage selected state
268
+ - **TwAriaCheckedDirective** - Manage checked state
269
+ - **TwAriaPressedDirective** - Manage pressed state
270
+ - **TwAriaDisabledDirective** - Manage disabled state
271
+ - **TwAriaHiddenDirective** - Hide from assistive tech
272
+ - **TwAriaLiveDirective** - Live region management
273
+ - **TwAriaCurrentDirective** - Current navigation item
274
+ - **TwAriaBusyDirective** - Busy/loading state
275
+ - **TwAriaDescribedbyDirective** - Description relationships
276
+ - **TwAriaLabelledbyDirective** - Label relationships
277
+ - **TwAriaLabelDirective** - Accessible labels
278
+ - **TwAriaValueDirective** - Range widget values
279
+ - **TwRoleDirective** - ARIA roles
280
+ - **TwAriaModalDirective** - Modal dialogs
281
+ - **TwAriaHaspopupDirective** - Popup indicators
282
+
283
+ ### โ™ฟ Accessibility
284
+ - **TwAriaService** - Screen reader announcements (polite/assertive)
285
+ - **AriaUtils** - Helper functions for ARIA IDs and attributes
286
+ - All components built with WCAG 2.1 guidelines
287
+ - Keyboard navigation support
288
+ - Focus management
289
+
290
+ ### ๐ŸŒ Internationalization
291
+ - **TwI18nService** - Translation and locale management
292
+ - **provideTwTranslations()** - Custom translation provider
293
+ - **provideTwLocale()** - Locale configuration
294
+ - Default English translations for all components
295
+ - RTL language support (Arabic, Hebrew, Persian, Urdu, etc.)
296
+ - String interpolation for dynamic content
297
+
298
+ ### ๐Ÿ“š Documentation
299
+ - Comprehensive docs website with live examples
300
+ - Interactive component demos
301
+ - Code snippets with copy functionality
302
+ - SEO optimized with Open Graph and Twitter Cards
303
+ - AI-friendly documentation (llms.txt, structured data)
304
+
305
+ ### ๐Ÿ› ๏ธ Developer Experience
306
+ - Angular 19, 20, and 21 support
307
+ - Standalone components (no NgModule required)
308
+ - Full TypeScript support with strict types
309
+ - Tree-shakeable exports
310
+ - Zero bundled CSS - works with your Tailwind config
311
+ - Signals-based reactive state management
312
+
313
+ [0.3.4]: https://github.com/pegasusheavy/ngx-tailwindcss/releases/tag/v0.3.4
314
+ [0.3.3]: https://github.com/pegasusheavy/ngx-tailwindcss/releases/tag/v0.3.3
315
+ [0.3.2]: https://github.com/pegasusheavy/ngx-tailwindcss/releases/tag/v0.3.2
316
+ [0.3.1]: https://github.com/pegasusheavy/ngx-tailwindcss/releases/tag/v0.3.1
317
+ [0.3.0]: https://github.com/pegasusheavy/ngx-tailwindcss/releases/tag/v0.3.0
318
+ [0.2.0]: https://github.com/pegasusheavy/ngx-tailwindcss/releases/tag/v0.2.0
319
+ [0.1.2]: https://github.com/pegasusheavy/ngx-tailwindcss/releases/tag/v0.1.2
320
+ [0.1.1]: https://github.com/pegasusheavy/ngx-tailwindcss/releases/tag/v0.1.1
321
+ [0.1.0]: https://github.com/pegasusheavy/ngx-tailwindcss/releases/tag/v0.1.0
322
+ [0.1.0-beta.1]: https://github.com/pegasusheavy/ngx-tailwindcss/releases/tag/v0.1.0-beta.1
323
+
package/LICENSE ADDED
@@ -0,0 +1,22 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 Pegasus Heavy Industries LLC
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
22
+
@@ -0,0 +1,4 @@
1
+ module.exports = {
2
+ extends: ['@commitlint/config-conventional'],
3
+ };
4
+
package/package.json CHANGED
@@ -1,18 +1,9 @@
1
1
  {
2
2
  "name": "@pegasusheavy/ngx-tailwindcss",
3
- "version": "0.3.3",
3
+ "version": "0.3.4",
4
+ "type": "module",
4
5
  "description": "A highly customizable Angular component library for Tailwind CSS 4+. Build beautiful, accessible UI components with full theming support, intelligent class merging, and zero bundled CSS. Features 30+ components including buttons, cards, modals, forms, tables, and more.",
5
6
  "license": "MIT",
6
- "exports": {
7
- "./styles/theme.css": "./styles/theme.css",
8
- "./package.json": {
9
- "default": "./package.json"
10
- },
11
- ".": {
12
- "types": "./types/pegasusheavy-ngx-tailwindcss.d.ts",
13
- "default": "./fesm2022/pegasusheavy-ngx-tailwindcss.mjs"
14
- }
15
- },
16
7
  "author": {
17
8
  "name": "Pegasus Heavy Industries LLC",
18
9
  "url": "https://pegasusheavy.github.io/ngx-tailwindcss"
@@ -25,13 +16,6 @@
25
16
  "bugs": {
26
17
  "url": "https://github.com/pegasusheavy/ngx-tailwindcss/issues"
27
18
  },
28
- "publishConfig": {
29
- "access": "public",
30
- "registry": "https://registry.npmjs.org/"
31
- },
32
- "engines": {
33
- "node": ">=18.0.0"
34
- },
35
19
  "keywords": [
36
20
  "angular",
37
21
  "tailwindcss",
@@ -84,16 +68,89 @@
84
68
  "stepper"
85
69
  ],
86
70
  "peerDependencies": {
71
+ "@angular/animations": "^19.0.0 || ^20.0.0 || ^21.0.0",
72
+ "@angular/cdk": "^19.0.0 || ^20.0.0 || ^21.0.0",
87
73
  "@angular/common": "^19.0.0 || ^20.0.0 || ^21.0.0",
88
74
  "@angular/core": "^19.0.0 || ^20.0.0 || ^21.0.0",
89
- "@angular/cdk": "^19.0.0 || ^20.0.0 || ^21.0.0",
90
- "@angular/forms": "^19.0.0 || ^20.0.0 || ^21.0.0",
91
- "@angular/animations": "^19.0.0 || ^20.0.0 || ^21.0.0"
75
+ "@angular/forms": "^19.0.0 || ^20.0.0 || ^21.0.0"
76
+ },
77
+ "devDependencies": {
78
+ "@analogjs/vite-plugin-angular": "^2.2.0",
79
+ "@angular-devkit/build-angular": "^21.0.4",
80
+ "@angular/animations": "^21.0.6",
81
+ "@angular/build": "^21.0.4",
82
+ "@angular/cdk": "^21.0.5",
83
+ "@angular/cli": "^21.0.4",
84
+ "@angular/common": "^21.0.6",
85
+ "@angular/compiler": "^21.0.6",
86
+ "@angular/compiler-cli": "^21.0.6",
87
+ "@angular/core": "^21.0.6",
88
+ "@angular/forms": "^21.0.6",
89
+ "@angular/platform-browser": "^21.0.6",
90
+ "@angular/platform-browser-dynamic": "^21.0.6",
91
+ "@commitlint/cli": "^20.2.0",
92
+ "@commitlint/config-conventional": "^20.2.0",
93
+ "@eslint/js": "^9.39.2",
94
+ "@pegasusheavy/eslint-typescript-access": "^1.0.0",
95
+ "@tauri-apps/api": "^2.9.1",
96
+ "@tauri-apps/plugin-dialog": "^2.4.2",
97
+ "@tauri-apps/plugin-notification": "^2.3.3",
98
+ "@tauri-apps/plugin-process": "^2.3.1",
99
+ "@tauri-apps/plugin-updater": "^2.9.0",
100
+ "@testing-library/angular": "^18.1.1",
101
+ "@testing-library/dom": "^10.4.1",
102
+ "@testing-library/jest-dom": "^6.9.1",
103
+ "@testing-library/user-event": "^14.6.1",
104
+ "@types/electron": "^1.6.12",
105
+ "@typescript-eslint/eslint-plugin": "^8.50.0",
106
+ "@typescript-eslint/parser": "^8.50.0",
107
+ "@typescript-eslint/utils": "^8.50.0",
108
+ "@vitest/coverage-v8": "^4.0.16",
109
+ "angular-eslint": "^21.1.0",
110
+ "concurrently": "^9.2.1",
111
+ "electron": "^39.2.7",
112
+ "eslint": "^9.39.2",
113
+ "eslint-config-prettier": "^10.1.8",
114
+ "eslint-plugin-jsdoc": "^61.5.0",
115
+ "eslint-plugin-unicorn": "^62.0.0",
116
+ "husky": "^9.1.7",
117
+ "jsdom": "^27.3.0",
118
+ "ng-packagr": "^21.0.1",
119
+ "prettier": "^3.7.4",
120
+ "rxjs": "~7.8.2",
121
+ "tslib": "^2.8.1",
122
+ "typescript": "~5.9.3",
123
+ "typescript-eslint": "^8.50.0",
124
+ "vitest": "^4.0.16",
125
+ "zone.js": "~0.16.0"
126
+ },
127
+ "exports": {
128
+ ".": {
129
+ "types": "./index.d.ts",
130
+ "default": "./fesm2022/pegasus-heavy-ngx-tailwindcss.mjs"
131
+ }
92
132
  },
93
133
  "sideEffects": false,
94
- "module": "fesm2022/pegasusheavy-ngx-tailwindcss.mjs",
95
- "typings": "types/pegasusheavy-ngx-tailwindcss.d.ts",
96
- "dependencies": {
97
- "tslib": "^2.3.0"
134
+ "publishConfig": {
135
+ "access": "public"
136
+ },
137
+ "scripts": {
138
+ "ng": "ng",
139
+ "build": "ng build ngx-tailwindcss --configuration production",
140
+ "build:watch": "ng build ngx-tailwindcss --watch",
141
+ "publish:dist": "pnpm run build && cd dist/ngx-tailwindcss && npm publish --access public",
142
+ "postbuild": "cp README.md dist/ngx-tailwindcss/README.md",
143
+ "dev": "concurrently -n lib,docs -c cyan,green \"pnpm run build:watch\" \"pnpm run docs:dev\"",
144
+ "docs:dev": "cd docs && pnpm run dev",
145
+ "docs:start": "cd docs && pnpm run start",
146
+ "test": "vitest",
147
+ "test:run": "vitest run --testTimeout 60000 --hookTimeout 60000",
148
+ "test:coverage": "vitest run --coverage",
149
+ "test:ui": "vitest --ui",
150
+ "lint": "eslint projects/",
151
+ "lint:fix": "eslint projects/ --fix",
152
+ "format": "prettier --write \"projects/**/*.{ts,html,scss,css,json}\"",
153
+ "format:check": "prettier --check \"projects/**/*.{ts,html,scss,css,json}\"",
154
+ "commitlint": "commitlint"
98
155
  }
99
156
  }
@@ -0,0 +1,10 @@
1
+ packages:
2
+ - docs
3
+
4
+ onlyBuiltDependencies:
5
+ - '@parcel/watcher'
6
+ - electron
7
+ - esbuild
8
+ - less
9
+ - lmdb
10
+ - msgpackr-extract