Skip to content

Commit 0f91dc9

Browse files
committed
main - 84f9e0b docs(aria/toolbar): expose selected values model (#32356)
1 parent 9840698 commit 0f91dc9

3 files changed

Lines changed: 19 additions & 14 deletions

File tree

fesm2022/aria-toolbar.mjs

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -403,7 +403,8 @@ class ToolbarBasicHorizontalExample {
403403
kind: "directive",
404404
type: Toolbar,
405405
selector: "[ngToolbar]",
406-
inputs: ["orientation", "softDisabled", "disabled", "wrap"],
406+
inputs: ["orientation", "softDisabled", "disabled", "wrap", "values"],
407+
outputs: ["valuesChange"],
407408
exportAs: ["ngToolbar"]
408409
}, {
409410
kind: "directive",
@@ -468,7 +469,8 @@ class ToolbarBasicVerticalExample {
468469
kind: "directive",
469470
type: Toolbar,
470471
selector: "[ngToolbar]",
471-
inputs: ["orientation", "softDisabled", "disabled", "wrap"],
472+
inputs: ["orientation", "softDisabled", "disabled", "wrap", "values"],
473+
outputs: ["valuesChange"],
472474
exportAs: ["ngToolbar"]
473475
}, {
474476
kind: "directive",
@@ -540,7 +542,8 @@ class ToolbarConfigurableExample {
540542
kind: "directive",
541543
type: Toolbar,
542544
selector: "[ngToolbar]",
543-
inputs: ["orientation", "softDisabled", "disabled", "wrap"],
545+
inputs: ["orientation", "softDisabled", "disabled", "wrap", "values"],
546+
outputs: ["valuesChange"],
544547
exportAs: ["ngToolbar"]
545548
}, {
546549
kind: "directive",
@@ -669,7 +672,8 @@ class ToolbarRtlExample {
669672
kind: "directive",
670673
type: Toolbar,
671674
selector: "[ngToolbar]",
672-
inputs: ["orientation", "softDisabled", "disabled", "wrap"],
675+
inputs: ["orientation", "softDisabled", "disabled", "wrap", "values"],
676+
outputs: ["valuesChange"],
673677
exportAs: ["ngToolbar"]
674678
}, {
675679
kind: "directive",
@@ -734,7 +738,8 @@ class ToolbarHardDisabledExample {
734738
kind: "directive",
735739
type: Toolbar,
736740
selector: "[ngToolbar]",
737-
inputs: ["orientation", "softDisabled", "disabled", "wrap"],
741+
inputs: ["orientation", "softDisabled", "disabled", "wrap", "values"],
742+
outputs: ["valuesChange"],
738743
exportAs: ["ngToolbar"]
739744
}, {
740745
kind: "directive",

0 commit comments

Comments
 (0)