@reown/appkit-core 1.6.5 → 1.6.6-basic-test.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -130,6 +130,10 @@ export interface OptionsControllerStatePublic {
130
130
  * @default "{ bip122: 'payment', eip155: 'smartAccount', polkadot: 'eoa', solana: 'eoa' }"
131
131
  */
132
132
  defaultAccountTypes: DefaultAccountTypes;
133
+ /**
134
+ * Define if using basic version or full version. Full version will include modal and other scaffolded components
135
+ */
136
+ basic?: boolean;
133
137
  }
134
138
  export interface OptionsControllerStateInternal {
135
139
  sdkType: 'appkit';
@@ -145,6 +149,7 @@ export declare const OptionsController: {
145
149
  state: OptionsControllerStatePublic & OptionsControllerStateInternal;
146
150
  subscribeKey<K extends StateKey>(key: K, callback: (value: OptionsControllerState[K]) => void): () => void;
147
151
  setOptions(options: OptionsControllerState): void;
152
+ setBasic(basic: boolean): void;
148
153
  setFeatures(features: OptionsControllerState['features'] | undefined): void;
149
154
  setProjectId(projectId: OptionsControllerState['projectId']): void;
150
155
  setAllWallets(allWallets: OptionsControllerState['allWallets']): void;
@@ -217,8 +222,8 @@ export declare const OptionsController: {
217
222
  };
218
223
  } | undefined;
219
224
  readonly customWallets?: readonly {
220
- readonly name: string;
221
225
  readonly id: string;
226
+ readonly name: string;
222
227
  readonly homepage?: string | undefined;
223
228
  readonly image_url?: string | undefined;
224
229
  readonly mobile_link?: string | null | undefined;
@@ -277,6 +282,7 @@ export declare const OptionsController: {
277
282
  readonly bip122: "payment" | "ordinal" | "stx";
278
283
  readonly polkadot: "eoa";
279
284
  };
285
+ readonly basic?: boolean | undefined;
280
286
  readonly sdkType: 'appkit';
281
287
  readonly sdkVersion: SdkVersion;
282
288
  readonly isSiweEnabled?: boolean | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@reown/appkit-core",
3
- "version": "1.6.5",
3
+ "version": "1.6.6-basic-test.1.0",
4
4
  "type": "module",
5
5
  "main": "./dist/esm/exports/index.js",
6
6
  "types": "./dist/types/exports/index.d.ts",
@@ -39,8 +39,8 @@
39
39
  "@walletconnect/universal-provider": "2.17.5",
40
40
  "valtio": "1.11.2",
41
41
  "viem": "2.x",
42
- "@reown/appkit-common": "1.6.5",
43
- "@reown/appkit-wallet": "1.6.5"
42
+ "@reown/appkit-common": "1.6.6-basic-test.1.0",
43
+ "@reown/appkit-wallet": "1.6.6-basic-test.1.0"
44
44
  },
45
45
  "peerDependencies": {},
46
46
  "devDependencies": {