Skip to content

Commit

Permalink
docs: update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
cipchk committed Sep 16, 2023
1 parent b9f29a8 commit 966d98a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/abc/onboarding/index.en-US.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ The components only support the use of `OnboardingService` service to build.

| Property | Description | Type | Default |
|----------|-------------|------|---------|
| `[key]` | Storage identification Key | `string` | - |
| `[key]` | Storage identification Key, The default is `localStorage` local storage, allowing the use of `ONBOARDING_STORE_TOKEN` to change the storage method | `string` | - |
| `[keyVersion]` | Current version | `unknown` | - |
| `[items]` | Onboarding items | `OnboardingItem[]` | `[]` |
| `[mask]` | Whether to show mask or not | `boolean` | `true` |
Expand Down
2 changes: 1 addition & 1 deletion packages/abc/onboarding/index.zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ module: import { OnboardingModule } from '@delon/abc/onboarding';

| 成员 | 说明 | 类型 | 默认值 |
|----|----|----|-----|
| `[key]` | 存储标识Key | `string` | - |
| `[key]` | 存储标识Key;默认 `localStorage` 本地存储,允许使用 `ONBOARDING_STORE_TOKEN` 变更存储方式 | `string` | - |
| `[keyVersion]` | 当前版本 | `unknown` | - |
| `[items]` | 引导项列表 | `OnboardingItem[]` | `[]` |
| `[mask]` | 是否展示遮罩 | `boolean` | `true` |
Expand Down
2 changes: 1 addition & 1 deletion packages/abc/onboarding/onboarding.types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export type OnboardingOpType = 'next' | 'prev' | 'skip' | 'done';

export interface OnboardingConfig {
/**
* Storage identification Key
* Storage identification Key, The default is `localStorage` local storage, allowing the use of `ONBOARDING_STORE_TOKEN` to change the storage method
*/
key?: string;
/**
Expand Down

0 comments on commit 966d98a

Please sign in to comment.