rtcpts 0.0.13 → 0.0.14

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.
@@ -1,3 +1,4 @@
1
+ import { Ref } from 'vue';
1
2
  /**
2
3
  * 表单验证规则
3
4
  * @param t - 可选的国际化翻译函数,如果不传则使用全局的 t 函数
@@ -20,6 +21,8 @@ interface DialogProviderOptions {
20
21
  i18n?: any;
21
22
  plugins?: any[];
22
23
  iconMapFn?: (iconName: string) => any;
24
+ pagePermissionIds?: Ref<string[]>;
25
+ pageActionPermissionIds?: Ref<string[]>;
23
26
  }
24
27
  export type DialogPosition = 'standard' | 'right' | 'top' | 'bottom' | 'left';
25
28
  export type DialogType = 'dialog' | 'text' | 'textarea' | 'select';