We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ff83b8 commit 8c32fc2Copy full SHA for 8c32fc2
packages/uui-select/lib/uui-select.story.ts
@@ -130,3 +130,24 @@ DisabledGroups.parameters = {
130
},
131
132
};
133
+
134
+export const Disabled: Story = props =>
135
+ html`<uui-select
136
+ .options=${groupedOptions}
137
+ label="Label"
138
+ .placeholder=${props.placeholder}
139
+ .disabled=${props.disabled}></uui-select> `;
140
141
+Disabled.args = {
142
+ disabled: true,
143
+};
144
145
+Disabled.parameters = {
146
+ controls: { include: ['disabled'] },
147
+ docs: {
148
+ source: {
149
+ code: `
150
+<uui-select disabled></uui-select>`,
151
+ },
152
153
0 commit comments