Emmanuel Pelletier
51a4e7daa3
Globally improve accessibility for screen reader users (#12969)
feat(a11y): Globally improve accessibility for screen reader users
2 年之前
Robert Pintilii
ae281e9935
ref(TS) Improve TS (#13370)
Use correct types for action, dispatch and getState
2 年之前
Robert Pintilii
59f1ee1e1e
ref(TS) Improve TS (#13355)
2 年之前
Robert Pintilii
2ba6bcf172
chore(deps) Upgrade eslint (#13341)
Upgrade eslint related packages
Fix new errors
2 年之前
Robert Pintilii
a22db037c7
ref(TS) Improve TS (#13282)
Remove unnecessary @ts-ignores
Use @ts-expect-error instead of @ts-ignore for external dependencies
2 年之前
Robert Pintilii
1ba7765898
ref(TS) Convert some native components to TS (#13281)
Remove some @ts-ignores
2 年之前
Robert Pintilii
646c58f7d1
ref(TS) Convert some native components to TS (#13264)
2 年之前
Robert Pintilii
96b6edccf8
ref(TS) Remove flow comments in TS files (#13258)
2 年之前
Robert Pintilii
2af9dc88e6
ref|(TS) Convert some native components to TS (#13239)
2 年之前
Robert Pintilii
bf1dde7cd1
ref(TS) Convert some files to TS (#13223)
2 年之前
Robert Pintilii
fc0fd2d08c
ref(TS) Convert some components to TS (#13198)
2 年之前
Robert Pintilii
3a2a129f44
ref(TS) Improve TS (#13167)
Fix some errors. Remove @ts-ignores
Convert some files to TS
Remove some eslint-disables
2 年之前
Robert Pintilii
0b65acb528
ref: Remove some index files (#13151)
Fix imports
2 年之前
Robert Pintilii
9ac039a408
ref: Remove some index files (#13140)
2 年之前
Robert Pintilii
46c91b7566
ref(TS) Convert some components to TS (#13137)
*Remove unnecessary @ts-ignores
2 年之前
Robert Pintilii
206a4afd76
ref(TS) Convert some components to TS (#13129)
2 年之前
Robert Pintilii
29945f4809
ref(TS) Improve TS (#13120)
Remove unnecessary @ts-ignore
Fix some TS errors
2 年之前
Robert Pintilii
46597bd6e7
ref(TS Convert some Abstract classes to TS (#13105)
2 年之前
Robert Pintilii
bc1827fb4a
ref(TS) Convert some Abstract classes to TS (#13095)
2 年之前
Robert Pintilii
754f658489
ref(redux) Remove connect wrapper (#13083)
2 年之前
Emmanuel Pelletier
45b7f53294
Improve usability of toggled button labels (#12426)
* feat(a11y) buttons can now have toggled-aware a11y labels
2 年之前
damencho
338b02a6b6
feat: Prints the error on problem sharing YouTube video.
2 年之前
Robert Pintilii
0ba033e07d
ref(TS) Improve TS (#12612)
Remove unnecessary @ts-ignores
Remove unnecessary eslint-disable
2 年之前
Hristo Terezov
04abfe1a3b
feat(dialog): add disableAutoHideOnSubmit prop
Needed for shared video dialog.
2 年之前
Robert Pintilii
936a1a6b0e
ref(design) Update icons (#12489)
Remove unused icons
Remove fill none from icons
Rename some icons
2 年之前
Robert Pintilii
69f4b116a9
ref(TS) Convert some features to TS (#12469)
2 年之前
Robert Pintilii
9f5a56bbc7
ref(TS) Convert some features to TS (#12462)
2 年之前
Robert Pintilii
2938d1f2dc
ref(TS) Require interfaces to start with I (#12424)
2 年之前
Robert Pintilii
6c3206e4d4
ref: TS Improvements (#12358)
Remove unnecessary ts-ignores
Remove unnecessary eslint-disable
Fix type errors
Change Dispatch type to IStore['dispatch']
2 年之前
Robert Pintilii
b858496adb
ref(ui-components) Use new Dialog component (#12349)
Convert some files to TS
Refactor MuteEveryone and MuteEveryonesVideo dialogs. Move shared code to abstract components. Remove unnecessary code
2 年之前
Mihaela Dumitru
d0c22806ec
ref(participants) use enum type to store fake participants (#12316)
2 年之前
Bogdan Duduman
48db099134
feat: include sort members eslint changes
2 年之前
Robert Pintilii
247c54b6c6
ref(TS) Convert constants tiles to TS (#12148)
Remove unnecessary ts-ignores
2 年之前
Robert Pintilii
10bb186c13
ref(eslint) Use new TypeScript ESlint config (#12143)
Use new TS config from @jitsi /eslint
Fix all lint errors
2 年之前
Duduman Bogdan Vlad
5f62acc67c
fix(external_api): Fix number of participants in meeting (#12052)
2 年之前
Robert Pintilii
271ea8315b
ref: Improve reducers TS (#12123)
2 年之前
Robert Pintilii
cfda02ee10
ref(shared-video) Merge web and native reducers (#12108)
Convert reducer to TS
2 年之前
Saúl Ibarra Corretgé
8fabba1679
fix(shared-video) fix exception on mobile
Also use the "standardized" way of instantiating loggers.
2 年之前
apetrus20
11f6b442fe
feat (screen-share) Added logs and emit iframe event for video and audio sharing (#12051)
2 年之前
Robert Pintilii
5b34068435
ref(ui-components) Use new input component (#11965)
2 年之前
luzpaz
c7f96de787
fix(misc) fix typos
Found via `codespell -q 3 -S ./lang -L miliseconds`
2 年之前
Calinteodor
7c523f3250
language(typescript) actionTypes.js -> actionTypes.ts (#10940)
* language(typescript) first ts component, added ts configurations, actionTypes.js are now ts files
3 年之前
Дамян Минков
a99532b0d8
fix: leaking listeners while waiting on auth dialog (#11288)
* fix: Drop duplicate call of wait for owner.
* fix: Fixes leaking listeners while waiting for host to join.
While waiting for the host to join on the dialog we attempt to join over and over again till we are admitted to enter the meeting. While doing that authRequired flag is on, and we were adding listeners on and on.
* feat: Introduces conference join in progress action.
This event is coming from lib-jitsi-meet and is fired when we receive the first presence of series when joining. It is always fired before joined event.
* fix: Moves testing middleware to use CONFERENCE_JOIN_IN_PROGRESS.
* fix: Moves follow-me middleware to use CONFERENCE_JOIN_IN_PROGRESS.
* fix: Moves some polls logic to middleware and use CONFERENCE_JOIN_IN_PROGRESS.
* fix: Moves reactions middleware to use CONFERENCE_JOIN_IN_PROGRESS.
* fix: Moves recordings middleware to use CONFERENCE_JOIN_IN_PROGRESS.
* fix: Moves shared-video middleware to use CONFERENCE_JOIN_IN_PROGRESS.
* fix: Moves videosipgw middleware to use CONFERENCE_JOIN_IN_PROGRESS.
* squash: Fix comments.
* fix: Fixes join in progress on web.
* fix: Moves variable extraction inside handlers.
* fix: Moves variable extraction inside handlers again.
* fix: Moves etherpad middleware to use CONFERENCE_JOIN_IN_PROGRESS.
3 年之前
Robert Pintilii
096ba054db
fix(filmstrip) Fix resizable filmstrip with shared video (#11124)
Calculate shared video width with the filmstrip width
Make resizable filmstrip mouseup event work with shared video iframe
3 年之前
Saúl Ibarra Corretgé
1d275e1976
fix(lint) don't check for Flow types on files without the annotation
3 年之前
Saúl Ibarra Corretgé
15cc956ed4
fix(shared-video) use more space on recorders
They don't render the toolbar so there is more space available.
The reason this commit does that is because getToolboxHeight will now
always be 0 for recorders.
3 年之前
Calinteodor
66b4c0cab0
feat(dialog) new native InputDialog
3 年之前
Hristo Terezov
b5551880f7
feat(shared-video): show invalid URL error.
3 年之前
Hristo Terezov
2c2b2c0bec
fix(iframeAPI): startShareVideo command.
3 年之前
Horatiu Muresan
197dbfbbcb
feat(toolbar-button-clicked) Enhance toolbar buttons with notify click
- add possibility to allow execution of the button's routine besides triggering
`toolbarButtonClicked` API event
- keep backwards compatibility
- get rid of `ToolbarButton`
3 年之前