mirror of
https://github.com/pezkuwichain/pezkuwi-ui.git
synced 2026-04-22 03:17:58 +00:00
Rebrand: polkadot → pezkuwi
- Updated all package references - Fixed react-identicon and related packages - Version 3.16.8
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
# @polkadot/ui-settings
|
||||
# @pezkuwi/ui-settings
|
||||
|
||||
Manages app settings including endpoints, themes and prefixes
|
||||
|
||||
@@ -7,7 +7,7 @@ Manages app settings including endpoints, themes and prefixes
|
||||
User preferences are set as a settings object in the browser's local storage.
|
||||
|
||||
```js
|
||||
import settings from '@polkadot/ui-settings';
|
||||
import settings from '@pezkuwi/ui-settings';
|
||||
|
||||
render () {
|
||||
// get api endpoint for the selected chain
|
||||
@@ -36,5 +36,5 @@ render () {
|
||||
|
||||
Apps that currently use the settings package
|
||||
|
||||
* [polkadot-js/apps](https://www.github.com/polkadot-js/apps)
|
||||
* [pezkuwichain/apps](https://www.github.com/pezkuwichain/apps)
|
||||
* [paritytech/substrate-light-ui](https://github.com/paritytech/substrate-light-ui)
|
||||
|
||||
@@ -1,28 +1,28 @@
|
||||
{
|
||||
"author": "Jaco Greeff <jacogr@gmail.com>",
|
||||
"bugs": "https://github.com/polkadot-js/ui/issues",
|
||||
"bugs": "https://github.com/pezkuwichain/ui/issues",
|
||||
"description": "Manages app settings",
|
||||
"engines": {
|
||||
"node": ">=18"
|
||||
},
|
||||
"homepage": "https://github.com/polkadot-js/ui/tree/master/packages/ui-settings#readme",
|
||||
"homepage": "https://github.com/pezkuwichain/ui/tree/master/packages/ui-settings#readme",
|
||||
"license": "Apache-2.0",
|
||||
"name": "@polkadot/ui-settings",
|
||||
"name": "@pezkuwi/ui-settings",
|
||||
"repository": {
|
||||
"directory": "packages/ui-settings",
|
||||
"type": "git",
|
||||
"url": "https://github.com/polkadot-js/ui.git"
|
||||
"url": "https://github.com/pezkuwichain/ui.git"
|
||||
},
|
||||
"sideEffects": [
|
||||
"./packageDetect.js",
|
||||
"./packageDetect.cjs"
|
||||
],
|
||||
"type": "module",
|
||||
"version": "3.16.6",
|
||||
"version": "3.16.8",
|
||||
"main": "index.js",
|
||||
"dependencies": {
|
||||
"@polkadot/networks": "^14.0.1",
|
||||
"@polkadot/util": "^14.0.1",
|
||||
"@pezkuwi/networks": "^14.0.5",
|
||||
"@pezkuwi/util": "^14.0.5",
|
||||
"eventemitter3": "^5.0.1",
|
||||
"store": "^2.0.12",
|
||||
"tslib": "^2.8.1"
|
||||
@@ -31,7 +31,7 @@
|
||||
"@types/store": "^2.0.5"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@polkadot/networks": "*",
|
||||
"@polkadot/util": "*"
|
||||
"@pezkuwi/networks": "*",
|
||||
"@pezkuwi/util": "*"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// Copyright 2017-2025 @polkadot/ui-settings authors & contributors
|
||||
// Copyright 2017-2025 @pezkuwi/ui-settings authors & contributors
|
||||
// SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
import type { Endpoint, EndpointType, Option, SettingsStruct } from './types.js';
|
||||
@@ -6,7 +6,7 @@ import type { Endpoint, EndpointType, Option, SettingsStruct } from './types.js'
|
||||
import { EventEmitter } from 'eventemitter3';
|
||||
import store from 'store';
|
||||
|
||||
import { hasProcess, isUndefined } from '@polkadot/util';
|
||||
import { hasProcess, isUndefined } from '@pezkuwi/util';
|
||||
|
||||
import { CAMERA, CAMERA_DEFAULT, CRYPTOS, CRYPTOS_ETH, CRYPTOS_LEDGER, ENDPOINT_DEFAULT, ENDPOINTS, ICON_DEFAULT, ICONS, LANGUAGE_DEFAULT, LEDGER_APP, LEDGER_APP_DEFAULT, LEDGER_CONN, LEDGER_CONN_DEFAULT, LOCKING, LOCKING_DEFAULT, METADATA_UP, METADATA_UP_DEFAULT, NOTIFICATION_DEFAULT, PREFIX_DEFAULT, PREFIXES, STORAGE, STORAGE_DEFAULT, UIMODE_DEFAULT, UIMODES, UITHEME_DEFAULT, UITHEMES } from './defaults/index.js';
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// Copyright 2017-2025 @polkadot/ui-settings authors & contributors
|
||||
// Copyright 2017-2025 @pezkuwi/ui-settings authors & contributors
|
||||
// SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
import { Settings, settings } from './Settings.js';
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
// Copyright 2017-2025 @polkadot/ui-settings authors & contributors
|
||||
// Copyright 2017-2025 @pezkuwi/ui-settings authors & contributors
|
||||
// SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
import { selectableNetworks } from '@polkadot/networks';
|
||||
import { objectSpread } from '@polkadot/util';
|
||||
import { selectableNetworks } from '@pezkuwi/networks';
|
||||
import { objectSpread } from '@pezkuwi/util';
|
||||
|
||||
type ChainDef = string[];
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// Copyright 2017-2025 @polkadot/ui-settings authors & contributors
|
||||
// Copyright 2017-2025 @pezkuwi/ui-settings authors & contributors
|
||||
// SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
import type { Option } from '../types.js';
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// Copyright 2017-2025 @polkadot/ui-settings authors & contributors
|
||||
// Copyright 2017-2025 @pezkuwi/ui-settings authors & contributors
|
||||
// SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
import type { Option } from '../types.js';
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// Copyright 2017-2025 @polkadot/ui-settings authors & contributors
|
||||
// Copyright 2017-2025 @pezkuwi/ui-settings authors & contributors
|
||||
// SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
import type { Option } from '../types.js';
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// Copyright 2017-2025 @polkadot/ui-settings authors & contributors
|
||||
// Copyright 2017-2025 @pezkuwi/ui-settings authors & contributors
|
||||
// SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
import type { Option } from '../types.js';
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
// Copyright 2017-2025 @polkadot/ui-settings authors & contributors
|
||||
// Copyright 2017-2025 @pezkuwi/ui-settings authors & contributors
|
||||
// SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
import type { Option } from '../types.js';
|
||||
|
||||
import { availableNetworks } from '@polkadot/networks';
|
||||
import { availableNetworks } from '@pezkuwi/networks';
|
||||
|
||||
export const PREFIX_DEFAULT = -1;
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// Copyright 2017-2025 @polkadot/ui-settings authors & contributors
|
||||
// Copyright 2017-2025 @pezkuwi/ui-settings authors & contributors
|
||||
// SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
// matches https://polkadot.js.org & https://*.polkadot.io
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// Copyright 2017-2025 @polkadot/ui-settings authors & contributors
|
||||
// Copyright 2017-2025 @pezkuwi/ui-settings authors & contributors
|
||||
// SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
import type { Option } from '../types.js';
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// Copyright 2017-2025 @polkadot/ui-settings authors & contributors
|
||||
// Copyright 2017-2025 @pezkuwi/ui-settings authors & contributors
|
||||
// SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
import { settings } from './bundle.js';
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
// Copyright 2017-2025 @polkadot/ui-settings authors & contributors
|
||||
// Copyright 2017-2026 @pezkuwi/ui-settings authors & contributors
|
||||
// SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
// Do not edit, auto-generated by @polkadot/dev
|
||||
// Do not edit, auto-generated by @pezkuwi/dev
|
||||
// (packageInfo imports will be kept as-is, user-editable)
|
||||
|
||||
import { detectPackage } from '@polkadot/util';
|
||||
import { detectPackage } from '@pezkuwi/util';
|
||||
|
||||
import { packageInfo } from './packageInfo.js';
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
// Copyright 2017-2025 @polkadot/ui-settings authors & contributors
|
||||
// Copyright 2017-2026 @pezkuwi/ui-settings authors & contributors
|
||||
// SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
// Do not edit, auto-generated by @polkadot/dev
|
||||
// Do not edit, auto-generated by @pezkuwi/dev
|
||||
|
||||
export const packageInfo = { name: '@polkadot/ui-settings', path: 'auto', type: 'auto', version: '3.16.6' };
|
||||
export const packageInfo = { name: '@pezkuwi/ui-settings', path: 'auto', type: 'auto', version: '3.16.6' };
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// Copyright 2017-2025 @polkadot/ui-settings authors & contributors
|
||||
// Copyright 2017-2025 @pezkuwi/ui-settings authors & contributors
|
||||
// SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
export interface Option {
|
||||
|
||||
Reference in New Issue
Block a user