stable

Clone or download

Read-only

Have a dummy component looking like a <select>

part of: story #16645 have searchable (multi) select boxes with (static binding, no dependencies) This commit introduces a dummy component looking like a selectbox but doing nothing. How to test: - make post-checkout - go to /tlp-doc/?section=forms#list-picker --> you should see a selectbox --> it is a rendered list-picker --> the original <select> element is hidden Change-Id: I4a259ba57fe95fac9b14d79965af72ae02b6eba4

Modified Files

Name
M .gitignore +4 −0 Go to diff View file
A src/scripts/list-picker/jest.config.js +25 −0 Go to diff View file
A src/scripts/list-picker/package-lock.json +24 −0 Go to diff View file
A src/scripts/list-picker/package.json +16 −0 Go to diff View file
A src/scripts/list-picker/src/list-picker.test.ts +63 −0 Go to diff View file
A src/scripts/list-picker/src/list-picker.ts +63 −0 Go to diff View file
A src/scripts/list-picker/themes/BurningParrot/style.scss +32 −0 Go to diff View file
M src/themes/tlp/doc/css/main.scss +1 −0 Go to diff View file
M src/themes/tlp/doc/js/editors.js +15 −0 Go to diff View file
M src/themes/tlp/src/scss/components/_forms.scss +34 −1 Go to diff View file
M src/tsconfig.json +1 −0 Go to diff View file
M src/webpack.common.js +27 −1 Go to diff View file
A src/www/tlp-doc/resources/forms/list-picker/example.html +56 −0 Go to diff View file
A src/www/tlp-doc/resources/forms/list-picker/manifest.json +3 −0 Go to diff View file
M src/www/tlp-doc/resources/forms/manifest.json +2 −1 Go to diff View file