Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
e436a11
feat(cdk-experimental/combobox): introduce new signals-based combobox
wagnermaciel Sep 11, 2025
5879210
feat(cdk-experimental/combobox): set up lazy loading
wagnermaciel Sep 11, 2025
5caad52
feat(cdk-experimental/ui-patterns): create combobox ui pattern
wagnermaciel Sep 12, 2025
e24fc9f
docs(cdk-experimental/combobox): add component examples
wagnermaciel Sep 15, 2025
1370e28
fixup! feat(cdk-experimental/ui-patterns): create combobox ui pattern
wagnermaciel Sep 16, 2025
2241c18
fixup! feat(cdk-experimental/ui-patterns): create combobox ui pattern
wagnermaciel Sep 16, 2025
d2290ff
fixup! feat(cdk-experimental/ui-patterns): create combobox ui pattern
wagnermaciel Sep 16, 2025
274f8e4
feat(cdk-experimental/combobox): add tree integration
wagnermaciel Sep 17, 2025
8eb5c3d
docs(cdk-experimental/combobox): combobox tree examples
wagnermaciel Sep 17, 2025
13c1d9f
fixup! feat(cdk-experimental/combobox): add tree integration
wagnermaciel Sep 17, 2025
7609ef3
refactor(cdk-experimental/combobox): rename poopup content to container
wagnermaciel Sep 17, 2025
6b05e81
test(cdk-experimental/ui-patterns): combobox unit tests
wagnermaciel Sep 18, 2025
86be5e2
test(cdk-experimental/combobox): add unit tests
wagnermaciel Sep 22, 2025
b2f6983
fixup! test(cdk-experimental/combobox): add unit tests
wagnermaciel Sep 22, 2025
5cfc6e8
fixup! test(cdk-experimental/combobox): add unit tests
wagnermaciel Sep 22, 2025
c311dbe
fixup! test(cdk-experimental/combobox): add unit tests
wagnermaciel Sep 24, 2025
4fe057b
fix(cdk-experimental/combobox): refactor combobox filtering
wagnermaciel Sep 26, 2025
2cbc174
fixup! fix(cdk-experimental/combobox): refactor combobox filtering
wagnermaciel Sep 26, 2025
431f0d9
fixup! fix(cdk-experimental/combobox): refactor combobox filtering
wagnermaciel Sep 26, 2025
5a50cc9
fixup! fix(cdk-experimental/combobox): refactor combobox filtering
wagnermaciel Sep 27, 2025
adf76fb
fixup! fix(cdk-experimental/combobox): refactor combobox filtering
wagnermaciel Sep 27, 2025
9f0f8f0
fixup! fix(cdk-experimental/combobox): refactor combobox filtering
wagnermaciel Sep 29, 2025
2a5d8e4
fixup! fix(cdk-experimental/combobox): refactor combobox filtering
wagnermaciel Sep 29, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 8 additions & 9 deletions src/cdk-experimental/combobox/BUILD.bazel
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
load("//tools:defaults.bzl", "ng_project", "ng_web_test_suite")
load("//tools:defaults.bzl", "ng_project", "ng_web_test_suite", "ts_project")

package(default_visibility = ["//visibility:public"])

Expand All @@ -9,17 +9,13 @@ ng_project(
exclude = ["**/*.spec.ts"],
),
deps = [
"//:node_modules/@angular/common",
"//:node_modules/@angular/core",
"//src:dev_mode_types",
"//src/cdk/a11y",
"//src/cdk/bidi",
"//src/cdk/collections",
"//src/cdk/overlay",
"//src/cdk-experimental/deferred-content",
"//src/cdk-experimental/ui-patterns",
],
)

ng_project(
ts_project(
name = "unit_test_sources",
testonly = True,
srcs = glob(
Expand All @@ -28,9 +24,12 @@ ng_project(
),
deps = [
":combobox",
"//:node_modules/@angular/common",
"//:node_modules/@angular/core",
"//:node_modules/@angular/platform-browser",
"//src/cdk/keycodes",
"//:node_modules/axe-core",
"//src/cdk-experimental/listbox",
"//src/cdk-experimental/tree",
"//src/cdk/testing/private",
],
)
Expand Down
19 changes: 0 additions & 19 deletions src/cdk-experimental/combobox/combobox-module.ts

This file was deleted.

63 changes: 0 additions & 63 deletions src/cdk-experimental/combobox/combobox-popup.ts

This file was deleted.

Loading
Loading