text stringlengths 1 2.83M | id stringlengths 16 152 | metadata dict | __index_level_0__ int64 0 949 |
|---|---|---|---|
const sinon = require('sinon')
const { expect } = require('chai')
const modulePath = '../../../../app/src/Features/Project/ProjectGetter.js'
const SandboxedModule = require('sandboxed-module')
const { ObjectId } = require('mongodb')
describe('ProjectGetter', function () {
beforeEach(function () {
this.callback =... | overleaf/web/test/unit/src/Project/ProjectGetterTests.js/0 | {
"file_path": "overleaf/web/test/unit/src/Project/ProjectGetterTests.js",
"repo_id": "overleaf",
"token_count": 6392
} | 582 |
const APP_ROOT = '../../../../app/src'
const SandboxedModule = require('sandboxed-module')
const sinon = require('sinon')
const { expect } = require('chai')
const modulePath = `${APP_ROOT}/Features/SamlLog/SamlLogHandler`
describe('SamlLogHandler', function () {
let SamlLog, SamlLogHandler, SamlLogModel
let data... | overleaf/web/test/unit/src/SamlLog/SamlLogHandlerTests.js/0 | {
"file_path": "overleaf/web/test/unit/src/SamlLog/SamlLogHandlerTests.js",
"repo_id": "overleaf",
"token_count": 949
} | 583 |
/* eslint-disable
max-len,
no-return-assign,
no-unused-vars,
*/
// TODO: This file was created by bulk-decaffeinate.
// Fix any style issues and re-enable lint.
/*
* decaffeinate suggestions:
* DS102: Remove unnecessary code created because of implicit returns
* Full docs: https://github.com/decaffeinate... | overleaf/web/test/unit/src/Subscription/SubscriptionGroupControllerTests.js/0 | {
"file_path": "overleaf/web/test/unit/src/Subscription/SubscriptionGroupControllerTests.js",
"repo_id": "overleaf",
"token_count": 1321
} | 584 |
const SandboxedModule = require('sandboxed-module')
const sinon = require('sinon')
const { expect } = require('chai')
const { ObjectId } = require('mongodb')
const Errors = require('../../../../app/src/Features/Errors/Errors')
const MODULE_PATH =
'../../../../app/src/Features/ThirdPartyDataStore/TpdsUpdateHandler.js... | overleaf/web/test/unit/src/ThirdPartyDataStore/TpdsUpdateHandlerTests.js/0 | {
"file_path": "overleaf/web/test/unit/src/ThirdPartyDataStore/TpdsUpdateHandlerTests.js",
"repo_id": "overleaf",
"token_count": 4581
} | 585 |
const sinon = require('sinon')
const assertCalledWith = sinon.assert.calledWith
const assertNotCalled = sinon.assert.notCalled
const { assert, expect } = require('chai')
const modulePath = '../../../../app/src/Features/User/UserEmailsController.js'
const SandboxedModule = require('sandboxed-module')
const MockRequest =... | overleaf/web/test/unit/src/User/UserEmailsControllerTests.js/0 | {
"file_path": "overleaf/web/test/unit/src/User/UserEmailsControllerTests.js",
"repo_id": "overleaf",
"token_count": 7917
} | 586 |
// TODO: This file was created by bulk-decaffeinate.
// Sanity-check the conversion and remove this comment.
/*
* decaffeinate suggestions:
* DS206: Consider reworking classes to avoid initClass
* Full docs: https://github.com/decaffeinate/decaffeinate/blob/master/docs/suggestions.md
*/
class MockRequest {
static... | overleaf/web/test/unit/src/helpers/MockRequest.js/0 | {
"file_path": "overleaf/web/test/unit/src/helpers/MockRequest.js",
"repo_id": "overleaf",
"token_count": 319
} | 587 |
/* eslint-disable
max-len,
no-return-assign,
no-unused-vars,
*/
// TODO: This file was created by bulk-decaffeinate.
// Fix any style issues and re-enable lint.
/*
* decaffeinate suggestions:
* DS102: Remove unnecessary code created because of implicit returns
* Full docs: https://github.com/decaffeinate... | overleaf/web/test/unit/src/infrastructure/LockManager/tryLockTests.js/0 | {
"file_path": "overleaf/web/test/unit/src/infrastructure/LockManager/tryLockTests.js",
"repo_id": "overleaf",
"token_count": 1007
} | 588 |
root = true
[*]
insert_final_newline = true
charset = utf-8
trim_trailing_whitespace = true
end_of_line = lf
[*.{js,json,vue,feature}]
indent_style = space
indent_size = 2
[*.{md,markdown}]
trim_trailing_whitespace = false
| owncloud/web/.editorconfig/0 | {
"file_path": "owncloud/web/.editorconfig",
"repo_id": "owncloud",
"token_count": 100
} | 589 |
Bugfix: Fix share indicators click to open the correct panel
When clicking on a share indicator inside a file list row, the correct share panel will now be displayed.
https://github.com/owncloud/web/issues/3324
https://github.com/owncloud/web/pull/3420
| owncloud/web/changelog/0.10.0_2020-05-26/3324/0 | {
"file_path": "owncloud/web/changelog/0.10.0_2020-05-26/3324",
"repo_id": "owncloud",
"token_count": 69
} | 590 |
Change: Remove sidebar quickAccess
We have removed the sidebar quickAccess extension point.
To create an quick access to the sidebar, we need to use the quickActions extension point.
https://github.com/owncloud/product/issues/80
https://github.com/owncloud/web/pull/3586
| owncloud/web/changelog/0.11.0_2020-06-26/removed-sidebar-quick-access/0 | {
"file_path": "owncloud/web/changelog/0.11.0_2020-06-26/removed-sidebar-quick-access",
"repo_id": "owncloud",
"token_count": 72
} | 591 |
Change: Do not display outline when the files list is focused
The files list was displaying outline when it received focus after a click.
Since the focus is meant only programmatically, the outline was not supposed to be displayed.
https://github.com/owncloud/web/issues/3747
https://github.com/owncloud/web/issues/355... | owncloud/web/changelog/0.12.0_2020-07-10/files-list-outline/0 | {
"file_path": "owncloud/web/changelog/0.12.0_2020-07-10/files-list-outline",
"repo_id": "owncloud",
"token_count": 97
} | 592 |
Change: Large file downloads support with URL signing
When the backend supports URL signing we now download with a signed url instead of downloading as BLOB.
https://github.com/owncloud/web/pull/3797
| owncloud/web/changelog/0.14.0_2020-08-17/url-signing.md/0 | {
"file_path": "owncloud/web/changelog/0.14.0_2020-08-17/url-signing.md",
"repo_id": "owncloud",
"token_count": 49
} | 593 |
Change: Shortened button label for creating public links
The label of the button for creating public links in the links panel has been shortened to "Public link" instead of "Add public link"
since the plus sign already implies adding. An Aria label has been added for clarification when using screen readers.
https://g... | owncloud/web/changelog/0.17.0_2020-09-25/wording-create-public-link/0 | {
"file_path": "owncloud/web/changelog/0.17.0_2020-09-25/wording-create-public-link",
"repo_id": "owncloud",
"token_count": 96
} | 594 |
Enhancement: Display collaborators type
We've added a new line into the collaborators autocomplete and list in the sidebar to display their type.
https://github.com/owncloud/web/pull/4203
| owncloud/web/changelog/0.24.0_2020-11-06/collaborator-type/0 | {
"file_path": "owncloud/web/changelog/0.24.0_2020-11-06/collaborator-type",
"repo_id": "owncloud",
"token_count": 49
} | 595 |
Change: Show dedicated 404 page for invalid resource references
When visiting a public link or the `All files` page with an invalid resource in the URL (e.g. because it was deleted in the meantime) we now show a dedicated page which explains
that the resource could not be found and offers a link to go back to the resp... | owncloud/web/changelog/0.28.0_2020-12-04/resource-not-found-error-page/0 | {
"file_path": "owncloud/web/changelog/0.28.0_2020-12-04/resource-not-found-error-page",
"repo_id": "owncloud",
"token_count": 137
} | 596 |
Bugfix: Fix collaborator selection on new collaborator shares
When typing text into the search box for new collaborators, selecting a user and a group with identical names was not possible.
This was due to the fact that when one (group or user) got selected, the other was excluded because of a matching name. Fixed by
... | owncloud/web/changelog/0.4.0_2020-02-14/1186-2/0 | {
"file_path": "owncloud/web/changelog/0.4.0_2020-02-14/1186-2",
"repo_id": "owncloud",
"token_count": 97
} | 597 |
Bugfix: Fix accessible labels that said $gettext
Fixed three accessible aria labels that were saying "$gettext" instead of their actual translated text.
https://github.com/owncloud/web/pull/3039
| owncloud/web/changelog/0.5.0_2020-03-02/3039/0 | {
"file_path": "owncloud/web/changelog/0.5.0_2020-03-02/3039",
"repo_id": "owncloud",
"token_count": 51
} | 598 |
Enhancement: Added thumbnails in file list
Thumbnails are now displayed in the file list for known file types.
When no thumbnail was returned, fall back to the file type icon.
https://github.com/owncloud/web/issues/276
https://github.com/owncloud/web/pull/3187
| owncloud/web/changelog/0.7.0_2020-03-30/276/0 | {
"file_path": "owncloud/web/changelog/0.7.0_2020-03-30/276",
"repo_id": "owncloud",
"token_count": 74
} | 599 |
Enhancement: Add chunked upload with tus-js-client
Whenever the backend server advertises TUS support, uploading files will
use TUS as well for uploading, which makes it possible to resume failed uploads.
It is also possible to optionally set a chunk size by setting a numeric value
for "uploadChunkSize" in bytes in co... | owncloud/web/changelog/0.9.0_2020-04-27/3345/0 | {
"file_path": "owncloud/web/changelog/0.9.0_2020-04-27/3345",
"repo_id": "owncloud",
"token_count": 113
} | 600 |
Enhancement: wait for all required data
Before this we rendered the ui no matter if every required data already is loaded or not.
For example the current users language from the ocis settings service.
One potential problem was the flickering in the ui or that the default language was shown before it switches to the se... | owncloud/web/changelog/1.0.0_2020-12-16/phoenix-ui-is-ready/0 | {
"file_path": "owncloud/web/changelog/1.0.0_2020-12-16/phoenix-ui-is-ready",
"repo_id": "owncloud",
"token_count": 128
} | 601 |
Bugfix: Remove unsupported shareType
We don't support 'userGroup' (originally 'contact', shareType `2`) on the backend side anymore, so we delete it on the frontend, too.
https://github.com/owncloud/web/pull/4809
| owncloud/web/changelog/2.1.0_2021-03-24/bugfix-remove-unsupported-shareType/0 | {
"file_path": "owncloud/web/changelog/2.1.0_2021-03-24/bugfix-remove-unsupported-shareType",
"repo_id": "owncloud",
"token_count": 64
} | 602 |
Enhancement: Add "Shared via link" page
We've added a new page called "Shared via link". This page displays a files list containing only resources shared via public links.
https://github.com/owncloud/web/pull/4881 | owncloud/web/changelog/3.0.0_2021-04-21/enhancement-split-shared-with-others/0 | {
"file_path": "owncloud/web/changelog/3.0.0_2021-04-21/enhancement-split-shared-with-others",
"repo_id": "owncloud",
"token_count": 58
} | 603 |
Bugfix: Correct navigation through "via"-tags
The "shared via X" link in the indirect share tag in the sidebar was
navigating to the parent directory of the indirect share entry.
This has been fixed for the collaborators sidebar section and
the link target is the share entry itself now.
https://github.com/owncloud/... | owncloud/web/changelog/3.2.0_2021-05-31/bugfix-navigate-to-share-parent/0 | {
"file_path": "owncloud/web/changelog/3.2.0_2021-05-31/bugfix-navigate-to-share-parent",
"repo_id": "owncloud",
"token_count": 83
} | 604 |
Bugfix: Prevent scrolling issues
In cases where the browser-window space was not enough to render all views
the ui ended up with weird scrolling behavior.
This has been fixed by restructuring the dom elements and giving them proper styles.
https://github.com/owncloud/web/pull/5131
| owncloud/web/changelog/3.3.0_2021-06-23/bugfix-scrolling-overflow/0 | {
"file_path": "owncloud/web/changelog/3.3.0_2021-06-23/bugfix-scrolling-overflow",
"repo_id": "owncloud",
"token_count": 69
} | 605 |
Enhancement: File editor mode
We've added a parameter called `mode` to the different ways of opening a file editor.
The mode can be `edit` or `create` and reflects whether the file editor was opened
in an editing mode or in a creation mode.
https://github.com/owncloud/web/issues/5226
https://github.com/owncloud/web/p... | owncloud/web/changelog/3.3.0_2021-06-23/enhancement-editor-mode/0 | {
"file_path": "owncloud/web/changelog/3.3.0_2021-06-23/enhancement-editor-mode",
"repo_id": "owncloud",
"token_count": 93
} | 606 |
Enhancement: Use `oc-select` for role select
We've used the new `oc-select` component from ODS for selecting role in people and public links accordions in the right sidebar.
We are using this component to enable keyboard navigation when selecting the role.
https://github.com/owncloud/web/pull/4937 | owncloud/web/changelog/3.3.0_2021-06-23/enhancement-select-roles/0 | {
"file_path": "owncloud/web/changelog/3.3.0_2021-06-23/enhancement-select-roles",
"repo_id": "owncloud",
"token_count": 76
} | 607 |
Enhancement: Update Design System to 8.0.0
The ownCloud design system has been updated to its latest version.
https://github.com/owncloud/owncloud-design-system/releases/tag/v8.0.0
https://github.com/owncloud/owncloud-design-system/releases/tag/v7.5.0
https://github.com/owncloud/web/pull/5465
https://github.com/owncl... | owncloud/web/changelog/3.4.0_2021-07-09/enhancement-update-ods-8.0.0/0 | {
"file_path": "owncloud/web/changelog/3.4.0_2021-07-09/enhancement-update-ods-8.0.0",
"repo_id": "owncloud",
"token_count": 134
} | 608 |
Enhancement: Define the number of visible share recipients
We've added a new configuration option `sharingRecipientsPerPage` to
define how many recipients should be shown in the share recipients dropdown.
https://github.com/owncloud/web/pull/5506
| owncloud/web/changelog/4.0.0_2021-08-04/enhancement-share-recipients-number/0 | {
"file_path": "owncloud/web/changelog/4.0.0_2021-08-04/enhancement-share-recipients-number",
"repo_id": "owncloud",
"token_count": 63
} | 609 |
Enhancement: Re-design recipients role select
We've redesigned recipient role select in the Files app sidebar.
https://github.com/owncloud/web/pull/5632 | owncloud/web/changelog/4.2.0_2021-09-14/enhancement-redesign-recipient-role-select/0 | {
"file_path": "owncloud/web/changelog/4.2.0_2021-09-14/enhancement-redesign-recipient-role-select",
"repo_id": "owncloud",
"token_count": 41
} | 610 |
Bugfix: Fix overlapping requests in files app
In some cases the files app tended to display the wrong resources when navigating quickly through the views. This happened because the resource provisioning step wasn't canceled.
This is now fixed by using vue-concurrency which on a high level wraps iterable generators whi... | owncloud/web/changelog/4.4.0_2021-10-26/bugfix-overlapping-view-requests/0 | {
"file_path": "owncloud/web/changelog/4.4.0_2021-10-26/bugfix-overlapping-view-requests",
"repo_id": "owncloud",
"token_count": 154
} | 611 |
Enhancement: Automatically show oC 10 apps in the app switcher menu
When using the ownCloud 10 app of web the configuration automatically gets augmented with all menu items / apps from the classic UI. They open in a new tab in the classic UI and have a generic icon.
https://github.com/owncloud/web/issues/5980
https:/... | owncloud/web/changelog/4.5.0_2021-11-16/enhancement-oc10-apps-in-app-switcher/0 | {
"file_path": "owncloud/web/changelog/4.5.0_2021-11-16/enhancement-oc10-apps-in-app-switcher",
"repo_id": "owncloud",
"token_count": 94
} | 612 |
Bugfix: Do not scroll on apps open in app provider
Apps opened from the app provider were taking more than the window size, prompting the use of the scrollbar.
https://github.com/owncloud/web/issues/5960
https://github.com/owncloud/web/pull/6003
| owncloud/web/changelog/4.7.0_2021-12-16/bugfix-no-scroll-app-provider/0 | {
"file_path": "owncloud/web/changelog/4.7.0_2021-12-16/bugfix-no-scroll-app-provider",
"repo_id": "owncloud",
"token_count": 70
} | 613 |
Enhancement: Simplify people sharing sidebar
We have reworked the people sharing sidebar to not be split into
show/edit/create panels. The create form now is fixed to the top
with the sharees list below and editing happening in-line.
https://github.com/owncloud/web/pull/6039
https://github.com/owncloud/web/issues... | owncloud/web/changelog/4.8.0_2021-12-22/enhancement-simplify-people-sharing-sidebar/0 | {
"file_path": "owncloud/web/changelog/4.8.0_2021-12-22/enhancement-simplify-people-sharing-sidebar",
"repo_id": "owncloud",
"token_count": 125
} | 614 |
Enhancement: Add spaces actions
We added the following actions to the spaces overview:
* Create a new space
* Rename a space
* Delete a space
https://github.com/owncloud/web/pull/6254
https://github.com/owncloud/web/issues/6255
| owncloud/web/changelog/5.0.0_2022-02-14/enhancement-add-spaces-actions/0 | {
"file_path": "owncloud/web/changelog/5.0.0_2022-02-14/enhancement-add-spaces-actions",
"repo_id": "owncloud",
"token_count": 71
} | 615 |
Enhancement: Add default sorting to the spaces list
Spaces will now be sorted by their name by default.
https://github.com/owncloud/web/pull/6262
https://github.com/owncloud/web/issues/6253
| owncloud/web/changelog/5.0.0_2022-02-14/enhancement-spaces-default-sorting/0 | {
"file_path": "owncloud/web/changelog/5.0.0_2022-02-14/enhancement-spaces-default-sorting",
"repo_id": "owncloud",
"token_count": 59
} | 616 |
Enhancement: Option to enable Vue history mode
We've added the option to use vue's history mode. All configuration is done automatically by the system.
To enable it, add a `<base href="PATH">` header tag to `index.html`, `oidc-callback.html` and `oidc-silent-redirect.html`.
Adding `<base>` is not needed for ocis.
htt... | owncloud/web/changelog/5.2.0_2022-03-03/enhancement-history-mode/0 | {
"file_path": "owncloud/web/changelog/5.2.0_2022-03-03/enhancement-history-mode",
"repo_id": "owncloud",
"token_count": 128
} | 617 |
Bugfix: Rename parent folder
We fixed the rename option in the parent folder / breadcrumb context menu. It was broken due to malformed webdav paths.
https://github.com/owncloud/web/issues/6516
https://github.com/owncloud/web/pull/6631
| owncloud/web/changelog/5.3.0_2022-03-23/bugfix-rename-parent/0 | {
"file_path": "owncloud/web/changelog/5.3.0_2022-03-23/bugfix-rename-parent",
"repo_id": "owncloud",
"token_count": 71
} | 618 |
Enhancement: Move NoContentMessage component
We've moved the NoContentMessage component into the web-pkg package to ease the use in other packages
https://github.com/owncloud/web/pull/6643
| owncloud/web/changelog/5.3.0_2022-03-23/enhancement-move-no-content-message-component/0 | {
"file_path": "owncloud/web/changelog/5.3.0_2022-03-23/enhancement-move-no-content-message-component",
"repo_id": "owncloud",
"token_count": 50
} | 619 |
Enhancement: Update the graph SDK
We've updated the graph SDK to include the "me"-endpoint.
https://github.com/owncloud/web/pull/6519
| owncloud/web/changelog/5.3.0_2022-03-23/enhancement-update-graph-sdk/0 | {
"file_path": "owncloud/web/changelog/5.3.0_2022-03-23/enhancement-update-graph-sdk",
"repo_id": "owncloud",
"token_count": 43
} | 620 |
Enhancement: Audio support in preview app
We've added support for audio file playback into the preview app (namely flac, mp3, wav and ogg).
https://github.com/owncloud/web/pull/6514
| owncloud/web/changelog/5.4.0_2022-04-11/enhancement-preview-audio-support/0 | {
"file_path": "owncloud/web/changelog/5.4.0_2022-04-11/enhancement-preview-audio-support",
"repo_id": "owncloud",
"token_count": 56
} | 621 |
Bugfix: We added the shares item to the breadcrumbs at the shared with me page
https://github.com/owncloud/web/pull/6965
https://github.com/owncloud/web/issues/6937
| owncloud/web/changelog/5.5.0_2022-06-20/bugfix-add-root-breadcrumb-to-shared-with-me-page/0 | {
"file_path": "owncloud/web/changelog/5.5.0_2022-06-20/bugfix-add-root-breadcrumb-to-shared-with-me-page",
"repo_id": "owncloud",
"token_count": 53
} | 622 |
Bugfix: Rename a file in favorites list with same name but in different folder
We've fixed a bug, where renaming a file in the favorites file list to a file with the same name but located
in a different folder was not possible, as the message `The name "..." is already taken` appeared.
https://github.com/owncloud/web... | owncloud/web/changelog/5.5.0_2022-06-20/bugfix-renaming-favorites-issue/0 | {
"file_path": "owncloud/web/changelog/5.5.0_2022-06-20/bugfix-renaming-favorites-issue",
"repo_id": "owncloud",
"token_count": 101
} | 623 |
Bugfix: Spaces Contextmenu trigger id isn't valid
We've fixed a bug which resulted in spaces having an
invalid trigger id for the contextmenu.
https://github.com/owncloud/web/issues/6845
https://github.com/owncloud/web/pull/6848 | owncloud/web/changelog/5.5.0_2022-06-20/bugfix-spaces-triggerid-invalid/0 | {
"file_path": "owncloud/web/changelog/5.5.0_2022-06-20/bugfix-spaces-triggerid-invalid",
"repo_id": "owncloud",
"token_count": 67
} | 624 |
Enhancement: Consistent dropdown menus
Made the main dropdown menus (new, upload, context, etc) constistent in size, hover effect and spacing/margins.
https://github.com/owncloud/web/issues/6555
https://github.com/owncloud/web/pull/6762
| owncloud/web/changelog/5.5.0_2022-06-20/enhancement-consistend-dropdows/0 | {
"file_path": "owncloud/web/changelog/5.5.0_2022-06-20/enhancement-consistend-dropdows",
"repo_id": "owncloud",
"token_count": 73
} | 625 |
Enhancement: Customize additional mimeTypes for preview app
We've added support for customizing additional mimeTypes for the preview app. In case the backend supports more mimeTypes than our hardcoded list in the preview app, you can now announce them to ownCloud Web with additional config. See https://owncloud.dev/cl... | owncloud/web/changelog/5.5.0_2022-06-20/enhancement-preview-additional-mimetypes/0 | {
"file_path": "owncloud/web/changelog/5.5.0_2022-06-20/enhancement-preview-additional-mimetypes",
"repo_id": "owncloud",
"token_count": 132
} | 626 |
Enhancement: Update SDK
We've updated the ownCloud SDK to version 3.0.0-alpha.10.
- Change - Pass full trash bin path to methods of FilesTrash class: https://github.com/owncloud/owncloud-sdk/pull/1021
- Enhancement - Enforce share_type guest if applies: https://github.com/owncloud/owncloud-sdk/pull/1046
- Enhancement... | owncloud/web/changelog/5.5.0_2022-06-20/enhancement-update-sdk/0 | {
"file_path": "owncloud/web/changelog/5.5.0_2022-06-20/enhancement-update-sdk",
"repo_id": "owncloud",
"token_count": 461
} | 627 |
Bugfix: Decline share not possible
We've fixed a bug where declining an accepted share in the dropdown next to the breadcrumb was not possible.
https://github.com/owncloud/web/pull/7379
https://github.com/owncloud/web/issues/6899
| owncloud/web/changelog/5.7.0_2022-09-09/bugfix-decline-share-not-possible/0 | {
"file_path": "owncloud/web/changelog/5.7.0_2022-09-09/bugfix-decline-share-not-possible",
"repo_id": "owncloud",
"token_count": 68
} | 628 |
Bugfix: Left sidebar when switching apps
We've fixed a bug where the active state of the left sidebar would glitch visually when switching apps.
https://github.com/owncloud/web/issues/7526
https://github.com/owncloud/web/pull/7529
| owncloud/web/changelog/5.7.0_2022-09-09/bugfix-left-sidebar-app-switch/0 | {
"file_path": "owncloud/web/changelog/5.7.0_2022-09-09/bugfix-left-sidebar-app-switch",
"repo_id": "owncloud",
"token_count": 64
} | 629 |
Bugfix: Fix infinite loading spinner on invalid preview links
The `preview` app now shows an error, when a file does not exist (for example when opening a bookmark to a file that does not exist anymore). Before it showed a loading spinner infinitely.
https://github.com/owncloud/web/pull/7359
| owncloud/web/changelog/5.7.0_2022-09-09/bugfix-preview-infinite-loading-spinner/0 | {
"file_path": "owncloud/web/changelog/5.7.0_2022-09-09/bugfix-preview-infinite-loading-spinner",
"repo_id": "owncloud",
"token_count": 74
} | 630 |
Bugfix: Hide share actions for space viewers/editors
We've fixed a bug where viewers and editors of a space could see the actions to edit and remove shares. We've also improved the error handling when something goes wrong while editing/removing shares.
https://github.com/owncloud/web/issues/7436
https://github.com/ow... | owncloud/web/changelog/5.7.0_2022-09-09/bugfix-space-share-actions/0 | {
"file_path": "owncloud/web/changelog/5.7.0_2022-09-09/bugfix-space-share-actions",
"repo_id": "owncloud",
"token_count": 88
} | 631 |
Enhancement: Add Keyboard navigation/selection
We've added the possibility to navigate and select via keyboard.
- Navigation:
- via keyboard arrows up/down for moving up and down through the rows of the file list
- Selection
- via keyboard space bar: select / deselect the currently highlighted row
- via ke... | owncloud/web/changelog/5.7.0_2022-09-09/enhancement-add-keyboard-navigation-selection/0 | {
"file_path": "owncloud/web/changelog/5.7.0_2022-09-09/enhancement-add-keyboard-navigation-selection",
"repo_id": "owncloud",
"token_count": 252
} | 632 |
Enhancement: Reduce pagination options
We've reduced the pagination options by removing the options to display 1000 and all files. These may be added again later after further improving the files table performance.
https://github.com/owncloud/web/issues/7038
https://github.com/owncloud/web/pull/7597
| owncloud/web/changelog/5.7.0_2022-09-09/enhancement-reduce-pagination-options/0 | {
"file_path": "owncloud/web/changelog/5.7.0_2022-09-09/enhancement-reduce-pagination-options",
"repo_id": "owncloud",
"token_count": 76
} | 633 |
Enhancement: Update ODS to v14.0.0-alpha.18
We updated the ownCloud Design System to version 14.0.0-alpha.18. Please refer to the full changelog in the ODS release (linked) for more details. Summary:
* Bugfix - Omit special characters in user avatar initials: [#2070](https://github.com/owncloud/owncloud-design-system... | owncloud/web/changelog/5.7.0_2022-09-09/enhancement-update-ods/0 | {
"file_path": "owncloud/web/changelog/5.7.0_2022-09-09/enhancement-update-ods",
"repo_id": "owncloud",
"token_count": 993
} | 634 |
Bugfix: File name reactivity
We've fixed a bug where the file name would not update reactively in the sidebar after changing it.
https://github.com/owncloud/web/pull/7734
https://github.com/owncloud/web/issues/7713
| owncloud/web/changelog/6.0.0_2022-11-29/bugfix-file-name-reactivity/0 | {
"file_path": "owncloud/web/changelog/6.0.0_2022-11-29/bugfix-file-name-reactivity",
"repo_id": "owncloud",
"token_count": 64
} | 635 |
Bugfix: Reload file list after last share removal
We've fixed a bug where the file list would not update after removing the last share or link. Also, we now prevent the shares tree from being loaded again if the removed share was not the last one.
https://github.com/owncloud/web/pull/7748
| owncloud/web/changelog/6.0.0_2022-11-29/bugfix-reload-file-list-after-share-removal/0 | {
"file_path": "owncloud/web/changelog/6.0.0_2022-11-29/bugfix-reload-file-list-after-share-removal",
"repo_id": "owncloud",
"token_count": 72
} | 636 |
Bugfix: Saving a file multiple times with the text editor
An issue with saving a file multiple times via text editor has been fixed.
https://github.com/owncloud/web/pull/8030
https://github.com/owncloud/web/issues/8029
| owncloud/web/changelog/6.0.0_2022-11-29/bugfix-text-editor-multple-save/0 | {
"file_path": "owncloud/web/changelog/6.0.0_2022-11-29/bugfix-text-editor-multple-save",
"repo_id": "owncloud",
"token_count": 63
} | 637 |
Enhancement: Design polishing
We've polished the overall design, especially spacings and the spaces-views.
https://github.com/owncloud/web/pull/7684
https://github.com/owncloud/web/issues/6705
https://github.com/owncloud/web/issues/7676
https://github.com/owncloud/web/issues/7525
https://github.com/owncloud/web/issue... | owncloud/web/changelog/6.0.0_2022-11-29/enhancement-design-polishing/0 | {
"file_path": "owncloud/web/changelog/6.0.0_2022-11-29/enhancement-design-polishing",
"repo_id": "owncloud",
"token_count": 171
} | 638 |
Enhancement: XHR upload timeout
The default timeout for XHR uploads has been increased from 30 to 60 seconds. Also, it can now be configured via the `config.json` file (in ms).
https://github.com/owncloud/web/issues/7900
https://github.com/owncloud/web/pull/7912
| owncloud/web/changelog/6.0.0_2022-11-29/enhancement-xhr-timeout/0 | {
"file_path": "owncloud/web/changelog/6.0.0_2022-11-29/enhancement-xhr-timeout",
"repo_id": "owncloud",
"token_count": 80
} | 639 |
Bugfix: Prevent "virtual" spaces from being displayed in the UI
While ownCloud Web is capable of displaying any type of spaces we found out that it is not valid to display so called "virtual" spaces. In such a case users now get redirected to their default location (personal space for users, project spaces overview f... | owncloud/web/changelog/7.0.0_2023-06-02/bugfix-forbid-virtual-shares/0 | {
"file_path": "owncloud/web/changelog/7.0.0_2023-06-02/bugfix-forbid-virtual-shares",
"repo_id": "owncloud",
"token_count": 88
} | 640 |
Bugfix: Pagination after increasing items per page
An issue where the file list incorrectly showed no items after paginating and increasing the amount of items per page has been fixed.
https://github.com/owncloud/web/issues/6768
https://github.com/owncloud/web/pull/8854
| owncloud/web/changelog/7.0.0_2023-06-02/bugfix-pagination-after-increasing-items-per-page/0 | {
"file_path": "owncloud/web/changelog/7.0.0_2023-06-02/bugfix-pagination-after-increasing-items-per-page",
"repo_id": "owncloud",
"token_count": 71
} | 641 |
Bugfix: Search bar input appearance
The broken appearance of the search bar input field has been fixed.
https://github.com/owncloud/web/issues/8158
https://github.com/owncloud/web/pull/8203
| owncloud/web/changelog/7.0.0_2023-06-02/bugfix-search-bar-input-appearance/0 | {
"file_path": "owncloud/web/changelog/7.0.0_2023-06-02/bugfix-search-bar-input-appearance",
"repo_id": "owncloud",
"token_count": 56
} | 642 |
Bugfix: UI fixes for sorting and quickactions
Ensure the sorting of "shared with" in "shared with me" view is correct when they have been shared simultaneously with users and groups.
Prevent the context actions to disappear when `hoverableQuickActions` is set to true.
https://github.com/owncloud/web/pull/7966
| owncloud/web/changelog/7.0.0_2023-06-02/bugfix-ui-sorting-quickactions/0 | {
"file_path": "owncloud/web/changelog/7.0.0_2023-06-02/bugfix-ui-sorting-quickactions",
"repo_id": "owncloud",
"token_count": 80
} | 643 |
Enhancement: Add support for read-only groups
Read-only groups are now supported. Such groups can't be edited or assigned to/removed from users. They are indicated via a lock icon in the group list and all affected inputs.
https://github.com/owncloud/web/pull/8766
https://github.com/owncloud/web/issues/8729
| owncloud/web/changelog/7.0.0_2023-06-02/enhancement-add-support-for-read-only-groups/0 | {
"file_path": "owncloud/web/changelog/7.0.0_2023-06-02/enhancement-add-support-for-read-only-groups",
"repo_id": "owncloud",
"token_count": 86
} | 644 |
Enhancement: Conflict dialog UX
The UX of the conflict dialog has been improved slightly:
* The name of the conflicting resource is now written in quotes
* The title of the dialog now tells the difference between files and folders
* The "Skip"-dialog now tells the difference between files and folders
https://github.... | owncloud/web/changelog/7.0.0_2023-06-02/enhancement-conflict-dialog-ux/0 | {
"file_path": "owncloud/web/changelog/7.0.0_2023-06-02/enhancement-conflict-dialog-ux",
"repo_id": "owncloud",
"token_count": 99
} | 645 |
Enhancement: Introduce trashbin overview
We've added a trashbin overview page, where the user can see their personal trashbins but also the trashbin of
the spaces they are a member of.
https://github.com/owncloud/web/pull/8515
https://github.com/owncloud/web/issues/8517
| owncloud/web/changelog/7.0.0_2023-06-02/enhancement-introduce-trashbin-overview/0 | {
"file_path": "owncloud/web/changelog/7.0.0_2023-06-02/enhancement-introduce-trashbin-overview",
"repo_id": "owncloud",
"token_count": 79
} | 646 |
Enhancement: QuickActions role configurable
We've added the option to change the default quickactions role via capabilities.
https://github.com/owncloud/web/pull/8566
https://github.com/owncloud/web/issues/8547 | owncloud/web/changelog/7.0.0_2023-06-02/enhancement-quickactions-configurable-capabilities/0 | {
"file_path": "owncloud/web/changelog/7.0.0_2023-06-02/enhancement-quickactions-configurable-capabilities",
"repo_id": "owncloud",
"token_count": 60
} | 647 |
Enhancement: Skeleton App
The skeleton app has been part of the project for a long time, but with the conversion to vite it has since been ignored and no longer transpiled.
Due to the change, the app is now taken into account again, but must be explicitly enabled. For this please see the associated APP README.
Also n... | owncloud/web/changelog/7.0.0_2023-06-02/enhancement-skeleton-app/0 | {
"file_path": "owncloud/web/changelog/7.0.0_2023-06-02/enhancement-skeleton-app",
"repo_id": "owncloud",
"token_count": 117
} | 648 |
Bugfix: Experimental app loading
We've made a change to make our helper package "web-pkg" available in our (still experimental) extension system.
https://github.com/owncloud/web/pull/9212
| owncloud/web/changelog/7.0.2_2023-06-14/bugfix-app-loading/0 | {
"file_path": "owncloud/web/changelog/7.0.2_2023-06-14/bugfix-app-loading",
"repo_id": "owncloud",
"token_count": 51
} | 649 |
Enhancement: Add login button to top bar
We've added a login button to the top bar, this might be handy if a user receives a public link,
and they want to login with their user account.
https://github.com/owncloud/web/pull/9178
https://github.com/owncloud/web/pull/9187
https://github.com/owncloud/web/issues/9177
| owncloud/web/changelog/7.1.0_2023-08-23/enhancement-add-login-button-to-top-bar/0 | {
"file_path": "owncloud/web/changelog/7.1.0_2023-08-23/enhancement-add-login-button-to-top-bar",
"repo_id": "owncloud",
"token_count": 96
} | 650 |
Enhancement: User notification for blocked pop-ups and redirects
We have added some functionality that reminds the user to check their browser settings
so that redirects and e.g. opening a resource in a new tab can work properly.
https://github.com/owncloud/web/issues/9377
https://github.com/owncloud/web/pull/9383
ht... | owncloud/web/changelog/7.1.0_2023-08-23/enhancement-pop-up-redirect-blocker-notification/0 | {
"file_path": "owncloud/web/changelog/7.1.0_2023-08-23/enhancement-pop-up-redirect-blocker-notification",
"repo_id": "owncloud",
"token_count": 101
} | 651 |
Enhancement: Upload file on paste
We've implemented the possibility to upload a single file in the clipboard from anywhere via paste.
https://github.com/owncloud/web/pull/9140
https://github.com/owncloud/web/issues/9047
| owncloud/web/changelog/7.1.0_2023-08-23/enhancement-upload-file-on-paste/0 | {
"file_path": "owncloud/web/changelog/7.1.0_2023-08-23/enhancement-upload-file-on-paste",
"repo_id": "owncloud",
"token_count": 62
} | 652 |
Bugfix: Filter out shares without display name
In rare (legacy) cases, shares can exist without a displayName key, which caused trouble in the sharing sidebar section.
This has been addressed by filtering out shares without a displayName.
https://github.com/owncloud/web/issues/9257
https://github.com/owncloud/web/pul... | owncloud/web/changelog/8.0.0_2024-03-08/bugfix-filter-shares-without-displayname/0 | {
"file_path": "owncloud/web/changelog/8.0.0_2024-03-08/bugfix-filter-shares-without-displayname",
"repo_id": "owncloud",
"token_count": 85
} | 653 |
Bugfix: Resolving links without drive alias
Resolving links without a drive alias has been fixed in case a fileId is given via query param.
https://github.com/owncloud/web/pull/10154
https://github.com/owncloud/web/issues/9269
| owncloud/web/changelog/8.0.0_2024-03-08/bugfix-resolve-link-without-drive-alias/0 | {
"file_path": "owncloud/web/changelog/8.0.0_2024-03-08/bugfix-resolve-link-without-drive-alias",
"repo_id": "owncloud",
"token_count": 66
} | 654 |
Bugfix: Copy quicklinks for webkit navigator
Copying quicklinks didn't work on safari or other webkit based browsers and is fixed now.
https://github.com/owncloud/web/pull/9832
https://github.com/owncloud/web/issues/9166
| owncloud/web/changelog/8.0.0_2024-03-08/bugfix-webkit-copy-quicklinks/0 | {
"file_path": "owncloud/web/changelog/8.0.0_2024-03-08/bugfix-webkit-copy-quicklinks",
"repo_id": "owncloud",
"token_count": 68
} | 655 |
Enhancement: Application unification
The existing apps have been refactored and their common functionality has been extracted.
This enables developers to more easily create custom apps, and brings unified behavior like auto-saving, shortcut handling and success/error messages across all file viewer/editor apps.
https... | owncloud/web/changelog/8.0.0_2024-03-08/enhancement-app-templates/0 | {
"file_path": "owncloud/web/changelog/8.0.0_2024-03-08/enhancement-app-templates",
"repo_id": "owncloud",
"token_count": 157
} | 656 |
Enhancement: Display error message for upload to locked folder
Added error message to indicate that the upload failed due to folder being locked.
https://github.com/owncloud/web/pull/9940
https://github.com/owncloud/web/issues/5741
| owncloud/web/changelog/8.0.0_2024-03-08/enhancement-folder-locked-error-message/0 | {
"file_path": "owncloud/web/changelog/8.0.0_2024-03-08/enhancement-folder-locked-error-message",
"repo_id": "owncloud",
"token_count": 63
} | 657 |
Enhancement: Scroll to newly created folder
After creating a new folder that gets sorted into the currently displayed resources but outside of the current viewport, we now scroll to the new folder.
https://github.com/owncloud/web/issues/7600
https://github.com/owncloud/web/issues/7601
https://github.com/owncloud/web/... | owncloud/web/changelog/8.0.0_2024-03-08/enhancement-scroll-to-created-folder/0 | {
"file_path": "owncloud/web/changelog/8.0.0_2024-03-08/enhancement-scroll-to-created-folder",
"repo_id": "owncloud",
"token_count": 90
} | 658 |
Enhancement: Upload preparation time
The performance of the preparation time before each upload has been improved.
https://github.com/owncloud/web/pull/9552
https://github.com/owncloud/web/issues/9817
| owncloud/web/changelog/8.0.0_2024-03-08/enhancement-upload-preparation-time/0 | {
"file_path": "owncloud/web/changelog/8.0.0_2024-03-08/enhancement-upload-preparation-time",
"repo_id": "owncloud",
"token_count": 56
} | 659 |
Change: Remove homeFolder option
We have removed the `homeFolder` option as it was originally implemented and used by CERN but isn't needed anymore.
https://github.com/owncloud/web/pull/10122
| owncloud/web/changelog/9.0.0_2024-02-26/change-remove-home-folder-option/0 | {
"file_path": "owncloud/web/changelog/9.0.0_2024-02-26/change-remove-home-folder-option",
"repo_id": "owncloud",
"token_count": 51
} | 660 |
Enhancement: Integrate ToastUI editor in the text editor app
We've integrated the ToastUI editor in our text editor app.
This makes writing markdown much easier, since the users will have access to a markdown compatible toolbar.
Code syntax highlighting is also supported.
https://github.com/owncloud/web/pull/10390
ht... | owncloud/web/changelog/9.0.0_2024-02-26/enhancement-text-editor-intergrate-toast-ui-editor/0 | {
"file_path": "owncloud/web/changelog/9.0.0_2024-02-26/enhancement-text-editor-intergrate-toast-ui-editor",
"repo_id": "owncloud",
"token_count": 141
} | 661 |
#!/bin/sh
set -e
apk add curl
#TODO: app driver itself should try again until OnlyOffice is up...
retries=10
while [[ $retries -gt 0 ]]; do
if curl --silent --show-error --fail http://onlyoffice/hosting/discovery > /dev/null; then
ocis app-provider server
else
echo "OnlyOffice is not yet avai... | owncloud/web/deployments/examples/ocis_web/config/ocis-appprovider-onlyoffice/entrypoint-override.sh/0 | {
"file_path": "owncloud/web/deployments/examples/ocis_web/config/ocis-appprovider-onlyoffice/entrypoint-override.sh",
"repo_id": "owncloud",
"token_count": 178
} | 662 |
---
title: 'Development'
date: 2022-01-28T00:00:00+00:00
weight: 50
geekdocRepo: https://github.com/owncloud/web
geekdocEditPath: edit/master/docs/development
geekdocFilePath: _index.md
geekdocCollapseSection: true
---
{{< toc >}}
This section is a guide about the development of ownCloud Web **core**, **apps** and **... | owncloud/web/docs/development/_index.md/0 | {
"file_path": "owncloud/web/docs/development/_index.md",
"repo_id": "owncloud",
"token_count": 163
} | 663 |
const StyleDictionary = require('style-dictionary')
const path = require('path')
const yaml = require('yaml')
StyleDictionary.registerFormat(require('./build-tokens/format-writer-json'))
StyleDictionary.registerFormat(require('./build-tokens/format-writer-scss'))
StyleDictionary.registerTransform(require('./build-toke... | owncloud/web/packages/design-system/build/build-tokens.js/0 | {
"file_path": "owncloud/web/packages/design-system/build/build-tokens.js",
"repo_id": "owncloud",
"token_count": 725
} | 664 |
Enhancement: Added iconUrl to oc-file element
The oc-file element now supports passing an arbitrary URL to be displayed as a file thumbnail.
It will fall back to the icon name in case the thumbnail could not be loaded.
https://github.com/owncloud/owncloud-design-system/pull/678
| owncloud/web/packages/design-system/changelog/1.1.0_2020-03-17/678/0 | {
"file_path": "owncloud/web/packages/design-system/changelog/1.1.0_2020-03-17/678",
"repo_id": "owncloud",
"token_count": 75
} | 665 |
Change: Add flat style for oc-loader
The oc-loader component now has a `flat` style, which removes the border radius and shrinks the height. It can be
enabled by setting the `flat` property on the component to `true`.
With this the visual appearance of the loader is less prominent.
https://github.com/owncloud/ownclou... | owncloud/web/packages/design-system/changelog/1.12.0_2020-10-03/flat-loader/0 | {
"file_path": "owncloud/web/packages/design-system/changelog/1.12.0_2020-10-03/flat-loader",
"repo_id": "owncloud",
"token_count": 91
} | 666 |
Enhancement: Bind attributes and events to input in oc-text-input
We've binded attributes and events to input in oc-text-input so that they are passed properly instead of passing them to the root element.
https://github.com/owncloud/owncloud-design-system/pull/706 | owncloud/web/packages/design-system/changelog/1.2.1_2020-04-07/706-2/0 | {
"file_path": "owncloud/web/packages/design-system/changelog/1.2.1_2020-04-07/706-2",
"repo_id": "owncloud",
"token_count": 71
} | 667 |
Enhancement: Increase the logo clearspace
We've increased the gutter between top corner of the sidebar and the logo.
We've also decreased the size of the logo itself.
https://github.com/owncloud/owncloud-design-system/issues/786
https://github.com/owncloud/owncloud-design-system/pull/791 | owncloud/web/packages/design-system/changelog/1.7.0_2020-06-17/logo-clearspace/0 | {
"file_path": "owncloud/web/packages/design-system/changelog/1.7.0_2020-06-17/logo-clearspace",
"repo_id": "owncloud",
"token_count": 81
} | 668 |
Bugfix: Prevent hover style on footer of <oc-table>
https://github.com/owncloud/owncloud-design-system/pull/1667
| owncloud/web/packages/design-system/changelog/11.0.0_2021-10-04/bugfix-prevent-hover-style-on-oc-table-footer/0 | {
"file_path": "owncloud/web/packages/design-system/changelog/11.0.0_2021-10-04/bugfix-prevent-hover-style-on-oc-table-footer",
"repo_id": "owncloud",
"token_count": 38
} | 669 |
Bugfix: Set language for date formatting
We're now setting the language when formatting dates, so that localized parts of the date/time get shown according to the respective language.
https://github.com/owncloud/owncloud-design-system/pull/1806
| owncloud/web/packages/design-system/changelog/11.3.0_2021-12-03/bugfix-language-formatted-dates/0 | {
"file_path": "owncloud/web/packages/design-system/changelog/11.3.0_2021-12-03/bugfix-language-formatted-dates",
"repo_id": "owncloud",
"token_count": 60
} | 670 |
Change: Remove oc-table-files from ods
ods oc-table-files always contained concrete web-app-files logic, to make development more agile and keep things close
oc-table-files was removed from ODS and relocated to live in web-app-files from now on.
https://github.com/owncloud/owncloud-design-system/pull/1817
https://git... | owncloud/web/packages/design-system/changelog/12.0.0_2022-02-07/change-remove-oc-table-files/0 | {
"file_path": "owncloud/web/packages/design-system/changelog/12.0.0_2022-02-07/change-remove-oc-table-files",
"repo_id": "owncloud",
"token_count": 104
} | 671 |
Enhancement: Sizes
The size variables which define margins and paddings have been changed to use multiples of 8 instead of 10.
https://github.com/owncloud/owncloud-design-system/pull/1858
| owncloud/web/packages/design-system/changelog/12.0.0_2022-02-07/enhancement-sizes/0 | {
"file_path": "owncloud/web/packages/design-system/changelog/12.0.0_2022-02-07/enhancement-sizes",
"repo_id": "owncloud",
"token_count": 53
} | 672 |
Bugfix: Icons/Thumbnails were only visible for clickable resources
We fixed that only clickable resources had icons/thumbnails in `OcResource`.
It was fixed by introducing an `OcResourceLink` component that reduces code
complexity and duplication when linking resources.
https://github.com/owncloud/owncloud-design-sy... | owncloud/web/packages/design-system/changelog/13.0.0_2022-03-23/bugfix-icon-only-visible-for-clickable-resources/0 | {
"file_path": "owncloud/web/packages/design-system/changelog/13.0.0_2022-03-23/bugfix-icon-only-visible-for-clickable-resources",
"repo_id": "owncloud",
"token_count": 82
} | 673 |
Enhancement: Add OcContextualHelper
We've added a contextual helper component to provide more information
based on the context
https://github.com/owncloud/web/issues/6590
https://github.com/owncloud/owncloud-design-system/pull/2064 | owncloud/web/packages/design-system/changelog/13.1.0_2022-06-07/enhancement-add-contextual-helper-component/0 | {
"file_path": "owncloud/web/packages/design-system/changelog/13.1.0_2022-06-07/enhancement-add-contextual-helper-component",
"repo_id": "owncloud",
"token_count": 66
} | 674 |
Bugfix: Lazy loading render performance
The render performance of the lazy loading option in tables (OcTable, OcTableSimple) has been improved by removing the debounce option and by moving the lazy loading visualization from the OcTd to the OcTr component. For lazy loading, the colspan property has to be provided now.... | owncloud/web/packages/design-system/changelog/14.0.0_2022-11-03/bugfix-lazy-loading-table/0 | {
"file_path": "owncloud/web/packages/design-system/changelog/14.0.0_2022-11-03/bugfix-lazy-loading-table",
"repo_id": "owncloud",
"token_count": 133
} | 675 |
Enhancement: Adjust breadcrumb spacing
We've adjusted some spacing in the breadcrumbs to improve the overall look.
https://github.com/owncloud/web/issues/7676
https://github.com/owncloud/web/issues/7525
https://github.com/owncloud/owncloud-design-system/pull/2329
| owncloud/web/packages/design-system/changelog/14.0.0_2022-11-03/enhancement-breadcrumb-spacing/0 | {
"file_path": "owncloud/web/packages/design-system/changelog/14.0.0_2022-11-03/enhancement-breadcrumb-spacing",
"repo_id": "owncloud",
"token_count": 82
} | 676 |
Bugfix: Fix component docs
The docs were broken after merging Elements and Patterns into a Components section. Apparently `Components` is not allowed as section name for technical reasons, so we renamed it to `oC Components`.
https://github.com/owncloud/owncloud-design-system/pull/937
| owncloud/web/packages/design-system/changelog/2.0.1_2020-12-02/fix-docs/0 | {
"file_path": "owncloud/web/packages/design-system/changelog/2.0.1_2020-12-02/fix-docs",
"repo_id": "owncloud",
"token_count": 70
} | 677 |
Change: Remove basic styles
We've removed styles from the body element and from the #oc-content element.
We were forcing styles on a global level which were too specific and because of that limited the usage of the design system.
Any specific styling like that should be done in the consuming app.
https://github.com/o... | owncloud/web/packages/design-system/changelog/3.0.0_2021-02-24/remove-basic-styles/0 | {
"file_path": "owncloud/web/packages/design-system/changelog/3.0.0_2021-02-24/remove-basic-styles",
"repo_id": "owncloud",
"token_count": 85
} | 678 |
Enhancement: Improve documentation for image and user component
Changed the documentation markup for more semantic HTML that also looks better.
https://github.com/owncloud/owncloud-design-system/pull/1133 | owncloud/web/packages/design-system/changelog/3.2.0_2021-03-12/enhancement-improve-image-docs/0 | {
"file_path": "owncloud/web/packages/design-system/changelog/3.2.0_2021-03-12/enhancement-improve-image-docs",
"repo_id": "owncloud",
"token_count": 48
} | 679 |
Enhancement: Add aria properties to radio input
This also implies all the necessary accessibility changes.
https://github.com/owncloud/owncloud-design-system/pull/1148 | owncloud/web/packages/design-system/changelog/4.0.0_2021-03-25/enhancement-radio-accessibility/0 | {
"file_path": "owncloud/web/packages/design-system/changelog/4.0.0_2021-03-25/enhancement-radio-accessibility",
"repo_id": "owncloud",
"token_count": 44
} | 680 |
Enhancement: Add `oc-text-lead` class
We've added a utility class called `oc-text-lead` which is increasing the font size of the text.
https://github.com/owncloud/owncloud-design-system/pull/1189 | owncloud/web/packages/design-system/changelog/4.2.0_2021-03-31/enhancement-text-lead/0 | {
"file_path": "owncloud/web/packages/design-system/changelog/4.2.0_2021-03-31/enhancement-text-lead",
"repo_id": "owncloud",
"token_count": 61
} | 681 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.