-
-
Notifications
You must be signed in to change notification settings - Fork 81
β¨ feat(core): event manager plugins with CLI update #348
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weβll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
31 commits
Select commit
Hold shift + click to select a range
7074156
β¨ feat(events): adding event manager plugin
mikij a2c1da2
β¨ feat(events): adding provideZard with theme preset
mikij 478338e
β¨ feat(popover): using event manager plugin
mikij a8af2dd
β¨ feat(accordion): using event manager plugin
mikij c17ded0
β¨ feat(dropdown): using event manager plugin
mikij 27793e0
β¨ feat(calendar): using event manager plugin
mikij 66c84f4
β¨ feat(carousel): using event manager plugin
mikij a8935a7
β¨ feat(checkbox): using event manager plugin
mikij fb05998
β¨ feat(combobox): using event manager plugin
mikij be9331a
β¨ feat(command): using event manager plugin
mikij 8eef827
β¨ feat(dropdown): using event manager plugin
mikij 54ca21c
β¨ feat(layout): using event manager plugin
mikij 9ac7383
β¨ feat(resizable): using event manager plugin
mikij de22fd0
β¨ feat(select): using event manager plugin
mikij d133e30
β¨ feat(slider): small improvements
mikij 0af8aa3
β¨ feat(command): reverted using event manager plugin
mikij 2d91d5a
π§ͺ test: fixing the tests after changes
mikij 7450310
β¨ feat(command): small improvement
mikij 3583348
β¨ feat(events): code revision 1
mikij 09da88e
β¨ feat(combobox): code revision
mikij 8440596
β¨ feat(resizable): code revision
mikij 5998f08
β¨ feat(events): introducing new way how Angular events could be defined
mikij 63490ed
β¨ feat(select): uses new event system and fixes selection by keyboardβ¦
mikij 8ff32a4
Merge branch 'master' into task/#341-event-manager-plugin
mikij e849b3c
β¨ feat(events): multiple keys update
mikij 6209587
β¨ feat(events): PR comments
mikij f579ea6
π§ chore: add tests check on PRs
mikij ad1c089
β¨ feat(events): PR comments
mikij 48cb3fc
β¨ feat(events): CLI support for app.config
mikij 8b3503f
Merge branch 'master' into task/#341-event-manager-plugin
mikij 8c64aa1
β¨ feat(events): resolving PR comments
mikij File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,33 @@ | ||
| name: CI/Unit Tests | ||
|
|
||
| on: | ||
| push: | ||
| branches: ['main', 'master'] | ||
| pull_request: | ||
| types: [opened, synchronize, reopened] | ||
| branches: ['main', 'master'] | ||
|
|
||
| permissions: | ||
| contents: read | ||
| pull-requests: read | ||
|
|
||
| jobs: | ||
| build-and-test: | ||
| # Specifies the runner environment for the job | ||
| runs-on: ubuntu-latest | ||
|
|
||
| steps: | ||
| - name: Checkout repository | ||
| uses: actions/checkout@v4 | ||
|
|
||
| - name: Set up Node.js | ||
| uses: actions/setup-node@v4 | ||
| with: | ||
| node-version: '22' | ||
|
|
||
| - name: Install dependencies | ||
| run: npm ci | ||
|
|
||
| # Step 4: Runs the unit tests | ||
| - name: Run unit tests | ||
| run: npm test | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -124,5 +124,6 @@ | |
| }, | ||
| "[jsonc]": { | ||
| "editor.defaultFormatter": "esbenp.prettier-vscode" | ||
| } | ||
| }, | ||
| "CodeGPT.apiKey": "Perplexity" | ||
| } | ||
33 changes: 33 additions & 0 deletions
33
apps/web/public/components/accordion/demo/multiple-last-not-collapsible.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,33 @@ | ||
| ```angular-ts showLineNumbers copyButton | ||
| import { Component } from '@angular/core'; | ||
|
|
||
| import { ZardAccordionItemComponent } from '../accordion-item.component'; | ||
| import { ZardAccordionComponent } from '../accordion.component'; | ||
|
|
||
| @Component({ | ||
| selector: 'z-demo-accordion-multiple-last-not-collapsible', | ||
| imports: [ZardAccordionComponent, ZardAccordionItemComponent], | ||
| template: ` | ||
| <z-accordion zType="multiple" [zDefaultValue]="defaults" [zCollapsible]="false"> | ||
| <z-accordion-item zValue="item-1" zTitle="A Study in Scarlet"> | ||
| The first case of Sherlock Holmes and Dr. Watson. They investigate a murder in London, which leads to a | ||
| backstory involving Mormons in the U.S. Introduces Holmesβs deductive method. | ||
| </z-accordion-item> | ||
|
|
||
| <z-accordion-item zValue="item-2" zTitle="The Sign of Four"> | ||
| The first case of Sherlock Holmes and Dr. Watson. They investigate a murder in London, which leads to a | ||
| backstory involving Mormons in the U.S. Introduces Holmesβs deductive method. | ||
| </z-accordion-item> | ||
|
|
||
| <z-accordion-item zValue="item-3" zTitle="The Hound of the Baskervilles"> | ||
| Holmes and Watson investigate the legend of a demonic hound haunting the Baskerville family. Set in the eerie | ||
| Dartmoor moorlands, the story involves betrayal and greed. | ||
| </z-accordion-item> | ||
| </z-accordion> | ||
| `, | ||
| }) | ||
| export class ZardDemoAccordionMultipleLastNotCollapsibleComponent { | ||
| readonly defaults: string[] = ['item-1', 'item-3']; | ||
| } | ||
|
|
||
| ``` |
34 changes: 34 additions & 0 deletions
34
apps/web/public/components/accordion/demo/multiple-not-collapsible.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,34 @@ | ||
| ```angular-ts showLineNumbers copyButton | ||
| import { Component } from '@angular/core'; | ||
|
|
||
| import { ZardAccordionItemComponent } from '../accordion-item.component'; | ||
| import { ZardAccordionComponent } from '../accordion.component'; | ||
|
|
||
| @Component({ | ||
| selector: 'z-demo-accordion-multiple', | ||
| imports: [ZardAccordionComponent, ZardAccordionItemComponent], | ||
| standalone: true, | ||
| template: ` | ||
| <z-accordion zType="multiple" [zDefaultValue]="defaults" [zCollapsible]="false"> | ||
| <z-accordion-item zValue="item-1" zTitle="A Study in Scarlet"> | ||
| The first case of Sherlock Holmes and Dr. Watson. They investigate a murder in London, which leads to a | ||
| backstory involving Mormons in the U.S. Introduces Holmesβs deductive method. | ||
| </z-accordion-item> | ||
|
|
||
| <z-accordion-item zValue="item-2" zTitle="The Sign of Four" zDescription="Sir Arthur Conan Doyle"> | ||
| The first case of Sherlock Holmes and Dr. Watson. They investigate a murder in London, which leads to a | ||
| backstory involving Mormons in the U.S. Introduces Holmesβs deductive method.</z-accordion-item | ||
| > | ||
|
|
||
| <z-accordion-item zValue="item-3" zTitle="The Hound of the Baskervilles"> | ||
| Holmes and Watson investigate the legend of a demonic hound haunting the Baskerville family. Set in the eerie | ||
| Dartmoor moorlands, the story involves betrayal and greed. | ||
| </z-accordion-item> | ||
| </z-accordion> | ||
| `, | ||
| }) | ||
| export class ZardDemoAccordionMultipleNotCollapsibleComponent { | ||
| defaults = ['item-1', 'item-3']; | ||
| } | ||
|
|
||
| ``` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.