@opentiny/vue-docs 2.2.22 → 2.2.23

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.
@@ -165,11 +165,11 @@ export default {
165
165
  type: 'interface',
166
166
  code: `
167
167
  interface IItemData {
168
- label: string // 菜单项文本
169
- disabled: boolean // 是否禁用
170
- divided: boolean // 是否显示分割线
171
- children: IItemData[] // 菜单项子集
172
- icon: Component // 菜单项图标
168
+ label?: string // 菜单项文本
169
+ disabled?: boolean // 是否禁用
170
+ divided?: boolean // 是否显示分割线
171
+ children?: IItemData[] // 菜单项子集
172
+ icon?: Component // 菜单项图标
173
173
  }
174
174
  `
175
175
  },
@@ -17,7 +17,8 @@ const options = ref([
17
17
  label: '关机'
18
18
  },
19
19
  {
20
- label: '重启'
20
+ label: '重启',
21
+ divided: true
21
22
  },
22
23
  {
23
24
  label: '网络设置',
@@ -22,7 +22,8 @@ export default {
22
22
  label: '关机'
23
23
  },
24
24
  {
25
- label: '重启'
25
+ label: '重启',
26
+ divided: true
26
27
  },
27
28
  {
28
29
  label: '网络设置',
@@ -6,6 +6,12 @@
6
6
 
7
7
  ## What's Changed
8
8
 
9
+ ### Breaking Changes 🛠
10
+
11
+ - remove CreditCardForm component
12
+ - remove DetailPage component
13
+ - remove SlideBar component
14
+
9
15
  ### Exciting New Features 🎉
10
16
 
11
17
  - feat(sites): add theme route by @gimmyhehe in https://github.com/opentiny/tiny-vue/pull/1478
package/index.html CHANGED
@@ -18,7 +18,7 @@
18
18
  <app-root></app-root>
19
19
  <div id="app" class="wp100 hp100 pt60 of-hidden"></div>
20
20
  <!-- prettier-ignore -->
21
- <script id="tinyui-design-common" src="https://test-static-resource.obs.cn-north-7.ulanqab.huawei.com/tinyui-design-common/1.0.5.20240330164329/tinyui-design-common.min.js"></script>
21
+ <script id="tinyui-design-common" src="https://res.hc-cdn.com/tinyui-design-common/1.0.5.20230707170109/tinyui-design-common.min.js"></script>
22
22
  <script type="module" src="./src/main.js"></script>
23
23
  </body>
24
24
  </html>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@opentiny/vue-docs",
3
- "version": "2.2.22",
3
+ "version": "2.2.23",
4
4
  "license": "MIT",
5
5
  "dependencies": {
6
6
  "@unocss/reset": "0.38.2",
@@ -17,16 +17,16 @@
17
17
  "sortablejs": "1.15.0",
18
18
  "@opentiny/vue-repl": "^1.1.0",
19
19
  "@opentiny/vue": "~3.15.0",
20
- "@opentiny/vue-design-aurora": "~3.15.0",
21
20
  "@opentiny/vue-icon": "~3.15.0",
22
21
  "@opentiny/vue-icon-saas": "~3.15.0",
23
- "@opentiny/vue-common": "~3.15.0",
24
22
  "@opentiny/vue-design-saas": "~3.15.0",
23
+ "@opentiny/vue-design-smb": "~3.15.0",
24
+ "@opentiny/vue-common": "~3.15.0",
25
+ "@opentiny/vue-design-aurora": "~3.15.0",
25
26
  "@opentiny/vue-theme": "~3.15.1",
26
27
  "@opentiny/vue-theme-saas": "~3.15.0",
27
- "@opentiny/vue-design-smb": "~3.15.0",
28
- "@opentiny/vue-theme-mobile": "~3.15.0",
29
- "@opentiny/vue-vite-import": "~1.1.5"
28
+ "@opentiny/vue-vite-import": "~1.1.5",
29
+ "@opentiny/vue-theme-mobile": "~3.15.0"
30
30
  },
31
31
  "devDependencies": {
32
32
  "@types/markdown-it": "^12.2.3",