index int64 0 0 | repo_id stringlengths 16 181 | file_path stringlengths 28 270 | content stringlengths 1 11.6M | __index_level_0__ int64 0 10k |
|---|---|---|---|---|
0 | petrpan-code/ProtonMail/WebClients/packages | petrpan-code/ProtonMail/WebClients/packages/sieve/.eslintrc.js | module.exports = {
extends: ['@proton/eslint-config-proton'],
parser: '@typescript-eslint/parser',
parserOptions: {
tsconfigRootDir: __dirname,
project: './tsconfig.json',
},
ignorePatterns: ['.eslintrc.js'],
};
| 8,900 |
0 | petrpan-code/ProtonMail/WebClients/packages | petrpan-code/ProtonMail/WebClients/packages/sieve/README.md | # Sieve.js
TypeScript library to wrap sieve configuration
### Simple representation
```js
{
Operator: {
label: '',
value: 'AllOf' // 'AnyOf'
},
Conditions: [
{
Comparator: {
value: 'contains' // 'is', 'matches', 'starts', 'ends'
},
... | 8,901 |
0 | petrpan-code/ProtonMail/WebClients/packages | petrpan-code/ProtonMail/WebClients/packages/sieve/babel.config.js | module.exports = {
presets: ['@babel/preset-env', ['@babel/preset-react', { runtime: 'automatic' }], '@babel/preset-typescript'],
plugins: [
'@babel/plugin-proposal-object-rest-spread',
'@babel/plugin-transform-runtime',
'transform-require-context',
],
};
| 8,902 |
0 | petrpan-code/ProtonMail/WebClients/packages | petrpan-code/ProtonMail/WebClients/packages/sieve/index.ts | export { fromSieveTree } from './src/fromSieve/fromSieveTree';
export { toSieveTree } from './src/toSieve/toSieveTree';
| 8,903 |
0 | petrpan-code/ProtonMail/WebClients/packages | petrpan-code/ProtonMail/WebClients/packages/sieve/package.json | {
"name": "@proton/sieve",
"description": "Proton sieve",
"license": "GPL-3.0",
"author": "ProtonMail",
"sideEffects": false,
"main": "index.ts",
"scripts": {
"check-types": "tsc",
"lint": "eslint src fixtures --ext .ts --quiet --cache",
"pretty": "prettier --write $(... | 8,904 |
0 | petrpan-code/ProtonMail/WebClients/packages | petrpan-code/ProtonMail/WebClients/packages/sieve/tsconfig.json | {
"extends": "../../tsconfig.base.json"
}
| 8,905 |
0 | petrpan-code/ProtonMail/WebClients/packages/sieve | petrpan-code/ProtonMail/WebClients/packages/sieve/fixtures/archive.ts | /*
* Sieve/Tree test inputs
*/
import {
ConditionComparator,
ConditionType,
FilterStatement,
SimpleObject,
} from '@proton/components/containers/filters/interfaces';
const tree = [
{
List: ['fileinto', 'imap4flags'],
Type: 'Require',
},
{
If: {
Tests: [... | 8,906 |
0 | petrpan-code/ProtonMail/WebClients/packages/sieve | petrpan-code/ProtonMail/WebClients/packages/sieve/fixtures/folder.ts | /*
* Sieve/Tree test inputs
*/
import {
ConditionComparator,
ConditionType,
FilterStatement,
SimpleObject,
} from '@proton/components/containers/filters/interfaces';
const tree = [
{
List: ['fileinto', 'imap4flags'],
Type: 'Require',
},
{
If: {
Tests: [... | 8,907 |
0 | petrpan-code/ProtonMail/WebClients/packages/sieve | petrpan-code/ProtonMail/WebClients/packages/sieve/fixtures/v1StartsEndsTest.ts | import {
ConditionComparator,
ConditionType,
FilterStatement,
SimpleObject,
} from '@proton/components/containers/filters/interfaces';
const tree = [
{
List: ['fileinto', 'imap4flags'],
Type: 'Require',
},
{
If: {
Tests: [
{
... | 8,908 |
0 | petrpan-code/ProtonMail/WebClients/packages/sieve | petrpan-code/ProtonMail/WebClients/packages/sieve/fixtures/v2.ts | import {
ConditionComparator,
ConditionType,
FilterStatement,
SimpleObject,
} from '@proton/components/containers/filters/interfaces';
const tree = [
{
List: ['include', 'environment', 'variables', 'relational', 'comparator-i;ascii-numeric', 'spamtest'],
Type: 'Require',
},
... | 8,909 |
0 | petrpan-code/ProtonMail/WebClients/packages/sieve | petrpan-code/ProtonMail/WebClients/packages/sieve/fixtures/v2Attachments.ts | import {
ConditionComparator,
ConditionType,
FilterStatement,
SimpleObject,
} from '@proton/components/containers/filters/interfaces';
const tree = [
{
List: ['include', 'environment', 'variables', 'relational', 'comparator-i;ascii-numeric', 'spamtest'],
Type: 'Require',
},
... | 8,910 |
0 | petrpan-code/ProtonMail/WebClients/packages/sieve | petrpan-code/ProtonMail/WebClients/packages/sieve/fixtures/v2Complex.ts | import {
ConditionComparator,
ConditionType,
FilterStatement,
SimpleObject,
} from '@proton/components/containers/filters/interfaces';
const tree = [
{
List: ['include', 'environment', 'variables', 'relational', 'comparator-i;ascii-numeric', 'spamtest'],
Type: 'Require',
},
... | 8,911 |
0 | petrpan-code/ProtonMail/WebClients/packages/sieve | petrpan-code/ProtonMail/WebClients/packages/sieve/fixtures/v2EscapeVariables.ts | import {
ConditionComparator,
ConditionType,
FilterStatement,
SimpleObject,
} from '@proton/components/containers/filters/interfaces';
const tree = [
{
List: ['include', 'environment', 'variables', 'relational', 'comparator-i;ascii-numeric', 'spamtest'],
Type: 'Require',
},
... | 8,912 |
0 | petrpan-code/ProtonMail/WebClients/packages/sieve | petrpan-code/ProtonMail/WebClients/packages/sieve/fixtures/v2From.ts | import {
ConditionComparator,
ConditionType,
FilterStatement,
SimpleObject,
} from '@proton/components/containers/filters/interfaces';
const tree = [
{
List: ['include', 'environment', 'variables', 'relational', 'comparator-i;ascii-numeric', 'spamtest'],
Type: 'Require',
},
... | 8,913 |
0 | petrpan-code/ProtonMail/WebClients/packages/sieve | petrpan-code/ProtonMail/WebClients/packages/sieve/fixtures/v2InvalidStructure.ts | const tree = [
{
List: ['fileinto', 'imap4flags', 'reject'],
Type: 'Require',
},
{
Type: 'Reject',
Message: 'No message here please',
},
];
const simple = undefined;
export default { tree, simple };
| 8,914 |
0 | petrpan-code/ProtonMail/WebClients/packages/sieve | petrpan-code/ProtonMail/WebClients/packages/sieve/fixtures/v2SpamOnly.ts | const tree = [
{
List: ['include', 'environment', 'variables', 'relational', 'comparator-i;ascii-numeric', 'spamtest'],
Type: 'Require',
},
{
List: ['fileinto', 'imap4flags'],
Type: 'Require',
},
{
Text: '# Generated: Do not run this script on spam messages',
... | 8,915 |
0 | petrpan-code/ProtonMail/WebClients/packages/sieve | petrpan-code/ProtonMail/WebClients/packages/sieve/fixtures/v2StartsEndsTest.ts | import {
ConditionComparator,
ConditionType,
FilterStatement,
SimpleObject,
} from '@proton/components/containers/filters/interfaces';
const tree = [
{
List: ['include', 'environment', 'variables', 'relational', 'comparator-i;ascii-numeric', 'spamtest'],
Type: 'Require',
},
... | 8,916 |
0 | petrpan-code/ProtonMail/WebClients/packages/sieve | petrpan-code/ProtonMail/WebClients/packages/sieve/fixtures/v2Vacation.ts | import {
ConditionComparator,
ConditionType,
FilterStatement,
SimpleObject,
} from '@proton/components/containers/filters/interfaces';
const tree = [
{
List: ['include', 'environment', 'variables', 'relational', 'comparator-i;ascii-numeric', 'spamtest'],
Type: 'Require',
},
... | 8,917 |
0 | petrpan-code/ProtonMail/WebClients/packages/sieve | petrpan-code/ProtonMail/WebClients/packages/sieve/fixtures/v2VacationDouble.ts | const tree = [
{
List: ['include', 'environment', 'variables', 'comparator-i;ascii-numeric', 'spamtest'],
Type: 'Require',
},
{
List: ['fileinto', 'imap4flags', 'date', 'vacation'],
Type: 'Require',
},
{
List: ['relational'],
Type: 'Require',
},
... | 8,918 |
0 | petrpan-code/ProtonMail/WebClients/packages/sieve | petrpan-code/ProtonMail/WebClients/packages/sieve/fixtures/v2VariableManyConditionsComplex.ts | const tree = [
{
List: ['include', 'environment', 'variables', 'relational', 'comparator-i;ascii-numeric', 'spamtest'],
Type: 'Require',
},
{
List: ['fileinto', 'imap4flags', 'vacation'],
Type: 'Require',
},
{
Name: 'frommail',
Value: 'xxx@pm.me',
... | 8,919 |
0 | petrpan-code/ProtonMail/WebClients/packages/sieve | petrpan-code/ProtonMail/WebClients/packages/sieve/src/constants.ts | export const V1 = 1;
export const V2 = 2;
export const TEST_NODES = {
spamtest: [
{
Text: '# Generated: Do not run this script on spam messages',
Type: 'Comment',
},
{
If: {
Tests: [
{
Name: 'vnd... | 8,920 |
0 | petrpan-code/ProtonMail/WebClients/packages/sieve | petrpan-code/ProtonMail/WebClients/packages/sieve/src/helpers.ts | import { EscapeVariableType, LABEL_KEYS, LABEL_KEY_TYPE } from './interface';
type ReturnValue = { Value: String; Type: String };
/**
* Builds a value label object.
*/
export const buildLabelValueObject = (value: LABEL_KEY_TYPE) => ({
value,
label: LABEL_KEYS[value],
});
/**
* Escapes the sieve specific c... | 8,921 |
0 | petrpan-code/ProtonMail/WebClients/packages/sieve | petrpan-code/ProtonMail/WebClients/packages/sieve/src/interface.ts | import { ConditionComparator, FilterStatement } from '@proton/components/containers/filters/interfaces';
export type SIEVE_VERSION = 1 | 2;
export interface ValueTypePair {
Type: string;
Value: string;
}
export interface ValueNamePair {
Name: string;
Value: string;
}
export interface ValueTextPair {
... | 8,922 |
0 | petrpan-code/ProtonMail/WebClients/packages/sieve/src | petrpan-code/ProtonMail/WebClients/packages/sieve/src/fromSieve/fromSieveTree.helpers.ts | import { ConditionComparator, FilterActions } from '@proton/components/containers/filters/interfaces';
import isTruthy from '@proton/utils/isTruthy';
import { buildLabelValueObject, findLatest, unescapeCharacters, unescapeVariables } from '../helpers';
import {
IfTest,
ItType,
LABEL_KEYS,
LABEL_KEY_MAT... | 8,923 |
0 | petrpan-code/ProtonMail/WebClients/packages/sieve/src | petrpan-code/ProtonMail/WebClients/packages/sieve/src/fromSieve/fromSieveTree.ts | import invert from 'lodash/invert';
import { FilterCondition, FilterStatement, SimpleObject } from '@proton/components/containers/filters/interfaces';
import { LABEL_KEYS, OPERATOR_KEYS } from '../interface';
import { extractMainNode, parseComparatorComment, parseIfConditions, parseThenNodes } from './fromSieveTree.h... | 8,924 |
0 | petrpan-code/ProtonMail/WebClients/packages/sieve/src | petrpan-code/ProtonMail/WebClients/packages/sieve/src/fromSieve/fromTree.test.ts | import folder from '../../fixtures/folder';
import v1StartsEndsTest from '../../fixtures/v1StartsEndsTest';
import v2 from '../../fixtures/v2';
import v2Attachments from '../../fixtures/v2Attachments';
import v2Complex from '../../fixtures/v2Complex';
import v2EscapeVariables from '../../fixtures/v2EscapeVariables';
im... | 8,925 |
0 | petrpan-code/ProtonMail/WebClients/packages/sieve/src | petrpan-code/ProtonMail/WebClients/packages/sieve/src/toSieve/toSieveTree.helpers.ts | import {
ConditionComparator,
ConditionComparatorInvertedMap,
ConditionType,
FilterActions,
FilterCondition,
FilterRedirect,
FilterStatement,
SimpleObject,
} from '@proton/components/containers/filters/interfaces';
import { TEST_NODES, V1, V2 } from '../constants';
import { escapeCharac... | 8,926 |
0 | petrpan-code/ProtonMail/WebClients/packages/sieve/src | petrpan-code/ProtonMail/WebClients/packages/sieve/src/toSieve/toSieveTree.ts | import { SimpleObject } from '@proton/components/containers/filters/interfaces';
import { V1 } from '../constants';
import { SIEVE_VERSION } from '../interface';
import {
buildBasicTree,
buildCondition,
buildFileInto,
buildMark,
buildRedirects,
buildVacation,
validateSimpleRepresentation,
}... | 8,927 |
0 | petrpan-code/ProtonMail/WebClients/packages/sieve/src | petrpan-code/ProtonMail/WebClients/packages/sieve/src/toSieve/toTree.test.ts | import archive from '../../fixtures/archive';
import folder from '../../fixtures/folder';
import v1StartsEndsTest from '../../fixtures/v1StartsEndsTest';
import v2 from '../../fixtures/v2';
import v2Attachments from '../../fixtures/v2Attachments';
import v2Complex from '../../fixtures/v2Complex';
import v2EscapeVariabl... | 8,928 |
0 | petrpan-code/ProtonMail/WebClients/packages | petrpan-code/ProtonMail/WebClients/packages/srp/.eslintignore | test/**/*data.js
| 8,929 |
0 | petrpan-code/ProtonMail/WebClients/packages | petrpan-code/ProtonMail/WebClients/packages/srp/.eslintrc.js | module.exports = {
extends: ['@proton/eslint-config-proton'],
parser: '@typescript-eslint/parser',
env: {
mocha: true,
},
parserOptions: {
tsconfigRootDir: __dirname,
project: './tsconfig.json',
},
ignorePatterns: ['.eslintrc.js'],
};
| 8,930 |
0 | petrpan-code/ProtonMail/WebClients/packages | petrpan-code/ProtonMail/WebClients/packages/srp/.mocharc.json | {
"extension": ["ts"],
"require": "test/babel-register.js"
}
| 8,931 |
0 | petrpan-code/ProtonMail/WebClients/packages | petrpan-code/ProtonMail/WebClients/packages/srp/.prettierignore | test
| 8,932 |
0 | petrpan-code/ProtonMail/WebClients/packages | petrpan-code/ProtonMail/WebClients/packages/srp/LICENSE | MIT License
Copyright (c) 2013-2019 Proton Technologies A.G. (Switzerland) Email: contact@protonmail.ch
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limi... | 8,933 |
0 | petrpan-code/ProtonMail/WebClients/packages | petrpan-code/ProtonMail/WebClients/packages/srp/babel.config.js | module.exports = (api) => {
// Cache configuration is a required option according to mocha
api.cache(false);
return {
targets: 'node 16',
presets: ['@babel/preset-env', '@babel/preset-typescript'],
};
};
| 8,934 |
0 | petrpan-code/ProtonMail/WebClients/packages | petrpan-code/ProtonMail/WebClients/packages/srp/package.json | {
"name": "@proton/srp",
"description": "Proton SRP and auth library",
"license": "MIT",
"author": "Proton",
"main": "lib/index.ts",
"module": "lib/index.ts",
"scripts": {
"check-types": "tsc",
"lint": "eslint lib --ext .ts --quiet --cache",
"pretty": "prettier --writ... | 8,935 |
0 | petrpan-code/ProtonMail/WebClients/packages | petrpan-code/ProtonMail/WebClients/packages/srp/tsconfig.json | {
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"types": ["webpack-env"]
}
}
| 8,936 |
0 | petrpan-code/ProtonMail/WebClients/packages/srp | petrpan-code/ProtonMail/WebClients/packages/srp/lib/constants.ts | export const VERIFICATION_STATUS = {
NOT_SIGNED: 0,
SIGNED_AND_VALID: 1,
SIGNED_AND_INVALID: 2,
};
export const SRP_LEN = 2048;
export const AUTH_FALLBACK_VERSION = 2;
export const AUTH_VERSION = 4;
export const MAX_VALUE_ITERATIONS = 1000;
export const SRP_MODULUS_KEY = `-----BEGIN PGP PUBLIC KEY BLOCK... | 8,937 |
0 | petrpan-code/ProtonMail/WebClients/packages/srp | petrpan-code/ProtonMail/WebClients/packages/srp/lib/getAuthVersion.spec.ts | import assert from 'assert';
import { describe, it } from 'mocha';
import '../test/setup';
import getAuthVersionWithFallback from './getAuthVersionWithFallback';
describe('auth version fallback', () => {
for (let i = 1; i <= 4; ++i) {
it(`should get specified auth version ${i}`, () => {
const ... | 8,938 |
0 | petrpan-code/ProtonMail/WebClients/packages/srp | petrpan-code/ProtonMail/WebClients/packages/srp/lib/getAuthVersionWithFallback.ts | import { AUTH_FALLBACK_VERSION } from './constants';
import { AuthVersion } from './interface';
import { cleanUsername } from './utils/username';
/**
* Get the next auth version to use and if it's the last attempt.
*/
export default (
{ Version }: { Version: AuthVersion },
username: string,
lastAuthVersi... | 8,939 |
0 | petrpan-code/ProtonMail/WebClients/packages/srp | petrpan-code/ProtonMail/WebClients/packages/srp/lib/index.ts | export { AUTH_VERSION } from './constants';
export { getSrp, getRandomSrpVerifier } from './srp';
export { computeKeyPassword, generateKeySalt } from './keys';
export { default as getAuthVersionWithFallback } from './getAuthVersionWithFallback';
| 8,940 |
0 | petrpan-code/ProtonMail/WebClients/packages/srp | petrpan-code/ProtonMail/WebClients/packages/srp/lib/interface.ts | export type AuthVersion = 0 | 1 | 2 | 3 | 4;
export interface AuthInfo {
Version: number;
Modulus: string;
ServerEphemeral: string;
Username?: string; // Only present if auth version < 3
Salt: string;
}
export interface AuthCredentials {
username?: string;
password: string;
}
| 8,941 |
0 | petrpan-code/ProtonMail/WebClients/packages/srp | petrpan-code/ProtonMail/WebClients/packages/srp/lib/keys.spec.ts | import assert from 'assert';
import { describe, it } from 'mocha';
import '../test/setup';
import { computeKeyPassword, generateKeySalt } from './keys';
describe('passwords', () => {
it('should generate key salt', () => {
const salt = generateKeySalt();
assert.strictEqual(salt.length, 24);
});... | 8,942 |
0 | petrpan-code/ProtonMail/WebClients/packages/srp | petrpan-code/ProtonMail/WebClients/packages/srp/lib/keys.ts | import bcrypt from 'bcryptjs';
import { arrayToBinaryString, binaryStringToArray, decodeBase64, encodeBase64 } from '@proton/crypto/lib/utils';
import { BCRYPT_PREFIX } from './constants';
/**
* Compute the key password.
*/
export const computeKeyPassword = async (password: string, salt: string) => {
if (!pass... | 8,943 |
0 | petrpan-code/ProtonMail/WebClients/packages/srp | petrpan-code/ProtonMail/WebClients/packages/srp/lib/passwords.spec.ts | import assert from 'assert';
import { describe, it } from 'mocha';
import { binaryStringToArray } from '@proton/crypto/lib/utils';
import { hashedResult0, hashedResult2, hashedResult4, watResult } from '../test/passwords.data';
import '../test/setup';
import { expandHash, hashPassword } from './passwords';
describe(... | 8,944 |
0 | petrpan-code/ProtonMail/WebClients/packages/srp | petrpan-code/ProtonMail/WebClients/packages/srp/lib/passwords.ts | import bcrypt from 'bcryptjs';
import { CryptoProxy } from '@proton/crypto';
import {
arrayToBinaryString,
arrayToHexString,
binaryStringToArray,
encodeBase64,
encodeUtf8,
} from '@proton/crypto/lib/utils';
import mergeUint8Arrays from '@proton/utils/mergeUint8Arrays';
import { BCRYPT_PREFIX } fro... | 8,945 |
0 | petrpan-code/ProtonMail/WebClients/packages/srp | petrpan-code/ProtonMail/WebClients/packages/srp/lib/srp.spec.ts | import assert from 'assert';
import { describe, it } from 'mocha';
import { disableRandomMock, initRandomMock } from '@proton/testing/lib/mockRandomValues';
import { getRandomSrpVerifier, getSrp } from '../lib/srp';
import '../test/setup';
import { AUTH_RESPONSE, FAKE_RANDOM, SERVER_MODULUS, SERVER_MODULUS_FAKE } fro... | 8,946 |
0 | petrpan-code/ProtonMail/WebClients/packages/srp | petrpan-code/ProtonMail/WebClients/packages/srp/lib/srp.ts | import { BigNumber, Modulus } from 'asmcrypto.js/dist_es8/bignum/bignum';
import { arrayToBinaryString, binaryStringToArray, decodeBase64, encodeBase64 } from '@proton/crypto/lib/utils';
import mergeUint8Arrays from '@proton/utils/mergeUint8Arrays';
import { AUTH_VERSION, MAX_VALUE_ITERATIONS, SRP_LEN } from './const... | 8,947 |
0 | petrpan-code/ProtonMail/WebClients/packages/srp/lib | petrpan-code/ProtonMail/WebClients/packages/srp/lib/utils/bigNumber.ts | import { BigNumber } from 'asmcrypto.js/dist_es8/bignum/bignum';
/**
* From Uint8Array to big number
*/
export const toBN = (arr: Uint8Array) => {
const reversed = new Uint8Array(arr.length);
for (let i = 0; i < arr.length; i++) {
reversed[arr.length - i - 1] = arr[i];
}
return BigNumber.from... | 8,948 |
0 | petrpan-code/ProtonMail/WebClients/packages/srp/lib | petrpan-code/ProtonMail/WebClients/packages/srp/lib/utils/modulus.ts | import { CryptoProxy, PublicKeyReference } from '@proton/crypto';
import { binaryStringToArray, decodeBase64 } from '@proton/crypto/lib/utils';
import { SRP_MODULUS_KEY, VERIFICATION_STATUS } from '../constants';
const { NOT_SIGNED, SIGNED_AND_VALID } = VERIFICATION_STATUS;
/**
* Get key to verify the modulus
*/
e... | 8,949 |
0 | petrpan-code/ProtonMail/WebClients/packages/srp/lib | petrpan-code/ProtonMail/WebClients/packages/srp/lib/utils/username.ts | /**
* Clean the username, remove underscore, dashes, dots and lowercase.
*/
export const cleanUsername = (name = '') => name.replace(/[.\-_]/g, '').toLowerCase();
/**
* Validate username for old auth versions.
*/
export const checkUsername = (authVersion: number, username?: string, usernameApi?: string) => {
i... | 8,950 |
0 | petrpan-code/ProtonMail/WebClients/packages/srp | petrpan-code/ProtonMail/WebClients/packages/srp/test/babel-register.js | const register = require('@babel/register').default;
register({
extensions: ['.ts', '.tsx', '.js', '.jsx', '.mjs'],
ignore: [
/node_modules\/(?!(asmcrypto|jsmimeparser|pmcrypto|openpgp|@openpgp\/web-stream-tools|@openpgp\/asmcrypto.js))/,
],
});
| 8,951 |
0 | petrpan-code/ProtonMail/WebClients/packages/srp | petrpan-code/ProtonMail/WebClients/packages/srp/test/passwords.data.js | export const watResult = new Uint8Array([
69, 48, 61, 219, 35, 37, 220, 38, 10, 164, 157, 54, 199, 3, 241, 241, 104, 218, 149, 212, 128, 239, 27, 124, 16,
118, 12, 154, 39, 146, 70, 184, 210, 160, 39, 0, 32, 71, 207, 30, 218, 104, 119, 81, 146, 23, 173, 89, 12, 105, 207,
8, 10, 101, 74, 32, 124, 155, 0, 171... | 8,952 |
0 | petrpan-code/ProtonMail/WebClients/packages/srp | petrpan-code/ProtonMail/WebClients/packages/srp/test/setup.js | import { after, before } from 'mocha';
import { CryptoProxy } from '@proton/crypto';
import { Api as CryptoApi } from '@proton/crypto/lib/worker/api';
before(async () => {
await CryptoProxy.setEndpoint(new CryptoApi(), (endpoint) => endpoint.clearKeyStore());
});
after(async () => {
await CryptoProxy.release... | 8,953 |
0 | petrpan-code/ProtonMail/WebClients/packages/srp | petrpan-code/ProtonMail/WebClients/packages/srp/test/srp.data.js | export const SERVER_MODULUS = `-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256
y6TtufhYg2mIeauZYOti+GPbd/0vP66kP34TgE6elK/kXkTW/Yfrp1jMmtLiWWSq5cszTMRIEighuwPbZ/z3RrWPxsOg0+jYgbFu8yZ8vOAwrPtLxZl94x0PFTAZBrVapmCn+VYcM+UXdO9v70xFDLwj34tpPbvpODHVWHSlGlhOwndWg3XBE2D9PJopFZajNZiqOScBXree5rDgzU5BBaPbIb6nySpyaeThMCcNzpcEqE8r... | 8,954 |
0 | petrpan-code/ProtonMail/WebClients/packages | petrpan-code/ProtonMail/WebClients/packages/stylelint-config-proton/LICENSE.md | Copyright (c) 2020, Proton AG <contact@protonmail.com>
Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCL... | 8,955 |
0 | petrpan-code/ProtonMail/WebClients/packages | petrpan-code/ProtonMail/WebClients/packages/stylelint-config-proton/index.js | module.exports = {
extends: ['stylelint-config-standard-scss', 'stylelint-config-prettier-scss'],
rules: {
'color-no-invalid-hex': true,
'font-family-no-duplicate-names': true,
'font-family-no-missing-generic-family-keyword': true,
'function-calc-no-unspaced-operator': true,
... | 8,956 |
0 | petrpan-code/ProtonMail/WebClients/packages | petrpan-code/ProtonMail/WebClients/packages/stylelint-config-proton/package.json | {
"name": "@proton/stylelint-config-proton",
"license": "ISC",
"author": "Proton AG",
"main": "index.js",
"files": [
"index.js"
],
"dependencies": {
"stylelint": "^15.11.0",
"stylelint-config-prettier-scss": "^1.0.0",
"stylelint-config-standard-scss": "^10.0.0... | 8,957 |
0 | petrpan-code/ProtonMail/WebClients/packages | petrpan-code/ProtonMail/WebClients/packages/styles/.prettierignore | scss/**/_index.scss
| 8,958 |
0 | petrpan-code/ProtonMail/WebClients/packages | petrpan-code/ProtonMail/WebClients/packages/styles/.stylelintignore | 8,959 | |
0 | petrpan-code/ProtonMail/WebClients/packages | petrpan-code/ProtonMail/WebClients/packages/styles/CHANGELOG.md | # [2.0.0] - 2021-xx-xx
## New
### Brand new 🎉 and super duper 🔥
- refactor all design system arbo ^^
- refactor numerous namespaces ^^
- new input fields!
- new buttons API!
- new toggle!
- new themes!
- tons of new custom properties!
- styles for new phone input
- styles for theming/new taxonomy... | 8,960 |
0 | petrpan-code/ProtonMail/WebClients/packages | petrpan-code/ProtonMail/WebClients/packages/styles/LICENSE | Copyright 2021 Proton AG
Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGAR... | 8,961 |
0 | petrpan-code/ProtonMail/WebClients/packages | petrpan-code/ProtonMail/WebClients/packages/styles/package.json | {
"name": "@proton/styles",
"description": "Proton Design system, for all Proton Projects: https://design-system.protontech.ch/",
"keywords": [
"Design System",
"CSS guidelines",
"Flexbox",
"a11y",
"ProtonMail",
"SVG"
],
"license": "ISC",
"author":... | 8,962 |
0 | petrpan-code/ProtonMail/WebClients/packages/styles/assets | petrpan-code/ProtonMail/WebClients/packages/styles/assets/css/android-dark-mode.css | :root {
--background-norm: #262a33;
--text-norm: white;
}
| 8,963 |
0 | petrpan-code/ProtonMail/WebClients/packages/styles/assets | petrpan-code/ProtonMail/WebClients/packages/styles/assets/css/android-reset.css | article,
aside,
datalist,
details,
dialog,
figure,
footer,
header,
main,
menu,
nav,
section {
display: block;
}
audio,
canvas,
progress,
video {
display: inline-block;
}
abbr,
mark,
meter,
time,
output {
display: inline;
}
html,
body,
blockquote,
ul,
ol,
form,
button,
figure {
margin: 0;
padding: 0;... | 8,964 |
0 | petrpan-code/ProtonMail/WebClients/packages/styles/assets/img | petrpan-code/ProtonMail/WebClients/packages/styles/assets/img/bank-icons/3d-secure.svg | <svg xmlns="http://www.w3.org/2000/svg" width="90" height="44" fill="none" viewBox="0 0 90 44">
<path
fill="#A4A9B5"
fill-opacity=".6"
d="M45.882 17.481C44.012 16.211 42.109 16 40.689 16c-3.252 0-5.095 1.869-5.095 4.276 0 1.833 1.314 2.953 3.42 3.358l.6.115c1.34.255 2.045.502 2.045 1.19 0 .8... | 8,965 |
0 | petrpan-code/ProtonMail/WebClients/packages/styles/assets/img | petrpan-code/ProtonMail/WebClients/packages/styles/assets/img/bank-icons/amex-safekey-colored.svg | <svg width="69" height="44" viewBox="0 0 69 44" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M32.8172 25.8171C32.7039 24.5192 32.0553 23.8299 30.8547 23.8299C29.8818 23.8299 28.99 24.375 28.7951 25.8171H32.8172ZM26.7676 26.6508C26.7676 23.4... | 8,966 |
0 | petrpan-code/ProtonMail/WebClients/packages/styles/assets/img | petrpan-code/ProtonMail/WebClients/packages/styles/assets/img/bank-icons/amex-safekey.svg | <svg xmlns="http://www.w3.org/2000/svg" width="68" height="44" fill="none" viewBox="0 0 68 44">
<path
fill="#696F7D"
fill-opacity=".6"
fill-rule="evenodd"
d="M32.816 25.817c-.113-1.298-.762-1.987-1.963-1.987-.972 0-1.864.545-2.06 1.987h4.023zm-6.05.834c0-3.238 2.32-4.423 4.104-4.423 ... | 8,967 |
0 | petrpan-code/ProtonMail/WebClients/packages/styles/assets/img | petrpan-code/ProtonMail/WebClients/packages/styles/assets/img/bank-icons/discover-protectbuy-colored.svg | <svg width="141" height="44" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M45.835 38.5v-33h-.917v33h.917Z" fill="#A8A9AD" />
<path
d="M60.867 20.172c0 1.674-.797 3.02-2.172 3.675-.58.273-1.123.419-2.516.419h-1.394v4.658h-2.534V16.278h3.312c2.136 0 2.788.218 3.494.618 1.176.655 1.81 1.82 1.81... | 8,968 |
0 | petrpan-code/ProtonMail/WebClients/packages/styles/assets/img | petrpan-code/ProtonMail/WebClients/packages/styles/assets/img/bank-icons/discover-protectbuy.svg | <svg xmlns="http://www.w3.org/2000/svg" width="140" height="44" fill="none" viewBox="0 0 140 44">
<defs />
<path fill="#A4A9B5" fill-opacity=".6" d="M45.83 38.5v-33h-.91v33h.91z" />
<path
fill="#696F7D"
fill-opacity=".6"
d="M60.87 20.17c0 1.68-.8 3.02-2.18 3.68a5.2 5.2 0 01-2.51.42h-... | 8,969 |
0 | petrpan-code/ProtonMail/WebClients/packages/styles/assets/img | petrpan-code/ProtonMail/WebClients/packages/styles/assets/img/bank-icons/mastercard-securecode-colored.svg | <svg width="77" height="44" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0)">
<path
d="M6.57 26.176a5.862 5.862 0 00-1.274-.611 4.289 4.289 0 00-1.375-.204c-.305 0-.56.05-.865.102-.255.05-.459.152-.662.254a1.202 1.202 0 00-.408.459 1.027 1.027 0 00-.153.56c0 .203.051.35... | 8,970 |
0 | petrpan-code/ProtonMail/WebClients/packages/styles/assets/img | petrpan-code/ProtonMail/WebClients/packages/styles/assets/img/bank-icons/mastercard-securecode.svg | <svg xmlns="http://www.w3.org/2000/svg" width="78" height="44" fill="none" viewBox="0 0 78 44">
<g clip-path="url(#clip0)">
<path
fill="#A4A9B5"
fill-opacity=".6"
d="M6.57 26.176a5.862 5.862 0 00-1.274-.611 4.289 4.289 0 00-1.375-.204c-.305 0-.56.051-.865.102-.255.051-.45... | 8,971 |
0 | petrpan-code/ProtonMail/WebClients/packages/styles/assets/img | petrpan-code/ProtonMail/WebClients/packages/styles/assets/img/bank-icons/paypal-color.svg | <svg xmlns="http://www.w3.org/2000/svg" width="60" height="16" fill="none" viewBox="0 13 60 16">
<g clip-path="url(#clip0)">
<path
fill="#179BD7"
fill-rule="evenodd"
d="M41.026 18.368c-.255 1.674-1.535 1.674-2.772 1.674h-.704l.494-3.126a.388.388 0 01.384-.327h.323c.842 0 ... | 8,972 |
0 | petrpan-code/ProtonMail/WebClients/packages/styles/assets/img | petrpan-code/ProtonMail/WebClients/packages/styles/assets/img/bank-icons/paypal.svg | <svg xmlns="http://www.w3.org/2000/svg" width="60" height="44" fill="none" viewBox="0 0 60 44">
<g clip-path="url(#clip0)">
<path
fill="#A4A9B5"
fill-opacity=".6"
fill-rule="evenodd"
d="M41.026 18.368c-.255 1.674-1.535 1.674-2.772 1.674h-.704l.494-3.126a.388.3... | 8,973 |
0 | petrpan-code/ProtonMail/WebClients/packages/styles/assets/img | petrpan-code/ProtonMail/WebClients/packages/styles/assets/img/bank-icons/visa-secure-colored.svg | <svg width="44" height="44" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0)">
<path d="M44.07.03H.07v43.997H44.07V.03z" fill="#fff" />
<path
d="M43.1 22.03H1.042v21.028H43.1V22.03zM17.465 6.18l-4.131 9.88h-2.711L8.585 8.176c-.125-.485-.222-.667-.607-.87a10.713 1... | 8,974 |
0 | petrpan-code/ProtonMail/WebClients/packages/styles/assets/img | petrpan-code/ProtonMail/WebClients/packages/styles/assets/img/bank-icons/visa-secure.svg | <svg xmlns="http://www.w3.org/2000/svg" width="44" height="44" fill="none" viewBox="0 0 44 44">
<g clip-path="url(#clip0)">
<path
fill="#696F7D"
fill-opacity=".6"
d="M17.465 6.18l-4.131 9.88h-2.712L8.585 8.176c-.125-.485-.223-.667-.607-.87a10.713 10.713 0 00-2.522-.84l.06... | 8,975 |
0 | petrpan-code/ProtonMail/WebClients/packages/styles/assets/img | petrpan-code/ProtonMail/WebClients/packages/styles/assets/img/brand/airbnb.svg | <svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" fill="none" viewBox="0 0 48 48">
<path
fill="#FF385C"
d="M5 17c0-6.627 5.373-12 12-12h14c6.627 0 12 5.373 12 12v14c0 6.627-5.373 12-12 12H17c-6.627 0-12-5.373-12-12V17Z"
/>
<path
fill="#fff"
d="M34.635 30.148c-.00... | 8,976 |
0 | petrpan-code/ProtonMail/WebClients/packages/styles/assets/img | petrpan-code/ProtonMail/WebClients/packages/styles/assets/img/brand/amazon.svg | <svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" fill="none" viewBox="0 0 48 48">
<path
fill="#F90"
d="M39.086 36.933c-17.013 8.098-27.573 1.323-34.332-2.792-.419-.26-1.13.061-.512.77 2.25 2.73 9.631 9.31 19.263 9.31 9.64 0 15.374-5.258 16.091-6.177.713-.91.21-1.41-.51-1.11Zm4.779-2.63... | 8,977 |
0 | petrpan-code/ProtonMail/WebClients/packages/styles/assets/img | petrpan-code/ProtonMail/WebClients/packages/styles/assets/img/brand/american-express.svg | <svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" fill="none" viewBox="0 0 48 48">
<path fill="#fff" d="M5 5v38h38V5H5Z" />
<path
fill="#006FCF"
d="m36.223 14.323 1.216-3.306H43V5H5v38h38v-6.004h-5.244l-1.938-2.267-2.014 2.267H18.908V24.925h-4.915l6.144-13.908h5.978l1.444 3.154v-3.1... | 8,978 |
0 | petrpan-code/ProtonMail/WebClients/packages/styles/assets/img | petrpan-code/ProtonMail/WebClients/packages/styles/assets/img/brand/apple.svg | <svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" fill="none" viewBox="0 0 48 48">
<path
fill="#000"
d="M36.1 23.497c-.02-3.488 1.567-6.12 4.782-8.06-1.798-2.557-4.515-3.963-8.102-4.238-3.395-.267-7.106 1.967-8.465 1.967-1.434 0-4.724-1.873-7.307-1.873C11.672 11.38 6 15.523 6 23.953c0 2... | 8,979 |
0 | petrpan-code/ProtonMail/WebClients/packages/styles/assets/img | petrpan-code/ProtonMail/WebClients/packages/styles/assets/img/brand/att.svg | <svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" fill="none" viewBox="0 0 48 48">
<path
fill="url(#a)"
d="M11.736 39.792a19.975 19.975 0 0 0 12.265 4.203c5.052 0 9.659-1.876 13.175-4.957.042-.037.021-.063-.021-.037-1.578 1.054-6.074 3.355-13.154 3.355-6.155 0-10.043-1.375-12.24-2.6-.04... | 8,980 |
0 | petrpan-code/ProtonMail/WebClients/packages/styles/assets/img | petrpan-code/ProtonMail/WebClients/packages/styles/assets/img/brand/bank-of-america.svg | <svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" fill="none" viewBox="0 0 48 48">
<path
fill="#E31837"
d="M23.93 36.476C31.195 30.252 41.398 24.2 47 22.021c-.865-.553-2.213-1.349-3.736-2.213-7.228 2.386-15.667 7.677-23.207 13.66 1.28.968 2.629 1.971 3.874 3.008Z"
/>
<path
... | 8,981 |
0 | petrpan-code/ProtonMail/WebClients/packages/styles/assets/img | petrpan-code/ProtonMail/WebClients/packages/styles/assets/img/brand/best-buy.svg | <svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" fill="none" viewBox="0 0 48 48">
<path
fill="#1C252C"
d="M2 11.319V22.43h5.813c2.288 0 4.402-.804 4.402-3.164 0-1.596-1.149-2.325-2.412-2.707.77-.308 1.643-.958 1.643-2.319 0-1.741-1.727-2.922-4.052-2.922H2Zm3.56 2.588h1.31c.534 0 .94.41... | 8,982 |
0 | petrpan-code/ProtonMail/WebClients/packages/styles/assets/img | petrpan-code/ProtonMail/WebClients/packages/styles/assets/img/brand/binance.svg | <svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" fill="none" viewBox="0 0 48 48">
<path
fill="#F3BA2F"
d="M15.455 20.489 24 11.944l8.548 8.55 4.973-4.973L24 2 10.482 15.517l4.973 4.972Zm-8.484-1.462 4.973 4.971-4.973 4.973L2 23.998l4.971-4.97Zm8.484 8.483L24 36.055l8.548-8.549 4.975 4.... | 8,983 |
0 | petrpan-code/ProtonMail/WebClients/packages/styles/assets/img | petrpan-code/ProtonMail/WebClients/packages/styles/assets/img/brand/booking.svg | <svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" fill="none" viewBox="0 0 48 48">
<path
fill="#0C3B7C"
fill-rule="evenodd"
d="M44 11.51A7.516 7.516 0 0 0 36.488 4H11.512A7.516 7.516 0 0 0 4 11.51v23.98A7.516 7.516 0 0 0 11.513 43h24.975A7.516 7.516 0 0 0 44 35.49V11.51Z"
... | 8,984 |
0 | petrpan-code/ProtonMail/WebClients/packages/styles/assets/img | petrpan-code/ProtonMail/WebClients/packages/styles/assets/img/brand/capital-one.svg | <svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" fill="none" viewBox="0 0 48 48">
<path
fill="#CC2427"
d="M6.897 4.504c5.793-.382 11.604-.607 17.414-.457 4.142.14 8.297.41 12.365 1.251 2.294.507 4.612 1.157 6.618 2.42 1.199.778 2.375 1.867 2.629 3.342.316 1.71-.388 3.394-1.248 4.835-1.... | 8,985 |
0 | petrpan-code/ProtonMail/WebClients/packages/styles/assets/img | petrpan-code/ProtonMail/WebClients/packages/styles/assets/img/brand/chase.svg | <svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" fill="none" viewBox="0 0 48 48">
<path
fill="#117ACA"
d="M18.343 5C17.6 5 17 5.6 17 6.341v9.406h24.84L30.529 5.001 18.343 5ZM42.75 18.594c0-.742-.596-1.34-1.342-1.34h-9.4V42.1l10.738-11.32.004-12.186ZM29.159 43c.74 0 1.34-.601 1.34-1.344... | 8,986 |
0 | petrpan-code/ProtonMail/WebClients/packages/styles/assets/img | petrpan-code/ProtonMail/WebClients/packages/styles/assets/img/brand/coinbase.svg | <svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" fill="none" viewBox="0 0 48 48">
<path fill="#fff" d="M24 2c12.148 0 22 9.852 22 22s-9.852 22-22 22S2 36.148 2 24 11.852 2 24 2Z" />
<path
fill="#0052FF"
d="M24.007 31.736A7.733 7.733 0 0 1 16.273 24a7.731 7.731 0 0 1 7.734-7.733c3.8... | 8,987 |
0 | petrpan-code/ProtonMail/WebClients/packages/styles/assets/img | petrpan-code/ProtonMail/WebClients/packages/styles/assets/img/brand/credit-karma.svg | <svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" fill="none" viewBox="0 0 48 48">
<path fill="#008600" d="M5 5h38v38H5z" />
<path
fill="#fff"
d="M13.805 26.617c0-3.497 1.684-5.293 4.396-5.293 2.02 0 3.271.786 3.723 1.01.337-.336.558-.898.558-1.459 0-1.01-1.12-2.02-4.392-2.02-3.833 ... | 8,988 |
0 | petrpan-code/ProtonMail/WebClients/packages/styles/assets/img | petrpan-code/ProtonMail/WebClients/packages/styles/assets/img/brand/discord.svg | <svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" fill="none" viewBox="0 0 48 48">
<path
fill="#5865F2"
d="M39.305 9.833c4.97 7.309 7.423 15.553 6.505 25.043a.14.14 0 0 1-.057.101c-3.763 2.764-7.409 4.442-11.004 5.554a.14.14 0 0 1-.155-.053 29.329 29.329 0 0 1-2.246-3.654.141.141 0 0 1 ... | 8,989 |
0 | petrpan-code/ProtonMail/WebClients/packages/styles/assets/img | petrpan-code/ProtonMail/WebClients/packages/styles/assets/img/brand/discover.svg | <svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" fill="none" viewBox="0 0 48 48">
<path
fill="#F27923"
d="M24.9 27.819c2.08 0 3.766-1.663 3.766-3.716 0-2.052-1.686-3.715-3.766-3.715s-3.766 1.663-3.766 3.715c0 2.052 1.686 3.716 3.766 3.716Z"
/>
<path
fill="#1A1918"
... | 8,990 |
0 | petrpan-code/ProtonMail/WebClients/packages/styles/assets/img | petrpan-code/ProtonMail/WebClients/packages/styles/assets/img/brand/disney-plus.svg | <svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" fill="none" viewBox="0 0 48 48">
<path
fill="#01147C"
d="M33.097 27.508c-.609.14-2.211.221-2.211.221l-.204.637s.8-.069 1.383-.01c0 0 .19-.02.212.217.009.221-.017.458-.017.458s-.012.145-.216.18c-.22.037-1.725.093-1.725.093l-.246.827s-.088... | 8,991 |
0 | petrpan-code/ProtonMail/WebClients/packages/styles/assets/img | petrpan-code/ProtonMail/WebClients/packages/styles/assets/img/brand/dominos-pizza.svg | <svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" fill="none" viewBox="0 0 48 48">
<path
fill="#fff"
d="m16.155 16.161 13.4-13.342c1-.996 2.135-1.184 3.35 0l12.456 12.4c.892.888.811 2.233 0 3.04L18.262 45.212c-.973.968-2.243 1.13-3.377 0L2.7 33.08c-.974-.968-.892-2.502 0-3.39l13.455-13.... | 8,992 |
0 | petrpan-code/ProtonMail/WebClients/packages/styles/assets/img | petrpan-code/ProtonMail/WebClients/packages/styles/assets/img/brand/doordash.svg | <svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" fill="none" viewBox="0 0 48 48">
<path
fill="#FF3008"
d="M33.57 35.883h-6.89c-.21 0-.42-.02-.626-.06a3.065 3.065 0 0 1-.603-.183 2.985 2.985 0 0 1-.558-.295 3.055 3.055 0 0 1-.49-.4l-6.828-6.787a1.075 1.075 0 0 1-.295-.544 1.062 1.062 0 ... | 8,993 |
0 | petrpan-code/ProtonMail/WebClients/packages/styles/assets/img | petrpan-code/ProtonMail/WebClients/packages/styles/assets/img/brand/ebay.svg | <svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" fill="none" viewBox="0 0 48 48">
<path
fill="#E53238"
d="M7.69 18.847c-3.104 0-5.69 1.317-5.69 5.29 0 3.145 1.739 5.128 5.77 5.128 4.744 0 5.048-3.125 5.048-3.125H10.52s-.494 1.682-2.891 1.682c-1.953 0-3.356-1.318-3.356-3.167h8.786v-1.16... | 8,994 |
0 | petrpan-code/ProtonMail/WebClients/packages/styles/assets/img | petrpan-code/ProtonMail/WebClients/packages/styles/assets/img/brand/expedia.svg | <svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" fill="none" viewBox="0 0 48 48">
<path
fill="#202843"
fill-rule="evenodd"
d="M42.923 30.459C46.49 20.008 40.909 8.644 30.458 5.077 20.008 1.51 8.644 7.091 5.078 17.541 1.51 27.992 7.09 39.356 17.541 42.923c10.45 3.566 21.814-2.01... | 8,995 |
0 | petrpan-code/ProtonMail/WebClients/packages/styles/assets/img | petrpan-code/ProtonMail/WebClients/packages/styles/assets/img/brand/facebook.svg | <svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" fill="none" viewBox="0 0 48 48">
<g clip-path="url(#a)">
<path
fill="#1977F3"
d="M24 44.002c11.046 0 20-8.955 20-20 0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20Z"
/>
<path
fill="#fff"... | 8,996 |
0 | petrpan-code/ProtonMail/WebClients/packages/styles/assets/img | petrpan-code/ProtonMail/WebClients/packages/styles/assets/img/brand/github.svg | <svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" fill="none" viewBox="0 0 48 48">
<path
fill="#161614"
d="M23.75 4c-11.045 0-20 9.18-20 20.507 0 9.06 5.73 16.747 13.678 19.459.998.19 1.366-.445 1.366-.987 0-.489-.019-2.104-.028-3.818-5.564 1.24-6.737-2.419-6.737-2.419-.91-2.371-2.221-3... | 8,997 |
0 | petrpan-code/ProtonMail/WebClients/packages/styles/assets/img | petrpan-code/ProtonMail/WebClients/packages/styles/assets/img/brand/home-depot.svg | <svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" fill="none" viewBox="0 0 48 48">
<path fill="#fff" d="M5.002 5.002h37.996v37.994H5.002V5.002Z" />
<path
fill="#F96302"
d="M5.002 5.002h23.84c1.919 0 3.838-.004 5.753.003-.53.539-1.073 1.074-1.608 1.612.212.224.435.431.647.65.487-.334... | 8,998 |
0 | petrpan-code/ProtonMail/WebClients/packages/styles/assets/img | petrpan-code/ProtonMail/WebClients/packages/styles/assets/img/brand/hotels.svg | <svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" fill="none" viewBox="0 0 48 48">
<path
fill="#E73648"
d="M35.19 43H12.81C8.505 43 5 39.497 5 35.175V12.806C5 8.503 8.505 5 12.81 5h22.38C39.514 5 43 8.481 43 12.784v22.37c.019 4.32-3.486 7.846-7.81 7.846Z"
/>
<path
fill="... | 8,999 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.