@partex/one-core 2.0.57 → 2.0.59

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.
@@ -0,0 +1,3 @@
1
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ExtractPropTypes } from 'vue';
2
+ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<{}>>, {}, {}>;
3
+ export default _default;
@@ -0,0 +1,3 @@
1
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ExtractPropTypes } from 'vue';
2
+ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<{}>>, {}, {}>;
3
+ export default _default;
@@ -13,12 +13,14 @@ export { default as IconFilter } from './Filter.vue';
13
13
  export { default as IconFullScreenMaximize } from './FullScreenMaximize.vue';
14
14
  export { default as IconDelete } from './Delete.vue';
15
15
  export { default as IconEye } from './Eye.vue';
16
+ export { default as IconEyeOff } from './EyeOff.vue';
16
17
  export { default as IconDrafts } from './Drafts.vue';
17
18
  export { default as IconDismiss } from './Dismiss.vue';
18
19
  export { default as IconMailInboxAdd } from './MailInboxAdd.vue';
19
20
  export { default as IconCloudArrowDown } from './CloudArrowDown.vue';
20
21
  export { default as IconNavigation } from './Navigation.vue';
21
22
  export { default as IconPin } from './Pin.vue';
23
+ export { default as IconPinOff } from './PinOff.vue';
22
24
  export { default as IconArrowDown } from './ArrowDown.vue';
23
25
  export { default as IconArrowUp } from './ArrowUp.vue';
24
26
  export { default as IconReset } from './Reset.vue';
@@ -3,3 +3,4 @@ export declare const fnCheckTDMRole: (role: string) => boolean;
3
3
  export declare const fnCheckQMSRole: (role: string) => boolean;
4
4
  export declare const fnCheckDashRole: (role: string) => boolean;
5
5
  export declare const fnCheckMaintainRole: (role: string) => boolean;
6
+ export declare const fnCheckOrderRole: (role: string) => boolean;
@@ -75,7 +75,7 @@ export interface GSelectPicker extends Omit<Select, 'title' | 'show' | 'multiple
75
75
  export interface GSelect extends Omit<Select, unUse> {
76
76
  type: 'select';
77
77
  multiple?: boolean;
78
- options: Array<SelectOption | SelectGroupOption> | any;
78
+ options: Array<SelectOption | SelectGroupOption> | (() => Promise<[]>) | any;
79
79
  }
80
80
  export type GroupInput = GInput | GInputNumber | GSelect | GDatePicker | GSelectPicker;
81
81
  export interface Group extends Omit<Base, unGroupUse> {