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 23c6d2c commit 6cbeca0Copy full SHA for 6cbeca0
packages/uui-select/lib/uui-select.story.ts
@@ -157,6 +157,27 @@ Disabled.parameters = {
157
},
158
};
159
160
+export const Readonly: Story = props =>
161
+ html`<uui-select
162
+ .options=${preselectedOptions}
163
+ label="Label"
164
+ .placeholder=${props.placeholder}
165
+ .readonly=${props.readonly}></uui-select>`;
166
+
167
+Readonly.args = {
168
+ readonly: true,
169
+};
170
171
+Readonly.parameters = {
172
+ controls: { include: ['readonly'] },
173
+ docs: {
174
+ source: {
175
+ code: `
176
+<uui-select readonly></uui-select>`,
177
+ },
178
179
180
181
export const Error: Story = props =>
182
html`<uui-select
183
.options=${options}
0 commit comments