text stringlengths 1 2.83M | id stringlengths 16 152 | metadata dict | __index_level_0__ int64 0 949 |
|---|---|---|---|
Bugfix: Update translations
We've corrected some German translations.
https://github.com/owncloud/web/issues/10585
https://github.com/owncloud/web/pull/10589
| owncloud/web/changelog/8.0.1_2024-03-12/bugfix-update-translations/0 | {
"file_path": "owncloud/web/changelog/8.0.1_2024-03-12/bugfix-update-translations",
"repo_id": "owncloud",
"token_count": 48
} | 700 |
Change: Vuex store removed
BREAKING CHANGE for developers: The vuex store has been removed in favor of pinia.
All store modules have been migrated to a pinia store module. Please see the linked issue down below for a list of all migrated stores and how to use them now.
There are a number of things that have been removed and/or moved into pinia composables instead:
Globals:
- `store` and `$store` variables have been removed.
- `ConfigurationManager` has been removed. The config now sits inside the configuration store.
App framework:
- `announceStore` has been removed. There is no need for apps to announce stores to the runtime. If you need to use a store in your app, simply create a pinia store module and use it.
- `announceExtensions` has been removed. The proper way for an app to register file extensions is via the `extensions` property inside the `appInfo` object.
- `requestStore` has been removed. There is no need to request specific stores. All stores that `web-pkg` provides can be imported and accessed via their composables.
- `enabled` callback as well as the `name` callback of the `AppNavigationItem` no longer have the `capabilities` parameter.
- `store` param of the `ClassicApplicationScript` has been removed.
Composables:
- `useStore` has been removed. Use the pinia for the store you want to use instead.
- `useAccessToken` has been removed. It now sits inside the auth store.
- `usePublicLinkContext` has been removed. It now sits inside the auth store.
- `usePublicLinkPassword` has been removed. It now sits inside the auth store.
- `usePublicLinkToken` has been removed. It now sits inside the auth store.
- `useUserContext` has been removed. It now sits inside the auth store.
- `useConfigurationManager` has been removed. The config now sits inside the configuration store.
- `use...Capability` composables have been removed. Capablities now sit inside the capability store.
For store specific changes please see the linked issue and PRs down below.
https://github.com/owncloud/web/issues/10210
https://github.com/owncloud/web/pull/10212
https://github.com/owncloud/web/pull/10240
https://github.com/owncloud/web/pull/10307
https://github.com/owncloud/web/pull/10309
https://github.com/owncloud/web/pull/10316
https://github.com/owncloud/web/pull/10323
https://github.com/owncloud/web/pull/10326
https://github.com/owncloud/web/pull/10329
https://github.com/owncloud/web/pull/10331
https://github.com/owncloud/web/pull/10336
https://github.com/owncloud/web/pull/10338
https://github.com/owncloud/web/pull/10341
https://github.com/owncloud/web/pull/10346
https://github.com/owncloud/web/pull/10349
https://github.com/owncloud/web/pull/10362
https://github.com/owncloud/web/pull/10363
https://github.com/owncloud/web/pull/10368
https://github.com/owncloud/web/pull/10372
| owncloud/web/changelog/9.0.0_2024-02-26/change-vuex-store-removed/0 | {
"file_path": "owncloud/web/changelog/9.0.0_2024-02-26/change-vuex-store-removed",
"repo_id": "owncloud",
"token_count": 802
} | 701 |
Enhancement: Warn user before closing browser when upload is in progress
We've added a warning message for the user, if they try to close the browser while upload is in progress.
https://github.com/owncloud/web/pull/10519
https://github.com/owncloud/web/issues/10500
| owncloud/web/changelog/9.0.0_2024-02-26/enhancement-warn-user-before-close-browser-when-uploading/0 | {
"file_path": "owncloud/web/changelog/9.0.0_2024-02-26/enhancement-warn-user-before-close-browser-when-uploading",
"repo_id": "owncloud",
"token_count": 73
} | 702 |
#!/bin/sh
set -e
# we can't mount it directly because the run-document-server.sh script wants to move it
cp /etc/onlyoffice/documentserver/local.dist.json /etc/onlyoffice/documentserver/local.json
/app/ds/run-document-server.sh
| owncloud/web/deployments/examples/ocis_web/config/onlyoffice/entrypoint-override.sh/0 | {
"file_path": "owncloud/web/deployments/examples/ocis_web/config/onlyoffice/entrypoint-override.sh",
"repo_id": "owncloud",
"token_count": 77
} | 703 |
---
title: 'Tooling'
date: 2022-01-28T00:00:00+00:00
weight: 40
geekdocRepo: https://github.com/owncloud/web
geekdocEditPath: edit/master/docs/development
geekdocFilePath: tooling.md
---
{{< toc >}}
## Packaging
Web is using [pnpm](https://pnpm.io/) as package manager and [vite](https://vitejs.dev/) as build tool. The latter is built on top of [rollup](https://rollupjs.org/) and brings some additional features such as instant hot-reloading.
## Development Setup
### Prerequisites
- docker
- docker-compose (if not already included in your docker installation)
- pnpm
- node
If you’re not using Docker Desktop, you might have to modify your `/etc/hosts` and add `127.0.0.1 host.docker.internal` to make `host.docker.internal` links work.
### Installing Dependencies
After cloning the source code, install the dependencies via `pnpm install`.
### Starting the Server
You can start the server by running `docker-compose up ocis`.
Note that the container needs a short while to start because it is waiting for `tika` to be initialized. This is the case as soon as the `tika-service` container has stopped running.
### Building and Accessing Web
After the docker containers are running (and `tika` is being initialized), run `pnpm build:w` to build Web. This also includes hot-reloading after changes you make, although it will take a while to rebuild the project. See down below for some details on how to enable instant hot-reloading.
Now you can access Web via https://host.docker.internal:9200.
### Using Instant Hot-Reload via Vite
To work with instant hot-reloading, you can also build Web by running `pnpm vite`. The port to access Web is slightly different then: https://host.docker.internal:9201. Also note that the initial page load may take a bit longer than usual. This is normal and to be expected.
### Running Web with oC10
Older versions of Web (< 7.1.0) also support running oC10 as server. The development setup is nearly the same as mentioned above, the only differences are:
* The server can be started via `docker-compose up oc10`
* The server port is `8080` (`8081` when running Web via `pnpm vite:oc10`)
| owncloud/web/docs/development/tooling.md/0 | {
"file_path": "owncloud/web/docs/development/tooling.md",
"repo_id": "owncloud",
"token_count": 612
} | 704 |
---
title: 'Theming'
date: 2021-04-01T00:00:00+00:00
weight: 55
geekdocRepo: https://github.com/owncloud/web
geekdocEditPath: edit/master/docs/theming
geekdocFilePath: _index.md
geekdocCollapseSection: true
---
{{< toc >}}
## Introduction
By providing your own theme, you can customize the user experience for your own ownCloud installation. This is being achieved by providing a `json` file that contains text snippets (like brand name and slogan), paths to images (e.g. logos or favicon) and design tokens for various color, sizing and spacing parameters.
This page documents the setup and configuration options, and provides a template for you to get started.
## Ways of providing a theme
Generally, your theming configuration lives inside a `.json` file, e.g. `theme.json`. To load this file, it needs to be correctly referenced inside your `config/config.json` (example configurations can be [found on GitHub](https://github.com/owncloud/web/tree/master/config)).
To reference your theme, you have two options:
- Using a URL, e.g. `"theme": "https://externalurl.example.com/theme-name/theme.json",`. To avoid CORS issues, please make sure that you host the URL on the same URL as your ownCloud web hosting.
- For development and testing purposes, you can store your `theme.json` inside `packages/web-runtime/themes/{theme-name}/` and reference it in the `config.json`. However, this isn't recommended for production use since your changes may get lost when updating oCIS or the `web` app in OC10.
**Hint:** If no theme is provided, the loading of your custom theme fails or the theme can't be parsed correctly, the standard ownCloud theme will be loaded as a fallback and an error with further information will be logged on the browser console.
## Configuring a theme
Inside your `theme.json`, there is a `common` key, which is explained in the next section, and a `clients` key: Here, you can find the available ownCloud clients - please note that the documentation below focuses on `web` and check the respective documentation for other clients for details on their themability.
The general top-level structure of a valid `theme.json` is outlined below:
```json
{
"common": {},
"clients": {
"android": {},
"desktop": {},
"ios": {},
"web": {}
}
}
```
### Common section
The `common` section provides a set of information that is designed to be available for all clients. It gets merged "down" to the final themes and aims to reduce duplication, but can be overwritten by more specific information inside both the clients' defaults and actual themes.
The structure of a valid `common` section is outlined below:
```json
"common": {
"name": "ownCloud",
"slogan": "ownCloud – A safe home for all your data",
"logo": "themes/owncloud/assets/logo.svg",
"urls": {
"accessDeniedHelp": "",
"imprint": "",
"privacy": ""
}
}
```
All of the below parameters are required:
- `name` specifies the publicly visible name
- `slogan` specifies the publicly visible slogan
- `logo` specifies the logo in e.g. the top bar within the web UI
- `accessDeniedHelp` specifies the target URL for the access denied help link
- `imprintUrl` specifies the target URL for the imprint link
- `privacyUrl` specifies the target URL for the privacy link
### Web Theme
The structure of a valid `web` client section is outlined below:
```json
{
"web": {
"defaults": {
"appBanner": {
// Please see below for details
},
"common": {
// Please see top level "common" section for details
},
"logo": {
// Please see below for details
},
"loginPage": {
// Please see below for details
},
"designTokens": {
// Please see below for details
}
},
"themes": [
// Your custom web themes go here, see below for details
]
}
}
```
#### The "defaults"
Similar to the top level `common` section, this object contains information that shall be shared among the available themes and can/should be defined only once. The top level `common` section first gets merged into the `defaults`, which then get merged into the individual themes.
##### The "appBanner" options
Configures a app banner that gets shown on mobile devices and suggests downloading the native client from the respective app store. Omitting the key disables the banner.
Example structure:
```json
{
"appBanner": {
"title": "ownCloud",
"publisher": "ownCloud GmbH",
"additionalInformation": "",
"ctaText": "OPEN",
"icon": "themes/owncloud/assets/owncloud-app-icon.png",
"appScheme": "owncloud"
}
}
```
- `title` is usually your app's name as shown in the App Store or Google Play. `publisher` is the app developer's name.
- `additionalInformation` can be used to specify pricing information, such as "FREE" or a catchphrase like "Don't miss out on our awesome app!".
- `ctaText` refers to the text in the call to action button on the right side. The `icon` directive may be used to specify your own app icon.
- `icon` links the icon to be displayed as a preview for the final app icon within the app banner
- `appScheme` is the first part of the URL that is used to tell the mobile OS which app to open, so using `ownCloud` will generate links such as `owncloud://yourdomain.com/f/2b61b822...`.
##### The "logo" options
Here, you can specify the images to be used in the `"topbar"`, for the `"favicon"` and on the `"login"` page. Various formats are supported and it's up to you to decide which one fits your use case best.
```json
"logo": {
"topbar": "themes/owncloud/assets/logo.svg",
"favicon": "themes/owncloud/assets/favicon.jpg",
"login": "themes/owncloud/assets/logo.svg"
},
```
##### The "loginPage" options
Using the `"autoRedirect"` boolean, you can specify whether the user is shown a login page before possible getting redirected to your LDAP/OIDC/OAuth provider. If it is set to true, you can set the background image for said login page by providing an image file in the `"backgroundImg"` option.
```json
"loginPage": {
"autoRedirect": true,
"backgroundImg": "themes/owncloud/assets/loginBackground.jpg"
},
```
##### The "designTokens" options
To further customize your ownCloud instance, you can provide your own styles. To give you an idea of how a working design system looks like, feel free to head over to the [ownCloud design tokens](https://owncloud.design/#/Design%20Tokens) for inspiration.
**Hint:** All the variables are initialized using the [ownCloud design tokens](https://owncloud.design/#/Design%20Tokens) and then overwritten by your theme variables. Therefore, you don't have to provide all the variables and can use the default ownCloud colors as a fallback.
In general, the theme loader looks for a `designTokens` key inside your theme configuration. Inside the `designTokens`, it expects to find a `colorPalette`, `fontSizes` and `spacing` collection. The structure is outlined below:
```json
"designTokens": {
"breakpoints": {
// Please see below for details
},
"colorPalette": {
// Please see below for details
},
"fontFamily": "", // Please see below for details
"fontSizes": {
// Please see below for details
},
"sizes": {
// Please see below for details
},
"spacing": {
// Please see below for details
}
}
```
###### Breakpoints
If you'd like to set different breakpoints than the default ones in the ownCloud design system, you can set them using theming variables.
Breakpoint variables get prepended with `--oc-breakpoint-`, so e.g. _"large-default"_ creates the custom CSS property `--oc-breakpoint-large-default`.
```json
{
"breakpoints": {
"xsmall-max": "",
"small-default": "",
"small-max": "",
"medium-default": "",
"medium-max": "",
"large-default": "",
"large-max": "",
"xlarge": ""
}
}
```
###### Colors
For the color values, you can use any valid CSS color format, e.g. **hex** (#fff), **rgb** (rgb(255,255,255)) or **color names** (white).
Color variables get prepended with `--oc-color-`, so e.g. _"background-default"_ creates the custom CSS property `--oc-color-background-default`.
Again, you can use the [ownCloud design tokens](https://owncloud.design/#/Design%20Tokens) as a reference implementation.
```json
{
"colorPalette": {
"background-accentuate": "",
"background-default": "",
"background-highlight": "",
"background-muted": "",
"border": "",
"input-bg": "",
"input-border": "",
"input-text-default": "",
"input-text-muted": "",
"swatch-brand-default": "",
"swatch-brand-hover": "",
"swatch-brand-muted": "",
"swatch-brand-contrast": "",
"swatch-danger-default": "",
"swatch-danger-hover": "",
"swatch-danger-muted": "",
"swatch-danger-contrast": "",
"swatch-inverse-default": "",
"swatch-inverse-hover": "",
"swatch-inverse-muted": "",
"swatch-passive-default": "",
"swatch-passive-hover": "",
"swatch-passive-hover-outline": "",
"swatch-passive-muted": "",
"swatch-passive-contrast": "",
"swatch-primary-default": "",
"swatch-primary-hover": "",
"swatch-primary-muted": "",
"swatch-primary-muted-hover": "",
"swatch-primary-gradient": "",
"swatch-primary-gradient-hover": "",
"swatch-primary-contrast": "",
"swatch-success-default": "",
"swatch-success-hover": "",
"swatch-success-muted": "",
"swatch-success-contrast": "",
"swatch-warning-default": "",
"swatch-warning-hover": "",
"swatch-warning-muted": "",
"swatch-warning-contrast": "",
"text-default": "",
"text-inverse": "",
"text-muted": ""
}
}
```
###### Font sizes
You can change the `default`, `large` and `medium` font sizes according to your needs. If you need more customization options regarding font sizes, please [open an issue on GitHub](https://github.com/owncloud/web/issues/new) with a detailed description.
Font size variables get prepended with `--oc-font-size-`, so e.g. _"default"_ creates the custom CSS property `--oc-font-size-default`.
```json
{
"fontSizes": {
"default": "",
"large": "",
"medium": ""
}
}
```
###### Font family
You can change the font family according to your needs. The font family gets written into the `--oc-font-family` CSS variable.
```json
{
"fontFamily": ""
}
```
Please note that you also need to make the font available as a `font-face` via CSS.
###### Sizes
Use sizing variables to change various UI elements, such as icon and logo appearance, table row or checkbox sizes, according to your needs.
If you need more customization options regarding sizes, please [open an issue on GitHub](https://github.com/owncloud/web/issues/new) with a detailed description.
Size variables get prepended with `--oc-size-`, so e.g. _"icon-default"_ creates the custom CSS property `--oc-size-icon-default`.
```json
{
"sizes": {
"form-check-default": "",
"height-small": "",
"height-table-row": "",
"icon-default": "",
"max-height-logo": "",
"max-width-logo": "",
"width-medium": "",
"tiles-default": "",
"tiles-resize-step": ""
}
}
```
###### Spacing
Use the six spacing options (`xsmall | small | medium | large | xlarge | xxlarge`) to create a more (or less) condensed version of the user interface. If you need more customization options regarding sizes, please [open an issue on GitHub](https://github.com/owncloud/web/issues/new) with a detailed description.
Spacing variables get prepended with `--oc-space-`, so e.g. _"xlarge"_ creates the custom CSS property `--oc-space-xlarge`.
```json
{
"spacing": {
"xsmall": "",
"small": "",
"medium": "",
"large": "",
"xlarge": "",
"xxlarge": ""
}
}
```
#### Actual Themes
Apart from the `defaults`, you need to provide one or more themes in the `themes` key within the `web`-`clients` in your `theme.json`. As a reminder, the general structure should be:
```json
{
"common": { ... },
"clients": {
...,
"web": {
"defaults": {
...
},
"themes": [
{
"isDark": false,
"name": "Light Theme",
}
]
}
}
}
```
Again, both the global `common` section as well as the `defaults` will get merged into your themes, but locally provided information takes precedence.
Required information
- `name` for the visible name in the theme switcher and to save the current theme to localStorage
- `isDark` to provide the user agent with additional information
Optional information
- `appBanner` see section above
- `common` see section above
- `designTokens` see section above
- `logo` see section above
- `loginPage` see section above
## Extendability
If you define different key-value pairs inside any of the objects (`breakpoints`, `colorPalette`, `fontSizes`, `sizes`, `spacing`) in `"designTokens"`, they will get loaded and initialized as CSS custom properties but don't necessarily take any effect in the user interface. This gives you an opportunity to, for example, customize extensions from within the theme in the web runtime (and not the extension itself).
## Example theme
A full template for your custom theme is provided below, and you can use the instructions above to set it up according to your needs:
```json
{
"common": {
"name": "ownCloud",
"slogan": "ownCloud – A safe home for all your data",
"logo": "themes/owncloud/assets/logo.svg",
"urls": {
"accessDeniedHelp": "",
"imprint": "",
"privacy": ""
}
},
"clients": {
"android": {},
"desktop": {},
"ios": {},
"web": {
"defaults": {
"logo": {
"topbar": "themes/owncloud/assets/logo.svg",
"favicon": "themes/owncloud/assets/favicon.jpg",
"login": "themes/owncloud/assets/logo.svg"
},
"loginPage": {
"autoRedirect": true,
"backgroundImg": "themes/owncloud/assets/loginBackground.jpg"
},
"designTokens": {
"breakpoints": {
"xsmall-max": "",
"small-default": "",
"small-max": "",
"medium-default": "",
"medium-max": "",
"large-default": "",
"large-max": "",
"xlarge": ""
},
"fontSizes": {
"default": "",
"large": "",
"medium": ""
},
"sizes": {
"form-check-default": "",
"height-small": "",
"height-table-row": "",
"icon-default": "",
"max-height-logo": "",
"max-width-logo": "",
"width-medium": "",
"tiles-default": "",
"tiles-resize-step": ""
},
"spacing": {
"xsmall": "",
"small": "",
"medium": "",
"large": "",
"xlarge": "",
"xxlarge": ""
}
}
},
"themes": [
{
"isDark": false,
"name": "Light Theme",
"designTokens": {
"colorPalette": {
"background-accentuate": "rgba(255, 255, 5, 0.1)",
"background-default": "#ffffff",
"background-highlight": "#edf3fa",
"background-muted": "#f8f8f8",
"background-secondary": "#ffffff",
"background-hover": "rgb(236, 236, 236)",
"color-components-apptopbar-background": "transparent",
"color-components-apptopbar-border": "#ceddee",
"border": "#ecebee",
"input-bg": "#ffffff",
"input-border": "#ceddee",
"input-text-default": "#041e42",
"input-text-muted": "#4c5f79",
"swatch-brand-default": "#041e42",
"swatch-brand-hover": "#223959",
"swatch-brand-contrast": "#ffffff",
"swatch-danger-contrast": "#ffffff",
"swatch-danger-default": "rgb(197, 48, 48)",
"swatch-danger-hover": "#b12b2b",
"swatch-danger-muted": "rgb(204, 117, 117)",
"swatch-inverse-default": "#ffffff",
"swatch-inverse-hover": "#ffffff",
"swatch-inverse-muted": "#bfbfbf",
"swatch-passive-default": "#4c5f79",
"swatch-passive-hover": "#43536b",
"swatch-passive-hover-outline": "#f7fafd",
"swatch-passive-muted": "#283e5d",
"swatch-passive-contrast": "#ffffff",
"swatch-primary-default": "#4a76ac",
"swatch-primary-hover": "#80a7d7",
"swatch-primary-muted": "#2c588e",
"swatch-primary-muted-hover": "rgb(36, 75, 119)",
"swatch-primary-gradient": "#4e85c8",
"swatch-primary-gradient-hover": "rgb(59, 118, 194)",
"swatch-primary-contrast": "#ffffff",
"swatch-success-default": "rgb(3, 84, 63)",
"swatch-success-hover": "#023b2c",
"swatch-success-muted": "rgb(83, 150, 10)",
"swatch-success-contrast": "#ffffff",
"swatch-warning-default": "rgb(183, 76, 27)",
"swatch-warning-hover": "#a04318",
"swatch-warning-muted": "rgba(183, 76, 27, .5)",
"swatch-warning-contrast": "#ffffff",
"text-default": "#041e42",
"text-inverse": "#ffffff",
"text-muted": "#4c5f79",
"icon-folder": "#4d7eaf",
"icon-archive": "#fbbe54",
"icon-image": "#ee6b3b",
"icon-spreadsheet": "#15c286",
"icon-document": "#3b44a6",
"icon-video": "#045459",
"icon-audio": "#700460",
"icon-presentation": "#ee6b3b",
"icon-pdf": "#ec0d47"
}
}
},
{
"isDark": true,
"name": "Dark Theme",
"designTokens": {
"colorPalette": {
"background-accentuate": "#696969",
"background-default": "#292929",
"background-highlight": "#383838",
"background-muted": "#383838",
"background-secondary": "#4f4f4f",
"background-hover": "#383838",
"color-components-apptopbar-background": "transparent",
"color-components-apptopbar-border": "#ceddee",
"border": "#383838",
"input-bg": "#4f4f4f",
"input-border": "#696969",
"input-text-default": "#dadcdf",
"input-text-muted": "#bdbfc3",
"swatch-brand-default": "#212121",
"swatch-brand-hover": "#ffffff",
"swatch-brand-contrast": "#dadcdf",
"swatch-inverse-default": "",
"swatch-inverse-hover": "",
"swatch-inverse-muted": "#696969",
"swatch-passive-default": "#c2c2c2",
"swatch-passive-hover": "",
"swatch-passive-hover-outline": "#3B3B3B",
"swatch-passive-muted": "#bdbfc3",
"swatch-passive-contrast": "#000000",
"swatch-primary-default": "#73b0f2",
"swatch-primary-hover": "#7bafef",
"swatch-primary-muted": "",
"swatch-primary-muted-hover": "#2282f7",
"swatch-primary-gradient": "#4e85c8",
"swatch-primary-gradient-hover": "#76a1d5",
"swatch-primary-contrast": "#dadcdf",
"swatch-success-background": "rgba(0, 188, 140, 0)",
"swatch-success-default": "rgb(0, 188, 140)",
"swatch-success-hover": "#00f0b4",
"swatch-success-muted": "rgba(0, 188, 140, .5)",
"swatch-success-contrast": "#000000",
"swatch-warning-background": "rgba(0,0,0,0)",
"swatch-warning-default": "rgb(232, 191, 73)",
"swatch-warning-hover": "#eed077",
"swatch-warning-muted": "rgba(232, 178, 19, .5)",
"swatch-danger-default": "rgb(255, 72, 53)",
"swatch-danger-hover": "#ff7566",
"swatch-danger-muted": "rgba(255, 72, 53, .5)",
"swatch-danger-contrast": "#dadcdf",
"swatch-warning-contrast": "#000000",
"text-default": "#dadcdf",
"text-inverse": "#000000",
"text-muted": "#c2c2c2",
"icon-folder": "rgb(44, 101, 255)",
"icon-archive": "rgb(255, 207, 1)",
"icon-image": "rgb(255, 111, 0)",
"icon-spreadsheet": "rgb(0, 182, 87)",
"icon-document": "rgb(44, 101, 255)",
"icon-video": "rgb(0, 187, 219)",
"icon-audio": "rgb(208, 67, 236)",
"icon-presentation": "rgb(255, 64, 6)",
"icon-pdf": "rgb(225, 5, 14)"
}
}
}
]
}
}
}
```
| owncloud/web/docs/theming/_index.md/0 | {
"file_path": "owncloud/web/docs/theming/_index.md",
"repo_id": "owncloud",
"token_count": 8651
} | 705 |
module.exports = {
name: 'transform/ods/namespace',
type: 'name',
transformer: function (prop) {
return ['oc', prop.name].filter(Boolean).join('-')
}
}
| owncloud/web/packages/design-system/build/build-tokens/transform-namespace.js/0 | {
"file_path": "owncloud/web/packages/design-system/build/build-tokens/transform-namespace.js",
"repo_id": "owncloud",
"token_count": 61
} | 706 |
Enhancement: Add visibility off icon
We've added a new icon to represent state when visibility is off.
This can be used e.g. when toggling the visibility of a password.
https://material.io/resources/icons/?search=eye&icon=visibility_off&style=baseline
https://github.com/owncloud/owncloud-design-system/pull/855 | owncloud/web/packages/design-system/changelog/1.10.0_2020-09-16/add-visibility-off-icon/0 | {
"file_path": "owncloud/web/packages/design-system/changelog/1.10.0_2020-09-16/add-visibility-off-icon",
"repo_id": "owncloud",
"token_count": 90
} | 707 |
Bugfix: Icon variation on notification message
We fixed a bug in the notification message component where the a wrong variation was applied to icons.
https://github.com/owncloud/owncloud-design-system/issues/843
https://github.com/owncloud/owncloud-design-system/pull/893
| owncloud/web/packages/design-system/changelog/1.12.1_2020-10-05/icon-variation-fix/0 | {
"file_path": "owncloud/web/packages/design-system/changelog/1.12.1_2020-10-05/icon-variation-fix",
"repo_id": "owncloud",
"token_count": 72
} | 708 |
Enhancement: Extended the modal component with input
We've added an input into the modal component which can be displayed via prop.
If the input is displayed, the message gets overridden.
The content slot can override the input.
In the confirm event is now emitted the value of input.
https://github.com/owncloud/owncloud-design-system/pull/730 | owncloud/web/packages/design-system/changelog/1.4.0_2020-04-29/extended-modal-with-input/0 | {
"file_path": "owncloud/web/packages/design-system/changelog/1.4.0_2020-04-29/extended-modal-with-input",
"repo_id": "owncloud",
"token_count": 86
} | 709 |
Enhancement: Show dropdown in autocomplete on focus
In case the input is focused and it still has a value the dropdown will open
https://github.com/owncloud/owncloud-design-system/pull/804
| owncloud/web/packages/design-system/changelog/1.8.0_2020-07-03/autocomplete-open-dropdown-on-input-focus/0 | {
"file_path": "owncloud/web/packages/design-system/changelog/1.8.0_2020-07-03/autocomplete-open-dropdown-on-input-focus",
"repo_id": "owncloud",
"token_count": 54
} | 710 |
Bugfix: Limit select event in OcTableFiles
We've updated the behaviour in the OcTableFiles component so select events only
get fired if the target row is not already selected. This allows for batch actions
in the contextmenu which was limited to only one resource before.
https://github.com/owncloud/owncloud-design-system/pull/1753
| owncloud/web/packages/design-system/changelog/11.1.0_2021-11-03/bugfix-limit-select-event/0 | {
"file_path": "owncloud/web/packages/design-system/changelog/11.1.0_2021-11-03/bugfix-limit-select-event",
"repo_id": "owncloud",
"token_count": 86
} | 711 |
Enhancement: Optional padding size for OcDrop
We've added a `paddingSize` property to the OcDrop component for specifying a dedicated padding of the div that wraps the content slot.
It defaults to "medium" and also allows to remove the padding entirely.
https://github.com/owncloud/owncloud-design-system/pull/1798
| owncloud/web/packages/design-system/changelog/11.3.0_2021-12-03/enhancement-drop-padding-size/0 | {
"file_path": "owncloud/web/packages/design-system/changelog/11.3.0_2021-12-03/enhancement-drop-padding-size",
"repo_id": "owncloud",
"token_count": 81
} | 712 |
Change: Remove UiKit
We have removed the UiKit library this design system originally was built on.
The necessary style rules for the design system itself and our web repository have been internalized,
and everything else got dropped to greatly reduce bundle size and build times.
Please note that with this change, we have also dropped and/or refactored a lot of CSS classes and correlated styling.
https://github.com/owncloud/owncloud-design-system/pull/1658
https://github.com/owncloud/owncloud-design-system/issues/538
https://github.com/owncloud/owncloud-design-system/pull/1882
| owncloud/web/packages/design-system/changelog/12.0.0_2022-02-07/change-remove-uikit/0 | {
"file_path": "owncloud/web/packages/design-system/changelog/12.0.0_2022-02-07/change-remove-uikit",
"repo_id": "owncloud",
"token_count": 151
} | 713 |
Enhancement: Use Roboto font
We've switched the default font from Fira Sans to Roboto.
https://github.com/owncloud/owncloud-design-system/pull/1876
https://github.com/owncloud/web/issues/6100/
| owncloud/web/packages/design-system/changelog/12.0.0_2022-02-07/enhancement-use-roboto/0 | {
"file_path": "owncloud/web/packages/design-system/changelog/12.0.0_2022-02-07/enhancement-use-roboto",
"repo_id": "owncloud",
"token_count": 64
} | 714 |
Change: Remove OcStatusIndicators from OcResource
We've removed OcStatusIndicators from OcResource
since it will be moved in a separate column
https://github.com/owncloud/owncloud-design-system/pull/2014
https://github.com/owncloud/web/issues/5976
https://github.com/owncloud/web/pull/6552
| owncloud/web/packages/design-system/changelog/13.0.0_2022-03-23/change-remove-resource-status-indicators/0 | {
"file_path": "owncloud/web/packages/design-system/changelog/13.0.0_2022-03-23/change-remove-resource-status-indicators",
"repo_id": "owncloud",
"token_count": 90
} | 715 |
Enhancement: Export package members
Add exports for `composables`, `utils`, `components`, `directives`, `helpers` and `mixins`.
Start using them via `import { composables, utils, ... } from 'owncloud-design-system'`.
https://github.com/owncloud/owncloud-design-system/pull/2048
| owncloud/web/packages/design-system/changelog/13.1.0_2022-06-07/enhancement-export-members/0 | {
"file_path": "owncloud/web/packages/design-system/changelog/13.1.0_2022-06-07/enhancement-export-members",
"repo_id": "owncloud",
"token_count": 86
} | 716 |
Bugfix: Remove click event on OcIcon
We have removed an unnecessary default click handler on the OcIcon component, expecting it to increase performance of the UI.
https://github.com/owncloud/owncloud-design-system/pull/2216
| owncloud/web/packages/design-system/changelog/14.0.0_2022-11-03/bugfix-remove-click-event-oc-icon/0 | {
"file_path": "owncloud/web/packages/design-system/changelog/14.0.0_2022-11-03/bugfix-remove-click-event-oc-icon",
"repo_id": "owncloud",
"token_count": 59
} | 717 |
Enhancement: Add offset property to the drop component
We've added an offset property to the drop component to define a custom offset. Also, the max width of drop menus was increased to 400px.
https://github.com/owncloud/web/issues/7335
https://github.com/owncloud/owncloud-design-system/pull/2276
| owncloud/web/packages/design-system/changelog/14.0.0_2022-11-03/enhancement-drop-offset/0 | {
"file_path": "owncloud/web/packages/design-system/changelog/14.0.0_2022-11-03/enhancement-drop-offset",
"repo_id": "owncloud",
"token_count": 82
} | 718 |
Bugfix: breadcrumb icon floating
home icon in breadcrumb don't break into second line anymore
https://github.com/owncloud/ocis/issues/1053
https://github.com/owncloud/owncloud-design-system/pull/997 | owncloud/web/packages/design-system/changelog/2.0.3_2020-12-12/breadcrumb-icon-floating/0 | {
"file_path": "owncloud/web/packages/design-system/changelog/2.0.3_2020-12-12/breadcrumb-icon-floating",
"repo_id": "owncloud",
"token_count": 61
} | 719 |
Change: Pass object as the target route
We've changed the `targetRoute` prop in the `oc-resource` component to accept an object instead of a string.
This object is now accepting keys `name`, `params` and `query`. Only `name` is required.
All keys are then passed to the router link which enables using more complex routes.
https://github.com/owncloud/owncloud-design-system/pull/1102
| owncloud/web/packages/design-system/changelog/3.0.0_2021-02-24/router-link-object/0 | {
"file_path": "owncloud/web/packages/design-system/changelog/3.0.0_2021-02-24/router-link-object",
"repo_id": "owncloud",
"token_count": 100
} | 720 |
Bugfix: Remove leading comma from link avatar group tooltip
We fixed a bug in the oc-avatar-group component, which showed a leading ", " in its tooltip in case it was only about links.
https://github.com/owncloud/owncloud-design-system/pull/1165
| owncloud/web/packages/design-system/changelog/3.2.2_2021-03-22/bugfix-links-in-avatar-group/0 | {
"file_path": "owncloud/web/packages/design-system/changelog/3.2.2_2021-03-22/bugfix-links-in-avatar-group",
"repo_id": "owncloud",
"token_count": 68
} | 721 |
Enhancement: Implement labels and descriptions for text input fields
This also implies all the required accessibility changes.
https://github.com/owncloud/owncloud-design-system/pull/1141 | owncloud/web/packages/design-system/changelog/4.0.0_2021-03-25/enhancement-textinput-labels-and-description/0 | {
"file_path": "owncloud/web/packages/design-system/changelog/4.0.0_2021-03-25/enhancement-textinput-labels-and-description",
"repo_id": "owncloud",
"token_count": 45
} | 722 |
Bugfix: Progressbar background color
The progressbar background color wasn't theme-able and therefore inherited uikit-styles that provided undesired results on dark backgrounds.
It now uses the text-muted color for the background.
https://github.com/owncloud/owncloud-design-system/pull/1192
| owncloud/web/packages/design-system/changelog/4.2.1_2021-04-01/bugfix-progressbar-background/0 | {
"file_path": "owncloud/web/packages/design-system/changelog/4.2.1_2021-04-01/bugfix-progressbar-background",
"repo_id": "owncloud",
"token_count": 74
} | 723 |
Enhancement: Improve modal component
We've made the OcModal component more accessible:
- It now features `role="dialog"` and `aria-modal="true"`
- The modal title is now a `<h2>`
- Component styles have been moved from an individual stylesheet to the component file
https://github.com/owncloud/owncloud-design-system/pull/1214
| owncloud/web/packages/design-system/changelog/6.1.0_2021-04-22/enhancement-improve-modal/0 | {
"file_path": "owncloud/web/packages/design-system/changelog/6.1.0_2021-04-22/enhancement-improve-modal",
"repo_id": "owncloud",
"token_count": 99
} | 724 |
Enhancement: Lazy img loading & accessibility for OcAvatar
- Add lazy loading to OcImg component
- Internalize former dependency vue-avatar into OcAvatar
- Make OcAvatar use OcImg component, using lazy loading
- Change OcAvatar to be a11y compliant (color contrasts, DOM structure)
https://github.com/owncloud/owncloud-design-system/pull/1282
| owncloud/web/packages/design-system/changelog/6.4.0_2021-05-06/enhancement-a11y-avatar/0 | {
"file_path": "owncloud/web/packages/design-system/changelog/6.4.0_2021-05-06/enhancement-a11y-avatar",
"repo_id": "owncloud",
"token_count": 103
} | 725 |
Enhancement: Color contrast for OcSidebarNav
We've set different colors for the active and hover state of nav items in the OcSidebarNav component. Those colors now fulfill required color contrast ratios.
https://github.com/owncloud/owncloud-design-system/pull/1310
https://github.com/owncloud/owncloud-design-system/pull/1315
| owncloud/web/packages/design-system/changelog/7.0.0_2021-05-31/enhancement-active-nav/0 | {
"file_path": "owncloud/web/packages/design-system/changelog/7.0.0_2021-05-31/enhancement-active-nav",
"repo_id": "owncloud",
"token_count": 90
} | 726 |
Enhancement: Table Row Mounted Event
The OcTable now emits an event if a row is mounted.
https://github.com/owncloud/owncloud-design-system/pull/1371
| owncloud/web/packages/design-system/changelog/7.2.0_2021-06-11/enhancement-table-row-mounted-event/0 | {
"file_path": "owncloud/web/packages/design-system/changelog/7.2.0_2021-06-11/enhancement-table-row-mounted-event",
"repo_id": "owncloud",
"token_count": 48
} | 727 |
Bugfix: No hover on current breadcrumb item
The current page's breadcrumb item is not interactive and shouldn't have a focus on hover, so we removed it.
https://github.com/owncloud/owncloud-design-system/issues/1416
https://github.com/owncloud/owncloud-design-system/pull/1511
| owncloud/web/packages/design-system/changelog/8.1.0_2021-07-22/bugfix-current-breadcrumb-hover/0 | {
"file_path": "owncloud/web/packages/design-system/changelog/8.1.0_2021-07-22/bugfix-current-breadcrumb-hover",
"repo_id": "owncloud",
"token_count": 82
} | 728 |
Enhancement: add drop target
We've added a target prop to the `oc-drop` component so that the drop can be opened at another element than the trigger.
https://github.com/owncloud/owncloud-design-system/pull/1575 | owncloud/web/packages/design-system/changelog/9.0.0_2021-08-09/enhancement-add-drop-target/0 | {
"file_path": "owncloud/web/packages/design-system/changelog/9.0.0_2021-08-09/enhancement-add-drop-target",
"repo_id": "owncloud",
"token_count": 59
} | 729 |
Enhancement: Highlight droptarget in OcTableFiles
The targeted table row in the OcTableFiles now gets a highlighted background when
another resource is dragged over it for visual user feedback.
https://github.com/owncloud/owncloud-design-system/pull/1610
https://github.com/owncloud/web/issues/5705 | owncloud/web/packages/design-system/changelog/9.3.0_2021-08-23/enhancement-filestable-highlight-droptarget/0 | {
"file_path": "owncloud/web/packages/design-system/changelog/9.3.0_2021-08-23/enhancement-filestable-highlight-droptarget",
"repo_id": "owncloud",
"token_count": 84
} | 730 |
Enhancement: Add OcErrorLog component
We've added the new OcErrorLog component and integrated it into the OcNotificationMessage component,
to display an error log and allow the user to copy it's content if the OcNotificationMessage
is used to show errors.
https://github.com/owncloud/web/pull/9426
| owncloud/web/packages/design-system/changelog/unreleased/enhancement-add-oc-error-log-component/0 | {
"file_path": "owncloud/web/packages/design-system/changelog/unreleased/enhancement-add-oc-error-log-component",
"repo_id": "owncloud",
"token_count": 81
} | 731 |
import CodeTabs from '../utils/tabs.js'
import { createApp, h } from 'vue'
import statusLabels from '../utils/statusLabels.js'
import { createGettext } from 'vue3-gettext'
import * as directives from '../../src/directives'
import { EditorView, highlightSpecialChars } from '@codemirror/view'
import { EditorState } from '@codemirror/state'
import { html } from '@codemirror/lang-html'
import { HighlightStyle, syntaxHighlighting } from '@codemirror/language'
import { tags } from '@lezer/highlight'
function format(node, level) {
const indentBefore = new Array(level++ + 1).join(' ')
const indentAfter = new Array(level - 1).join(' ')
let textNode
for (let i = 0; i < node.children.length; i++) {
textNode = document.createTextNode('\n' + indentBefore)
node.insertBefore(textNode, node.children[i])
format(node.children[i], level)
if (node.lastElementChild == node.children[i]) {
textNode = document.createTextNode('\n' + indentAfter)
node.appendChild(textNode)
}
}
return node
}
function generateObjectId() {
const timestamp = new Date().getTime().toString(16)
const randomValue = Math.floor(Math.random() * 1000000).toString(16)
const objectId = timestamp + randomValue
return objectId
}
// This is a dirty hack to be able to extend the Vue app since vue-styleguidist does not provide any way to do so
function setupVueApp(element) {
const app = createApp(h(element))
// Components are registered globally only for the styleguidist app...
const componentsContext = require.context('../../src/components/', true, /\.vue$/)
componentsContext.keys().forEach((key) => {
const component = componentsContext(key).default
app.component(component.name, component)
})
app.component('RouterLink', {
props: {
tag: { type: String, default: 'a' }
},
render() {
return h(this.tag, {}, this.$slots.default)
}
})
for (const name in directives) {
app.directive(name, directives[name])
}
app.mixin(statusLabels)
// Vue-gettext is bundled only in the docs. The design system itself depends on the consuming app in providing it
app.use(createGettext({ translations: {} }))
return app
}
export default (previewComponent) => {
// https://vuejs.org/v2/guide/render-function.html
return {
render() {
const appId = 'preview-' + generateObjectId()
const app = setupVueApp(previewComponent)
const previewContainer = h('div', {
id: appId,
onVnodeMounted: () => {
app.mount('#' + appId)
}
})
return previewContainer
},
mounted() {
CodeTabs.clean()
const tabs = CodeTabs.create()
const strDiv = this.$el.innerHTML.replace(/<!---->/g, '').replace(/data-v-\w*=""/g, '')
const div = document.createElement('div')
div.innerHTML =
'<' +
this.$el.localName +
" class='" +
this.$el.className +
"'>" +
strDiv.trim() +
'</' +
this.$el.localName +
'>'
const elemText = format(div, 0).innerHTML.replace(/ class=""/g, '')
const elem = document.createElement('div')
const parent = document.querySelector("article div[class^='rsg--tab']")
if (parent) {
// Allow some time to pass to make sure codemirror is visible first
setTimeout(() => {
parent.appendChild(elem)
parent.appendChild(tabs)
const themeNight = EditorView.theme(
{
'&': {
color: 'white',
backgroundColor: '#041d37',
fontSize: '13px',
padding: '24px'
},
'.cm-content': {
caretColor: '#ffffff'
},
'&.cm-focused .cm-cursor': {
borderLeftColor: '#ffffff'
},
'&.cm-focused .cm-selectionBackground, ::selection': {
backgroundColor: 'rgba(68, 68, 119, .99)'
}
},
{ dark: true }
)
const editorState = EditorState.create({
doc: elemText.trim(),
extensions: [
html(),
themeNight,
EditorState.readOnly.of(true),
highlightSpecialChars(),
syntaxHighlighting(
HighlightStyle.define([
{
tag: [
tags.atom,
tags.bool,
tags.url,
tags.contentSeparator,
tags.labelName,
tags.attributeValue
],
color: '#afe74c'
},
{ tag: tags.string, color: '#afe74c' },
{ tag: [tags.typeName, tags.namespace, tags.bracket], color: '#54a3f2' },
{ tag: tags.attributeName, color: '#ffcc4d' }
]),
{ fallback: false }
)
]
})
try {
// This code is wrapped in try/catch due to sonarcloud reporting this as issue otherwise
// Sonarcloud marks as issues instantiated classes which are not assigned anywhere but we need it like that here due to sideeffects of the class
new EditorView({
state: editorState,
parent: elem
})
} catch (error) {
console.error(error)
}
elem.classList.add('vueds-html')
elem.classList.add('vueds-hidden')
elem.setAttribute('data-testid', 'codemirror-html')
CodeTabs.init()
}, 300)
}
}
}
}
| owncloud/web/packages/design-system/docs/components/Preview.js/0 | {
"file_path": "owncloud/web/packages/design-system/docs/components/Preview.js",
"repo_id": "owncloud",
"token_count": 2641
} | 732 |
### Through this guide you will learn how to apply ownCloud Design System’s voice and choose the right tone. Using the right voice and tone is important as it allows us to better connect with our users.
You’re looking at ownCloud Design System’s demo <code>voice & tone</code>. Everything you see here is editable in Markdown format. To change or remove this content, see [/docs/voice-and-tone.md](https://github.com/owncloud/owncloud-design-system/blob/master/docs/voice-and-tone.md). To get started defining your own guidelines, see my [article on getting started](https://viljamis.com/2018/vue-design-system/) with ownCloud Design System.
## Crisp and clear
To edit or remove this guideline, see [/docs/voice-and-tone.md](https://github.com/owncloud/owncloud-design-system/blob/master/docs/principles.md).
## Empathetic
To edit or remove this guideline, see [/docs/voice-and-tone.md](https://github.com/owncloud/owncloud-design-system/blob/master/docs/voice-and-tone.md).
## Confident, but not arrogant
To edit or remove this guideline, see [/docs/voice-and-tone.md](https://github.com/owncloud/owncloud-design-system/blob/master/docs/voice-and-tone.md).
| owncloud/web/packages/design-system/docs/voice-and-tone.md/0 | {
"file_path": "owncloud/web/packages/design-system/docs/voice-and-tone.md",
"repo_id": "owncloud",
"token_count": 346
} | 733 |
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<g>
<path fill="none" d="M0 0h24v24H0z"/>
<path d="M12 2c5.52 0 10 4.48 10 10s-4.48 10-10 10S2 17.52 2 12 6.48 2 12 2zM6.023 15.416C7.491 17.606 9.695 19 12.16 19c2.464 0 4.669-1.393 6.136-3.584A8.968 8.968 0 0 0 12.16 13a8.968 8.968 0 0 0-6.137 2.416zM12 11a3 3 0 1 0 0-6 3 3 0 0 0 0 6z"/>
</g>
</svg>
| owncloud/web/packages/design-system/src/assets/icons/account-circle-fill.svg/0 | {
"file_path": "owncloud/web/packages/design-system/src/assets/icons/account-circle-fill.svg",
"repo_id": "owncloud",
"token_count": 218
} | 734 |
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<g>
<path fill="none" d="M0 0h24v24H0z"/>
<path d="M12.4 13.533l5 6.667a.5.5 0 0 1-.4.8H7a.5.5 0 0 1-.4-.8l5-6.667a.5.5 0 0 1 .8 0zM18 19v-2h2V5H4v12h2v2H2.992A.994.994 0 0 1 2 18V4c0-.552.455-1 .992-1h18.016c.548 0 .992.445.992 1v14c0 .552-.455 1-.992 1H18z"/>
</g>
</svg>
| owncloud/web/packages/design-system/src/assets/icons/airplay-fill.svg/0 | {
"file_path": "owncloud/web/packages/design-system/src/assets/icons/airplay-fill.svg",
"repo_id": "owncloud",
"token_count": 220
} | 735 |
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<g>
<path fill="none" d="M0 0h24v24H0z"/>
<path fill-rule="nonzero" d="M17.523 16.65l.49-.27 1.118-9.71L12 4.123 4.869 6.669l1.119 9.71.473.263L12 4.21l5.523 12.44zm-1.099.61h-.798l-1.169-2.92H9.523l-1.17 2.92h-.777L12 19.713l4.424-2.453zM12 2l9.3 3.32-1.418 12.31L12 22l-7.882-4.37L2.7 5.32 12 2zm1.698 10.54L12 8.45l-1.698 4.09h3.396z"/>
</g>
</svg>
| owncloud/web/packages/design-system/src/assets/icons/angularjs-line.svg/0 | {
"file_path": "owncloud/web/packages/design-system/src/assets/icons/angularjs-line.svg",
"repo_id": "owncloud",
"token_count": 263
} | 736 |
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<g>
<path fill="none" d="M0 0h24v24H0z"/>
<path d="M3 10H2V4.003C2 3.449 2.455 3 2.992 3h18.016A.99.99 0 0 1 22 4.003V10h-1v10.001a.996.996 0 0 1-.993.999H3.993A.996.996 0 0 1 3 20.001V10zm16 0H5v9h14v-9zM4 5v3h16V5H4zm5 7h6v2H9v-2z"/>
</g>
</svg>
| owncloud/web/packages/design-system/src/assets/icons/archive-line.svg/0 | {
"file_path": "owncloud/web/packages/design-system/src/assets/icons/archive-line.svg",
"repo_id": "owncloud",
"token_count": 204
} | 737 |
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<g>
<path fill="none" d="M0 0h24v24H0z"/>
<path d="M5.828 7l2.536 2.536L6.95 10.95 2 6l4.95-4.95 1.414 1.414L5.828 5H13a8 8 0 1 1 0 16H4v-2h9a6 6 0 1 0 0-12H5.828z"/>
</g>
</svg>
| owncloud/web/packages/design-system/src/assets/icons/arrow-go-back-line.svg/0 | {
"file_path": "owncloud/web/packages/design-system/src/assets/icons/arrow-go-back-line.svg",
"repo_id": "owncloud",
"token_count": 162
} | 738 |
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<g>
<path fill="none" d="M0 0h24v24H0z"/>
<path d="M12 11V8l4 4-4 4v-3H8v-2h4zm0-9c5.52 0 10 4.48 10 10s-4.48 10-10 10S2 17.52 2 12 6.48 2 12 2zm0 18c4.42 0 8-3.58 8-8s-3.58-8-8-8-8 3.58-8 8 3.58 8 8 8z"/>
</g>
</svg>
| owncloud/web/packages/design-system/src/assets/icons/arrow-right-circle-line.svg/0 | {
"file_path": "owncloud/web/packages/design-system/src/assets/icons/arrow-right-circle-line.svg",
"repo_id": "owncloud",
"token_count": 190
} | 739 |
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<g>
<path fill="none" d="M0 0h24v24H0z"/>
<path d="M12 10.828l-4.95 4.95-1.414-1.414L12 8l6.364 6.364-1.414 1.414z"/>
</g>
</svg>
| owncloud/web/packages/design-system/src/assets/icons/arrow-up-s-line.svg/0 | {
"file_path": "owncloud/web/packages/design-system/src/assets/icons/arrow-up-s-line.svg",
"repo_id": "owncloud",
"token_count": 128
} | 740 |
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<g>
<path fill="none" d="M0 0h24v24H0z"/>
<path d="M14 20v2H2v-2h12zM14.586.686l7.778 7.778L20.95 9.88l-1.06-.354L17.413 12l5.657 5.657-1.414 1.414L16 13.414l-2.404 2.404.283 1.132-1.415 1.414-7.778-7.778 1.415-1.414 1.13.282 6.294-6.293-.353-1.06L14.586.686zm.707 3.536l-7.071 7.07 3.535 3.536 7.071-7.07-3.535-3.536z"/>
</g>
</svg>
| owncloud/web/packages/design-system/src/assets/icons/auction-line.svg/0 | {
"file_path": "owncloud/web/packages/design-system/src/assets/icons/auction-line.svg",
"repo_id": "owncloud",
"token_count": 250
} | 741 |
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<g>
<path fill="none" d="M0 0h24v24H0z"/>
<path d="M17.5 2a4.5 4.5 0 0 1 2.951 7.897c.355.967.549 2.013.549 3.103A9 9 0 1 1 3.55 9.897a4.5 4.5 0 1 1 6.791-5.744 9.05 9.05 0 0 1 3.32 0A4.494 4.494 0 0 1 17.5 2zm0 2c-.823 0-1.575.4-2.038 1.052l-.095.144-.718 1.176-1.355-.253a7.05 7.05 0 0 0-2.267-.052l-.316.052-1.356.255-.72-1.176A2.5 2.5 0 1 0 4.73 8.265l.131.123 1.041.904-.475 1.295A7 7 0 1 0 19 13c0-.716-.107-1.416-.314-2.083l-.112-.33-.475-1.295 1.04-.904A2.5 2.5 0 0 0 17.5 4zM10 13a2 2 0 1 0 4 0h2a4 4 0 1 1-8 0h2z"/>
</g>
</svg>
| owncloud/web/packages/design-system/src/assets/icons/bear-smile-line.svg/0 | {
"file_path": "owncloud/web/packages/design-system/src/assets/icons/bear-smile-line.svg",
"repo_id": "owncloud",
"token_count": 372
} | 742 |
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<g>
<path fill="none" d="M0 0h24v24H0z"/>
<path d="M19 9c.667 1.06 1 2.394 1 4 0 3-3.5 4-5 9-.667-.575-1-1.408-1-2.5 0-3.482 5-5.29 5-10.5zm-4.5-4a8.31 8.31 0 0 1 1 4c0 5-6 6-4 13C9.833 20.84 9 19.173 9 17c0-3.325 5.5-6 5.5-12zM10 1c.667 1.333 1 2.833 1 4.5 0 6-9 7.5-3 16.5-2.5-.5-4.5-3-4.5-6C3.5 9.5 10 8.5 10 1z"/>
</g>
</svg>
| owncloud/web/packages/design-system/src/assets/icons/blaze-line.svg/0 | {
"file_path": "owncloud/web/packages/design-system/src/assets/icons/blaze-line.svg",
"repo_id": "owncloud",
"token_count": 264
} | 743 |
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<g>
<path fill="none" d="M0 0h24v24H0z"/>
<path d="M20 22H6.5A3.5 3.5 0 0 1 3 18.5V5a3 3 0 0 1 3-3h14a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1zm-1-2v-3H6.5a1.5 1.5 0 0 0 0 3H19zM10 4v8l3.5-2 3.5 2V4h-7z"/>
</g>
</svg>
| owncloud/web/packages/design-system/src/assets/icons/book-mark-fill.svg/0 | {
"file_path": "owncloud/web/packages/design-system/src/assets/icons/book-mark-fill.svg",
"repo_id": "owncloud",
"token_count": 190
} | 744 |
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<g>
<path fill="none" d="M0 0h24v24H0z"/>
<path d="M4 18v-3.7a1.5 1.5 0 0 0-1.5-1.5H2v-1.6h.5A1.5 1.5 0 0 0 4 9.7V6a3 3 0 0 1 3-3h1v2H7a1 1 0 0 0-1 1v4.1A2 2 0 0 1 4.626 12 2 2 0 0 1 6 13.9V18a1 1 0 0 0 1 1h1v2H7a3 3 0 0 1-3-3zm16-3.7V18a3 3 0 0 1-3 3h-1v-2h1a1 1 0 0 0 1-1v-4.1a2 2 0 0 1 1.374-1.9A2 2 0 0 1 18 10.1V6a1 1 0 0 0-1-1h-1V3h1a3 3 0 0 1 3 3v3.7a1.5 1.5 0 0 0 1.5 1.5h.5v1.6h-.5a1.5 1.5 0 0 0-1.5 1.5z"/>
</g>
</svg>
| owncloud/web/packages/design-system/src/assets/icons/braces-fill.svg/0 | {
"file_path": "owncloud/web/packages/design-system/src/assets/icons/braces-fill.svg",
"repo_id": "owncloud",
"token_count": 351
} | 745 |
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<g>
<path fill="none" d="M0 0h24v24H0z"/>
<path d="M12 19h2V6l6.394 2.74a1 1 0 0 1 .606.92V19h2v2H1v-2h2V5.65a1 1 0 0 1 .594-.914l7.703-3.424A.5.5 0 0 1 12 1.77V19z"/>
</g>
</svg>
| owncloud/web/packages/design-system/src/assets/icons/building-2-fill.svg/0 | {
"file_path": "owncloud/web/packages/design-system/src/assets/icons/building-2-fill.svg",
"repo_id": "owncloud",
"token_count": 163
} | 746 |
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<g>
<path fill="none" d="M0 0h24v24H0z"/>
<path d="M17 3h4a1 1 0 0 1 1 1v16a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h4V1h2v2h6V1h2v2zM4 9v10h16V9H4zm2 2h2v2H6v-2zm0 4h2v2H6v-2zm4-4h8v2h-8v-2zm0 4h5v2h-5v-2z"/>
</g>
</svg>
| owncloud/web/packages/design-system/src/assets/icons/calendar-todo-fill.svg/0 | {
"file_path": "owncloud/web/packages/design-system/src/assets/icons/calendar-todo-fill.svg",
"repo_id": "owncloud",
"token_count": 219
} | 747 |
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<g>
<path fill="none" d="M0 0h24v24H0z"/>
<path d="M19 20H5v1a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1v-9l2.513-6.702A2 2 0 0 1 6.386 4h11.228a2 2 0 0 1 1.873 1.298L22 12v9a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1v-1zM4.136 12h15.728l-2.25-6H6.386l-2.25 6zM6.5 17a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3zm11 0a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3z"/>
</g>
</svg>
| owncloud/web/packages/design-system/src/assets/icons/car-fill.svg/0 | {
"file_path": "owncloud/web/packages/design-system/src/assets/icons/car-fill.svg",
"repo_id": "owncloud",
"token_count": 270
} | 748 |
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<g>
<path fill="none" d="M0 0h24v24H0z"/>
<path d="M20 11h-1V7h1V4h2v3h1v4h-1v7a3 3 0 0 1-6 0v-4h-2v5h1v2H2v-2h1V4a1 1 0 0 1 1-1h9a1 1 0 0 1 1 1v8h2a2 2 0 0 1 2 2v4a1 1 0 0 0 2 0v-7zM9 11V7l-4 6h3v4l4-6H9z"/>
</g>
</svg>
| owncloud/web/packages/design-system/src/assets/icons/charging-pile-2-fill.svg/0 | {
"file_path": "owncloud/web/packages/design-system/src/assets/icons/charging-pile-2-fill.svg",
"repo_id": "owncloud",
"token_count": 208
} | 749 |
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<g>
<path fill="none" d="M0 0L24 0 24 24 0 24z"/>
<path d="M12 2c5.523 0 10 4.477 10 10s-4.477 10-10 10c-1.702 0-3.305-.425-4.708-1.175L2 22l1.176-5.29C2.426 15.306 2 13.703 2 12 2 6.477 6.477 2 12 2zm0 5c-1.598 0-3 1.34-3 3v1H8v5h8v-5h-1v-1c0-1.657-1.343-3-3-3zm2 6v1h-4v-1h4zm-2-4c.476 0 1 .49 1 1v1h-2v-1c0-.51.487-1 1-1z"/>
</g>
</svg>
| owncloud/web/packages/design-system/src/assets/icons/chat-private-fill.svg/0 | {
"file_path": "owncloud/web/packages/design-system/src/assets/icons/chat-private-fill.svg",
"repo_id": "owncloud",
"token_count": 266
} | 750 |
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<g>
<path fill="none" d="M0 0h24v24H0z"/>
<path d="M11.602 13.76l1.412 1.412 8.466-8.466 1.414 1.414-9.88 9.88-6.364-6.364 1.414-1.414 2.125 2.125 1.413 1.412zm.002-2.828l4.952-4.953 1.41 1.41-4.952 4.953-1.41-1.41zm-2.827 5.655L7.364 18 1 11.636l1.414-1.414 1.413 1.413-.001.001 4.951 4.951z"/>
</g>
</svg>
| owncloud/web/packages/design-system/src/assets/icons/check-double-fill.svg/0 | {
"file_path": "owncloud/web/packages/design-system/src/assets/icons/check-double-fill.svg",
"repo_id": "owncloud",
"token_count": 232
} | 751 |
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<g>
<path fill="none" d="M0 0h24v24H0z"/>
<path d="M12 10.586l4.95-4.95 1.414 1.414-4.95 4.95 4.95 4.95-1.414 1.414-4.95-4.95-4.95 4.95-1.414-1.414 4.95-4.95-4.95-4.95L7.05 5.636z"/>
</g>
</svg>
| owncloud/web/packages/design-system/src/assets/icons/close-fill.svg/0 | {
"file_path": "owncloud/web/packages/design-system/src/assets/icons/close-fill.svg",
"repo_id": "owncloud",
"token_count": 174
} | 752 |
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<g>
<path fill="none" d="M0 0h24v24H0z"/>
<path d="M23 12l-7.071 7.071-1.414-1.414L20.172 12l-5.657-5.657 1.414-1.414L23 12zM3.828 12l5.657 5.657-1.414 1.414L1 12l7.071-7.071 1.414 1.414L3.828 12z"/>
</g>
</svg>
| owncloud/web/packages/design-system/src/assets/icons/code-fill.svg/0 | {
"file_path": "owncloud/web/packages/design-system/src/assets/icons/code-fill.svg",
"repo_id": "owncloud",
"token_count": 180
} | 753 |
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<g>
<path fill="none" d="M0 0h24v24H0z"/>
<path fill-rule="nonzero" d="M10 8h4V6.5a3.5 3.5 0 1 1 3.5 3.5H16v4h1.5a3.5 3.5 0 1 1-3.5 3.5V16h-4v1.5A3.5 3.5 0 1 1 6.5 14H8v-4H6.5A3.5 3.5 0 1 1 10 6.5V8zM8 8V6.5A1.5 1.5 0 1 0 6.5 8H8zm0 8H6.5A1.5 1.5 0 1 0 8 17.5V16zm8-8h1.5A1.5 1.5 0 1 0 16 6.5V8zm0 8v1.5a1.5 1.5 0 1 0 1.5-1.5H16zm-6-6v4h4v-4h-4z"/>
</g>
</svg>
| owncloud/web/packages/design-system/src/assets/icons/command-line.svg/0 | {
"file_path": "owncloud/web/packages/design-system/src/assets/icons/command-line.svg",
"repo_id": "owncloud",
"token_count": 310
} | 754 |
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<g>
<path fill="none" d="M0 0h24v24H0z"/>
<path d="M11 4.126V2h2v2.126a4.002 4.002 0 0 1 1.803 6.728l6.063 10.502-1.732 1-6.063-10.501a4.004 4.004 0 0 1-2.142 0L4.866 22.356l-1.732-1 6.063-10.502A4.002 4.002 0 0 1 11 4.126zM12 10a2 2 0 1 0 0-4 2 2 0 0 0 0 4z"/>
</g>
</svg>
| owncloud/web/packages/design-system/src/assets/icons/compasses-line.svg/0 | {
"file_path": "owncloud/web/packages/design-system/src/assets/icons/compasses-line.svg",
"repo_id": "owncloud",
"token_count": 213
} | 755 |
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<g>
<path fill="none" d="M0 0h24v24H0z"/>
<path d="M12 3.1L7.05 8.05a7 7 0 1 0 9.9 0L12 3.1zm0-2.828l6.364 6.364a9 9 0 1 1-12.728 0L12 .272zM12 18V8a5 5 0 0 1 0 10z"/>
</g>
</svg>
| owncloud/web/packages/design-system/src/assets/icons/contrast-drop-line.svg/0 | {
"file_path": "owncloud/web/packages/design-system/src/assets/icons/contrast-drop-line.svg",
"repo_id": "owncloud",
"token_count": 160
} | 756 |
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<g>
<path fill="none" d="M0 0h24v24H0z"/>
<path d="M2 4a1 1 0 0 1 1-1h18a1 1 0 0 1 1 1v5.5a2.5 2.5 0 1 0 0 5V20a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V4zm6.085 15a1.5 1.5 0 0 1 2.83 0H20v-2.968a4.5 4.5 0 0 1 0-8.064V5h-9.085a1.5 1.5 0 0 1-2.83 0H4v14h4.085zM9.5 11a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3zm0 5a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3z"/>
</g>
</svg>
| owncloud/web/packages/design-system/src/assets/icons/coupon-3-line.svg/0 | {
"file_path": "owncloud/web/packages/design-system/src/assets/icons/coupon-3-line.svg",
"repo_id": "owncloud",
"token_count": 286
} | 757 |
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<g>
<path fill="none" d="M0 0h24v24H0z"/>
<path fill-rule="nonzero" d="M12 2c5.523 0 10 4.477 10 10s-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2zm0 2a8 8 0 1 0 0 16 8 8 0 0 0 0-16zm4 9v2H8v-2h8zm0-4v2H8V9h8z"/>
</g>
</svg>
| owncloud/web/packages/design-system/src/assets/icons/creative-commons-nd-line.svg/0 | {
"file_path": "owncloud/web/packages/design-system/src/assets/icons/creative-commons-nd-line.svg",
"repo_id": "owncloud",
"token_count": 178
} | 758 |
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<g>
<path fill="none" d="M0 0h24v24H0z"/>
<path d="M17 16h2V4H9v2h8v10zm0 2v3c0 .552-.45 1-1.007 1H4.007A1.001 1.001 0 0 1 3 21l.003-14c0-.552.45-1 1.007-1H7V3a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v14a1 1 0 0 1-1 1h-3zM5.003 8L5 20h10V8H5.003zM7 16h4.5a.5.5 0 1 0 0-1h-3a2.5 2.5 0 1 1 0-5H9V9h2v1h2v2H8.5a.5.5 0 1 0 0 1h3a2.5 2.5 0 1 1 0 5H11v1H9v-1H7v-2z"/>
</g>
</svg>
| owncloud/web/packages/design-system/src/assets/icons/currency-line.svg/0 | {
"file_path": "owncloud/web/packages/design-system/src/assets/icons/currency-line.svg",
"repo_id": "owncloud",
"token_count": 299
} | 759 |
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<g>
<path fill="none" d="M0 0h24v24H0z"/>
<path d="M11 19V9H4v10h7zm0-12V4a1 1 0 0 1 1-1h9a1 1 0 0 1 1 1v16a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V8a1 1 0 0 1 1-1h8zm2-2v14h7V5h-7zM5 16h5v2H5v-2zm9 0h5v2h-5v-2zm0-3h5v2h-5v-2zm0-3h5v2h-5v-2zm-9 3h5v2H5v-2z"/>
</g>
</svg>
| owncloud/web/packages/design-system/src/assets/icons/database-line.svg/0 | {
"file_path": "owncloud/web/packages/design-system/src/assets/icons/database-line.svg",
"repo_id": "owncloud",
"token_count": 247
} | 760 |
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<g>
<path fill="none" d="M0 0h24v24H0z"/>
<path d="M17 6h5v2h-2v13a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V8H2V6h5V3a1 1 0 0 1 1-1h8a1 1 0 0 1 1 1v3zm1 2H6v12h12V8zM9 4v2h6V4H9z"/>
</g>
</svg>
| owncloud/web/packages/design-system/src/assets/icons/delete-bin-7-line.svg/0 | {
"file_path": "owncloud/web/packages/design-system/src/assets/icons/delete-bin-7-line.svg",
"repo_id": "owncloud",
"token_count": 177
} | 761 |
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<g>
<path fill="none" d="M0 0h24v24H0z"/>
<path fill-rule="nonzero" d="M4 3h16a1 1 0 0 1 1 1v16a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1zm1 2v14h14V5H5zm6 7.792a2.5 2.5 0 1 1 2 0V16h-2v-3.208z"/>
</g>
</svg>
| owncloud/web/packages/design-system/src/assets/icons/door-lock-box-line.svg/0 | {
"file_path": "owncloud/web/packages/design-system/src/assets/icons/door-lock-box-line.svg",
"repo_id": "owncloud",
"token_count": 183
} | 762 |
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<g>
<path fill="none" d="M0 0h24v24H0z"/>
<path d="M1 14.5a6.496 6.496 0 0 1 3.064-5.519 8.001 8.001 0 0 1 15.872 0 6.5 6.5 0 0 1-2.936 12L7 21c-3.356-.274-6-3.078-6-6.5zm15.848 4.487a4.5 4.5 0 0 0 2.03-8.309l-.807-.503-.12-.942a6.001 6.001 0 0 0-11.903 0l-.12.942-.805.503a4.5 4.5 0 0 0 2.029 8.309l.173.013h9.35l.173-.013zM13 12h3l-4 5-4-5h3V8h2v4z"/>
</g>
</svg>
| owncloud/web/packages/design-system/src/assets/icons/download-cloud-line.svg/0 | {
"file_path": "owncloud/web/packages/design-system/src/assets/icons/download-cloud-line.svg",
"repo_id": "owncloud",
"token_count": 278
} | 763 |
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<g>
<path fill="none" d="M0 0h24v24H0z"/>
<path d="M17 18v-2h.5a3.5 3.5 0 1 0-2.5-5.95V10a6 6 0 1 0-8 5.659v2.089a8 8 0 1 1 9.458-10.65A5.5 5.5 0 1 1 17.5 18l-.5.001zm-8-2h2v4H9v-4zm4 3h2v4h-2v-4z"/>
</g>
</svg>
| owncloud/web/packages/design-system/src/assets/icons/drizzle-line.svg/0 | {
"file_path": "owncloud/web/packages/design-system/src/assets/icons/drizzle-line.svg",
"repo_id": "owncloud",
"token_count": 194
} | 764 |
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<g>
<path fill="none" d="M0 0h24v24H0z"/>
<path d="M15.5 6.937A6.997 6.997 0 0 1 19 13v8h-4.17a3.001 3.001 0 0 1-5.66 0H5v-8a6.997 6.997 0 0 1 3.5-6.063A3.974 3.974 0 0 1 8.125 6H5V4h3.126a4.002 4.002 0 0 1 7.748 0H19v2h-3.126c-.085.33-.212.645-.373.937zm-1.453 1.5C13.448 8.795 12.748 9 12 9a3.981 3.981 0 0 1-2.047-.563A5.001 5.001 0 0 0 7 13v6h2v-4a3 3 0 0 1 6 0v4h2v-6a5.001 5.001 0 0 0-2.953-4.563zM12 14a1 1 0 0 0-1 1v5a1 1 0 0 0 2 0v-5a1 1 0 0 0-1-1zm0-7a2 2 0 1 0 0-4 2 2 0 0 0 0 4z"/>
</g>
</svg>
| owncloud/web/packages/design-system/src/assets/icons/e-bike-line.svg/0 | {
"file_path": "owncloud/web/packages/design-system/src/assets/icons/e-bike-line.svg",
"repo_id": "owncloud",
"token_count": 365
} | 765 |
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<g>
<path fill="none" d="M0 0h24v24H0z"/>
<path d="M7.737 13h8.526L12 6.606 7.737 13zm4.679-9.376l7.066 10.599a.5.5 0 0 1-.416.777H4.934a.5.5 0 0 1-.416-.777l7.066-10.599a.5.5 0 0 1 .832 0zM5 17h14a1 1 0 0 1 0 2H5a1 1 0 0 1 0-2z"/>
</g>
</svg>
| owncloud/web/packages/design-system/src/assets/icons/eject-line.svg/0 | {
"file_path": "owncloud/web/packages/design-system/src/assets/icons/eject-line.svg",
"repo_id": "owncloud",
"token_count": 201
} | 766 |
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<g>
<path fill="none" d="M0 0h24v24H0z"/>
<path d="M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10zm0-2a8 8 0 1 0 0-16 8 8 0 0 0 0 16zm-5-3a5 5 0 0 1 10 0h-2a3 3 0 0 0-6 0H7zm1-6a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3zm8 0a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3z"/>
</g>
</svg>
| owncloud/web/packages/design-system/src/assets/icons/emotion-unhappy-line.svg/0 | {
"file_path": "owncloud/web/packages/design-system/src/assets/icons/emotion-unhappy-line.svg",
"repo_id": "owncloud",
"token_count": 231
} | 767 |
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<g>
<path fill="none" d="M0 0h24v24H0z"/>
<path d="M5.373 4.51A9.962 9.962 0 0 1 12 2c5.523 0 10 4.477 10 10a9.954 9.954 0 0 1-1.793 5.715L17.5 12H20A8 8 0 0 0 6.274 6.413l-.9-1.902zm13.254 14.98A9.962 9.962 0 0 1 12 22C6.477 22 2 17.523 2 12c0-2.125.663-4.095 1.793-5.715L6.5 12H4a8 8 0 0 0 13.726 5.587l.9 1.902zM13 13.535h3v2h-3v2h-2v-2H8v-2h3v-1H8v-2h2.586L8.464 8.414 9.88 7 12 9.121 14.121 7l1.415 1.414-2.122 2.122H16v2h-3v1z"/>
</g>
</svg>
| owncloud/web/packages/design-system/src/assets/icons/exchange-cny-fill.svg/0 | {
"file_path": "owncloud/web/packages/design-system/src/assets/icons/exchange-cny-fill.svg",
"repo_id": "owncloud",
"token_count": 329
} | 768 |
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<g>
<path fill="none" d="M0 0h24v24H0z"/>
<path d="M4.52 5.934L1.393 2.808l1.415-1.415 19.799 19.8-1.415 1.414-3.31-3.31A10.949 10.949 0 0 1 12 21c-5.392 0-9.878-3.88-10.819-9a10.982 10.982 0 0 1 3.34-6.066zm10.237 10.238l-1.464-1.464a3 3 0 0 1-4.001-4.001L7.828 9.243a5 5 0 0 0 6.929 6.929zM7.974 3.76C9.221 3.27 10.58 3 12 3c5.392 0 9.878 3.88 10.819 9a10.947 10.947 0 0 1-2.012 4.592l-3.86-3.86a5 5 0 0 0-5.68-5.68L7.974 3.761z"/>
</g>
</svg>
| owncloud/web/packages/design-system/src/assets/icons/eye-off-fill.svg/0 | {
"file_path": "owncloud/web/packages/design-system/src/assets/icons/eye-off-fill.svg",
"repo_id": "owncloud",
"token_count": 330
} | 769 |
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<g>
<path fill="none" d="M0 0h24v24H0z"/>
<path d="M21 15h-7v7H3.998C3.447 22 3 21.545 3 21.008V2.992C3 2.444 3.445 2 3.993 2h16.014A1 1 0 0 1 21 3.007V15zm0 2l-5 4.997V17h5z"/>
</g>
</svg>
| owncloud/web/packages/design-system/src/assets/icons/file-4-fill.svg/0 | {
"file_path": "owncloud/web/packages/design-system/src/assets/icons/file-4-fill.svg",
"repo_id": "owncloud",
"token_count": 161
} | 770 |
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<g>
<path fill="none" d="M0 0h24v24H0z"/>
<path d="M3 14l4 2.5 3-3.5 3 4 2-2.5 3 .5-3-3-2 2.5-3-5-3.5 3.75L3 10V2.992C3 2.455 3.447 2 3.998 2H14v6a1 1 0 0 0 1 1h6v11.993A1 1 0 0 1 20.007 22H3.993A.993.993 0 0 1 3 21.008V14zm18-7h-5V2.003L21 7z"/>
</g>
</svg>
| owncloud/web/packages/design-system/src/assets/icons/file-damage-fill.svg/0 | {
"file_path": "owncloud/web/packages/design-system/src/assets/icons/file-damage-fill.svg",
"repo_id": "owncloud",
"token_count": 213
} | 771 |
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<g>
<path fill="none" d="M0 0L24 0 24 24 0 24z"/>
<path d="M16 2l5 5v13.993c0 .556-.445 1.007-.993 1.007H3.993C3.445 22 3 21.545 3 21.008V2.992C3 2.444 3.447 2 3.999 2H16zm-1 2H5v16h14V8h-4V4zm-2 5v4h3v2h-5V9h2z"/>
</g>
</svg>
| owncloud/web/packages/design-system/src/assets/icons/file-history-line.svg/0 | {
"file_path": "owncloud/web/packages/design-system/src/assets/icons/file-history-line.svg",
"repo_id": "owncloud",
"token_count": 186
} | 772 |
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<g>
<path fill="none" d="M0 0h24v24H0z"/>
<path d="M16 2l5 5v14.008a.993.993 0 0 1-.993.992H3.993A1 1 0 0 1 3 21.008V2.992C3 2.444 3.445 2 3.993 2H16zm-5 10.05a2.5 2.5 0 1 0 2 2.45V10h3V8h-5v4.05z"/>
</g>
</svg>
| owncloud/web/packages/design-system/src/assets/icons/file-music-fill.svg/0 | {
"file_path": "owncloud/web/packages/design-system/src/assets/icons/file-music-fill.svg",
"repo_id": "owncloud",
"token_count": 178
} | 773 |
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<g>
<path fill="none" d="M0 0h24v24H0z"/>
<path d="M16 2l5 5v14.008a.993.993 0 0 1-.993.992H3.993A1 1 0 0 1 3 21.008V2.992C3 2.444 3.445 2 3.993 2H16zM8.595 12.812l-.992.572 1 1.732.992-.573c.393.372.873.654 1.405.812V16.5h2v-1.145a3.496 3.496 0 0 0 1.405-.812l.992.573 1-1.732-.992-.573a3.51 3.51 0 0 0 0-1.622l.992-.573-1-1.732-.992.573A3.496 3.496 0 0 0 13 8.645V7.5h-2v1.145a3.496 3.496 0 0 0-1.405.812l-.992-.573-1 1.732.992.573a3.51 3.51 0 0 0 0 1.623zM12 13.5a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3z"/>
</g>
</svg>
| owncloud/web/packages/design-system/src/assets/icons/file-settings-fill.svg/0 | {
"file_path": "owncloud/web/packages/design-system/src/assets/icons/file-settings-fill.svg",
"repo_id": "owncloud",
"token_count": 358
} | 774 |
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<g>
<path fill="none" d="M0 0h24v24H0z"/>
<path d="M16 2l5 5v14.008a.993.993 0 0 1-.993.992H3.993A1 1 0 0 1 3 21.008V2.992C3 2.444 3.445 2 3.993 2H16zm-4 9.5a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5zM7.527 17h8.946a4.5 4.5 0 0 0-8.946 0z"/>
</g>
</svg>
| owncloud/web/packages/design-system/src/assets/icons/file-user-fill.svg/0 | {
"file_path": "owncloud/web/packages/design-system/src/assets/icons/file-user-fill.svg",
"repo_id": "owncloud",
"token_count": 203
} | 775 |
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<g>
<path fill="none" d="M0 0H24V24H0z"/>
<path d="M21 4L21 6 20 6 14 15 14 22 10 22 10 15 4 6 3 6 3 4z"/>
</g>
</svg>
| owncloud/web/packages/design-system/src/assets/icons/filter-fill.svg/0 | {
"file_path": "owncloud/web/packages/design-system/src/assets/icons/filter-fill.svg",
"repo_id": "owncloud",
"token_count": 111
} | 776 |
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<g>
<path fill="none" d="M0 0H24V24H0z"/>
<path d="M16 1c.552 0 1 .448 1 1v3h4c.552 0 1 .448 1 1v14c0 .552-.448 1-1 1H3c-.552 0-1-.448-1-1V6c0-.552.448-1 1-1h4V2c0-.552.448-1 1-1h8zm-3 8h-2v3H8v2h2.999L11 17h2l-.001-3H16v-2h-3V9zm2-6H9v2h6V3z"/>
</g>
</svg>
| owncloud/web/packages/design-system/src/assets/icons/first-aid-kit-fill.svg/0 | {
"file_path": "owncloud/web/packages/design-system/src/assets/icons/first-aid-kit-fill.svg",
"repo_id": "owncloud",
"token_count": 221
} | 777 |
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<g>
<path fill="none" d="M0 0H24V24H0z"/>
<path d="M6 21.5c-1.933 0-3.5-1.567-3.5-3.5s1.567-3.5 3.5-3.5c1.585 0 2.924 1.054 3.355 2.5H15v-2h2V9.242L14.757 7H9V9H3V3h6v2h5.757L18 1.756 22.243 6 19 9.241V15L21 15v6h-6v-2H9.355c-.43 1.446-1.77 2.5-3.355 2.5zm0-5c-.828 0-1.5.672-1.5 1.5s.672 1.5 1.5 1.5 1.5-.672 1.5-1.5-.672-1.5-1.5-1.5zm13 .5h-2v2h2v-2zM18 4.586L16.586 6 18 7.414 19.414 6 18 4.586zM7 5H5v2h2V5z"/>
</g>
</svg>
| owncloud/web/packages/design-system/src/assets/icons/flow-chart.svg/0 | {
"file_path": "owncloud/web/packages/design-system/src/assets/icons/flow-chart.svg",
"repo_id": "owncloud",
"token_count": 346
} | 778 |
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<g>
<path fill="none" d="M0 0h24v24H0z"/>
<path d="M12.414 5H21a1 1 0 0 1 1 1v14a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h7.414l2 2zM8 19h12v-8H8v8zm-2 0v-9a1 1 0 0 1 1-1h13V7h-8.414l-2-2H4v14h2z"/>
</g>
</svg>
| owncloud/web/packages/design-system/src/assets/icons/folder-4-line.svg/0 | {
"file_path": "owncloud/web/packages/design-system/src/assets/icons/folder-4-line.svg",
"repo_id": "owncloud",
"token_count": 195
} | 779 |
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<g>
<path fill="none" d="M0 0h24v24H0z"/>
<path d="M12.414 5H21a1 1 0 0 1 1 1v14a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h7.414l2 2zM4 5v14h16V7h-8.414l-2-2H4zm4.591 8.809a3.508 3.508 0 0 1 0-1.622l-.991-.572 1-1.732.991.573a3.495 3.495 0 0 1 1.404-.812V8.5h2v1.144c.532.159 1.01.44 1.403.812l.992-.573 1 1.731-.991.573a3.508 3.508 0 0 1 0 1.622l.991.572-1 1.731-.991-.572a3.495 3.495 0 0 1-1.404.811v1.145h-2V16.35a3.495 3.495 0 0 1-1.404-.811l-.991.572-1-1.73.991-.573zm3.404.688a1.5 1.5 0 1 0 0-2.998 1.5 1.5 0 0 0 0 2.998z"/>
</g>
</svg>
| owncloud/web/packages/design-system/src/assets/icons/folder-settings-line.svg/0 | {
"file_path": "owncloud/web/packages/design-system/src/assets/icons/folder-settings-line.svg",
"repo_id": "owncloud",
"token_count": 395
} | 780 |
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<g>
<path fill="none" d="M0 0h24v24H0z"/>
<path d="M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10zm0-2a8 8 0 1 0 0-16 8 8 0 0 0 0 16zM8.523 7.109l8.368 8.368a6.04 6.04 0 0 1-1.414 1.414L7.109 8.523A6.04 6.04 0 0 1 8.523 7.11z"/>
</g>
</svg>
| owncloud/web/packages/design-system/src/assets/icons/forbid-line.svg/0 | {
"file_path": "owncloud/web/packages/design-system/src/assets/icons/forbid-line.svg",
"repo_id": "owncloud",
"token_count": 201
} | 781 |
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<g>
<path fill="none" d="M0 0h24v24H0z"/>
<path d="M20 13c-1.678 0-3.249.46-4.593 1.259A14.984 14.984 0 0 1 18.147 19H20v-6zm-3.996 6C14.044 14.302 9.408 11 4 11v8h12.004zM4 9c3.83 0 7.323 1.435 9.974 3.796A10.949 10.949 0 0 1 20 11V3h1.008c.548 0 .992.445.992.993v16.014a1 1 0 0 1-.992.993H2.992A.993.993 0 0 1 2 20.007V3.993A1 1 0 0 1 2.992 3H6V1h2v4H4v4zm14-8v4h-8V3h6V1h2zm-1.5 9a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3z"/>
</g>
</svg>
| owncloud/web/packages/design-system/src/assets/icons/gallery-line.svg/0 | {
"file_path": "owncloud/web/packages/design-system/src/assets/icons/gallery-line.svg",
"repo_id": "owncloud",
"token_count": 315
} | 782 |
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<g>
<path fill="none" d="M0 0h24v24H0z"/>
<path fill-rule="nonzero" d="M12 2a9 9 0 0 1 9 9v7.5a3.5 3.5 0 0 1-6.39 1.976 2.999 2.999 0 0 1-5.223 0 3.5 3.5 0 0 1-6.382-1.783L3 18.499V11a9 9 0 0 1 9-9zm0 2a7 7 0 0 0-6.996 6.76L5 11v7.446l.002.138a1.5 1.5 0 0 0 2.645.88l.088-.116a2 2 0 0 1 3.393.142.999.999 0 0 0 1.74.003 2 2 0 0 1 3.296-.278l.097.13a1.5 1.5 0 0 0 2.733-.701L19 18.5V11a7 7 0 0 0-7-7zm0 8c1.105 0 2 1.12 2 2.5s-.895 2.5-2 2.5-2-1.12-2-2.5.895-2.5 2-2.5zM9.5 8a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3zm5 0a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3z"/>
</g>
</svg>
| owncloud/web/packages/design-system/src/assets/icons/ghost-line.svg/0 | {
"file_path": "owncloud/web/packages/design-system/src/assets/icons/ghost-line.svg",
"repo_id": "owncloud",
"token_count": 407
} | 783 |
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<g>
<path fill="none" d="M0 0h24v24H0z"/>
<path fill-rule="nonzero" d="M18 16v-2h1V4H6v10.035A3.53 3.53 0 0 1 6.5 14H8v2H6.5a1.5 1.5 0 0 0 0 3H10v2H6.5A3.5 3.5 0 0 1 3 17.5V5a3 3 0 0 1 3-3h14a1 1 0 0 1 1 1v17a1 1 0 0 1-1 1h-4v-2h3v-3h-1zM7 5h2v2H7V5zm0 3h2v2H7V8zm7 9v6h-2v-6H9l4-5 4 5h-3z"/>
</g>
</svg>
| owncloud/web/packages/design-system/src/assets/icons/git-repository-commits-line.svg/0 | {
"file_path": "owncloud/web/packages/design-system/src/assets/icons/git-repository-commits-line.svg",
"repo_id": "owncloud",
"token_count": 261
} | 784 |
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<g>
<path fill="none" d="M0 0h24v24H0z"/>
<path d="M12 11h8.533c.044.385.067.78.067 1.184 0 2.734-.98 5.036-2.678 6.6-1.485 1.371-3.518 2.175-5.942 2.175A8.976 8.976 0 0 1 3 11.98 8.976 8.976 0 0 1 11.98 3c2.42 0 4.453.89 6.008 2.339L16.526 6.8C15.368 5.681 13.803 5 12 5a7 7 0 1 0 0 14c3.526 0 6.144-2.608 6.577-6H12v-2z"/>
</g>
</svg>
| owncloud/web/packages/design-system/src/assets/icons/google-line.svg/0 | {
"file_path": "owncloud/web/packages/design-system/src/assets/icons/google-line.svg",
"repo_id": "owncloud",
"token_count": 248
} | 785 |
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<g>
<path fill="none" d="M0 0h24v24H0z"/>
<path d="M13 8v8a3 3 0 0 1-3 3H7.83a3.001 3.001 0 1 1 0-2H10a1 1 0 0 0 1-1V8a3 3 0 0 1 3-3h3V2l5 4-5 4V7h-3a1 1 0 0 0-1 1zM5 19a1 1 0 1 0 0-2 1 1 0 0 0 0 2z"/>
</g>
</svg>
| owncloud/web/packages/design-system/src/assets/icons/guide-line.svg/0 | {
"file_path": "owncloud/web/packages/design-system/src/assets/icons/guide-line.svg",
"repo_id": "owncloud",
"token_count": 186
} | 786 |
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<g>
<path fill="none" d="M0 0H24V24H0z"/>
<path d="M17 2v2l-4-.001V6h3v2c2.21 0 4 1.79 4 4v8c0 1.105-.895 2-2 2H6c-1.105 0-2-.895-2-2v-8c0-2.21 1.79-4 4-4V6h3V3.999L7.5 4c-.63 0-1.37.49-2.2 1.6L3.7 4.4C4.87 2.84 6.13 2 7.5 2H17zm-1 8H8c-1.105 0-2 .895-2 2v8h12v-8c0-1.105-.895-2-2-2zm-3 2v2h2v2h-2.001L13 18h-2l-.001-2H9v-2h2v-2h2z"/>
</g>
</svg>
| owncloud/web/packages/design-system/src/assets/icons/hand-sanitizer-line.svg/0 | {
"file_path": "owncloud/web/packages/design-system/src/assets/icons/hand-sanitizer-line.svg",
"repo_id": "owncloud",
"token_count": 300
} | 787 |
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<g>
<path fill="none" d="M0 0h24v24H0z"/>
<path d="M12 4a8 8 0 0 0-8 8h3a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-7C2 6.477 6.477 2 12 2s10 4.477 10 10v7a2 2 0 0 1-2 2h-3a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2h3a8 8 0 0 0-8-8zM4 14v5h3v-5H4zm13 0v5h3v-5h-3z"/>
</g>
</svg>
| owncloud/web/packages/design-system/src/assets/icons/headphone-line.svg/0 | {
"file_path": "owncloud/web/packages/design-system/src/assets/icons/headphone-line.svg",
"repo_id": "owncloud",
"token_count": 230
} | 788 |
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<g>
<path fill="none" d="M0 0h24v24H0z"/>
<path d="M5 16.93a8 8 0 1 1 11.458-9.831A5.5 5.5 0 0 1 19 17.793v-2.13a3.5 3.5 0 1 0-4-5.612V10a6 6 0 1 0-10 4.472v2.458zM7 14h2v6H7v-6zm8 0h2v6h-2v-6zm-4 3h2v6h-2v-6z"/>
</g>
</svg>
| owncloud/web/packages/design-system/src/assets/icons/heavy-showers-line.svg/0 | {
"file_path": "owncloud/web/packages/design-system/src/assets/icons/heavy-showers-line.svg",
"repo_id": "owncloud",
"token_count": 202
} | 789 |
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<g>
<path fill="none" d="M0 0h24v24H0z"/>
<path d="M19 21H5a1 1 0 0 1-1-1v-9H1l10.327-9.388a1 1 0 0 1 1.346 0L23 11h-3v9a1 1 0 0 1-1 1zM6 19h12V9.157l-6-5.454-6 5.454V19zm3-9h6v6H9v-6zm2 2v2h2v-2h-2z"/>
</g>
</svg>
| owncloud/web/packages/design-system/src/assets/icons/home-8-line.svg/0 | {
"file_path": "owncloud/web/packages/design-system/src/assets/icons/home-8-line.svg",
"repo_id": "owncloud",
"token_count": 196
} | 790 |
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<g>
<path fill="none" d="M0 0h24v24H0z"/>
<path d="M21 4v14.721a.5.5 0 0 1-.298.458L12 23.03 3.298 19.18A.5.5 0 0 1 3 18.72V4H1V2h22v2h-2zM5 4v13.745l7 3.1 7-3.1V4H5zm3 4h8v2H8V8zm0 4h8v2H8v-2z"/>
</g>
</svg>
| owncloud/web/packages/design-system/src/assets/icons/honour-line.svg/0 | {
"file_path": "owncloud/web/packages/design-system/src/assets/icons/honour-line.svg",
"repo_id": "owncloud",
"token_count": 192
} | 791 |
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<g>
<path fill="none" d="M0 0h24v24H0z"/>
<path d="M3 17h18v2H3v-2zm0-6h3v3H3v-3zm5 0h3v3H8v-3zM3 5h3v3H3V5zm10 0h3v3h-3V5zm5 0h3v3h-3V5zm-5 6h3v3h-3v-3zm5 0h3v3h-3v-3zM8 5h3v3H8V5z"/>
</g>
</svg>
| owncloud/web/packages/design-system/src/assets/icons/keyboard-line.svg/0 | {
"file_path": "owncloud/web/packages/design-system/src/assets/icons/keyboard-line.svg",
"repo_id": "owncloud",
"token_count": 207
} | 792 |
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<g>
<path fill="none" d="M0 0h24v24H0z"/>
<path fill-rule="nonzero" d="M3 21a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h18a1 1 0 0 1 1 1v16a1 1 0 0 1-1 1H3zm4-11H4v9h3v-9zm13 0H9v9h11v-9zm0-5H4v3h16V5z"/>
</g>
</svg>
| owncloud/web/packages/design-system/src/assets/icons/layout-5-line.svg/0 | {
"file_path": "owncloud/web/packages/design-system/src/assets/icons/layout-5-line.svg",
"repo_id": "owncloud",
"token_count": 183
} | 793 |
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<g>
<path fill="none" d="M0 0h24v24H0z"/>
<path d="M5 8h14V5H5v3zm9 11v-9H5v9h9zm2 0h3v-9h-3v9zM4 3h16a1 1 0 0 1 1 1v16a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1z"/>
</g>
</svg>
| owncloud/web/packages/design-system/src/assets/icons/layout-line.svg/0 | {
"file_path": "owncloud/web/packages/design-system/src/assets/icons/layout-line.svg",
"repo_id": "owncloud",
"token_count": 175
} | 794 |
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<g>
<path fill="none" d="M0 0h24v24H0z"/>
<path fill-rule="nonzero" d="M18.335 18.339H15.67v-4.177c0-.996-.02-2.278-1.39-2.278-1.389 0-1.601 1.084-1.601 2.205v4.25h-2.666V9.75h2.56v1.17h.035c.358-.674 1.228-1.387 2.528-1.387 2.7 0 3.2 1.778 3.2 4.091v4.715zM7.003 8.575a1.546 1.546 0 0 1-1.548-1.549 1.548 1.548 0 1 1 1.547 1.549zm1.336 9.764H5.666V9.75H8.34v8.589zM19.67 3H4.329C3.593 3 3 3.58 3 4.297v15.406C3 20.42 3.594 21 4.328 21h15.338C20.4 21 21 20.42 21 19.703V4.297C21 3.58 20.4 3 19.666 3h.003z"/>
</g>
</svg>
| owncloud/web/packages/design-system/src/assets/icons/linkedin-box-fill.svg/0 | {
"file_path": "owncloud/web/packages/design-system/src/assets/icons/linkedin-box-fill.svg",
"repo_id": "owncloud",
"token_count": 359
} | 795 |
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<g>
<path fill="none" d="M0 0h24v24H0z"/>
<path d="M3.055 13H5.07a7.002 7.002 0 0 0 13.858 0h2.016a9.001 9.001 0 0 1-17.89 0zm0-2a9.001 9.001 0 0 1 17.89 0H18.93a7.002 7.002 0 0 0-13.858 0H3.055z"/>
</g>
</svg>
| owncloud/web/packages/design-system/src/assets/icons/loader-3-fill.svg/0 | {
"file_path": "owncloud/web/packages/design-system/src/assets/icons/loader-3-fill.svg",
"repo_id": "owncloud",
"token_count": 175
} | 796 |
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<g>
<path fill="none" d="M0 0h24v24H0z"/>
<path d="M10 11H4V3a1 1 0 0 1 1-1h14a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1v-8h6v3l5-4-5-4v3z"/>
</g>
</svg>
| owncloud/web/packages/design-system/src/assets/icons/login-box-fill.svg/0 | {
"file_path": "owncloud/web/packages/design-system/src/assets/icons/login-box-fill.svg",
"repo_id": "owncloud",
"token_count": 155
} | 797 |
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<g>
<path fill="none" d="M0 0H24V24H0z"/>
<path d="M5.5 20c.828 0 1.5.672 1.5 1.5S6.328 23 5.5 23 4 22.328 4 21.5 4.672 20 5.5 20zm13 0c.828 0 1.5.672 1.5 1.5s-.672 1.5-1.5 1.5-1.5-.672-1.5-1.5.672-1.5 1.5-1.5zM2.172 1.757l3.827 3.828V17L20 17v2H5c-.552 0-1-.448-1-1V6.413L.756 3.172l1.415-1.415zM16 3c.552 0 1 .448 1 1v2h2.993C20.55 6 21 6.456 21 6.995v8.01c0 .55-.45.995-1.007.995H8.007C7.45 16 7 15.544 7 15.005v-8.01C7 6.445 7.45 6 8.007 6h2.992L11 4c0-.552.448-1 1-1h4zm-5 5h-1v6h1V8zm7 0h-1v6h1V8zm-3-3h-2v1h2V5z"/>
</g>
</svg>
| owncloud/web/packages/design-system/src/assets/icons/luggage-cart-fill.svg/0 | {
"file_path": "owncloud/web/packages/design-system/src/assets/icons/luggage-cart-fill.svg",
"repo_id": "owncloud",
"token_count": 398
} | 798 |
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<g>
<path fill="none" d="M0 0h24v24H0z"/>
<path d="M22 13.341A6 6 0 0 0 14.341 21H3a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h18a1 1 0 0 1 1 1v9.341zm-9.94-1.658L5.648 6.238 4.353 7.762l7.72 6.555 7.581-6.56-1.308-1.513-6.285 5.439zM21.415 19l2.122 2.121-1.415 1.415L20 20.414l-2.121 2.122-1.415-1.415L18.586 19l-2.122-2.121 1.415-1.415L20 17.586l2.121-2.122 1.415 1.415L21.414 19z"/>
</g>
</svg>
| owncloud/web/packages/design-system/src/assets/icons/mail-close-fill.svg/0 | {
"file_path": "owncloud/web/packages/design-system/src/assets/icons/mail-close-fill.svg",
"repo_id": "owncloud",
"token_count": 279
} | 799 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.