@jsg-developer/vue-pack 0.0.2 → 0.0.3

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.
@@ -6,6 +6,7 @@ type __VLS_Props = {
6
6
  errors: Errors;
7
7
  isUpdate?: boolean;
8
8
  lang: SupportedLanguage;
9
+ demo?: boolean;
9
10
  };
10
11
  declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
11
12
  "push:errors": (message: string, key: string) => any;
@@ -7,5 +7,7 @@ declare const _default: import('vue').DefineComponent<FromModalProps, {}, {}, {}
7
7
  onSubmit?: ((value: Record<string, any>) => any) | undefined;
8
8
  onCancel?: (() => any) | undefined;
9
9
  onDataChildRemove?: ((value: number[]) => any) | undefined;
10
- }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
10
+ }>, {
11
+ demo: boolean;
12
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
11
13
  export default _default;
@@ -1,5 +1,5 @@
1
1
  import { Alert } from '../UI/Feedback/AlertApp.vue';
2
- import { FormData, TabelDataProperty, Item } from '../../configs/types';
2
+ import { FormData, TabelDataProperty, Item, CustomAction } from '../../configs/types';
3
3
  type __VLS_Props = TabelDataProperty<Item>;
4
4
  declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
5
5
  create: () => any;
@@ -8,6 +8,10 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
8
8
  edit: (value: FormData, id: string | number) => any;
9
9
  show: (value: FormData, id: string | number) => any;
10
10
  refreshData: () => any;
11
+ customAction: (payload: {
12
+ key: string;
13
+ item: Item;
14
+ }) => any;
11
15
  }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
12
16
  onCreate?: (() => any) | undefined;
13
17
  onDelete?: ((value: number) => any) | undefined;
@@ -15,9 +19,15 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
15
19
  onEdit?: ((value: FormData, id: string | number) => any) | undefined;
16
20
  onShow?: ((value: FormData, id: string | number) => any) | undefined;
17
21
  onRefreshData?: (() => any) | undefined;
22
+ onCustomAction?: ((payload: {
23
+ key: string;
24
+ item: Item;
25
+ }) => any) | undefined;
18
26
  }>, {
19
27
  keys: import('../..').DataKeyConfig;
28
+ demo: boolean;
20
29
  validation: import('../..').TabelValidationSchema<Item>;
30
+ customActions: CustomAction[];
21
31
  feature: import('../..').TabelFeatureToggles;
22
32
  pagination: import('../..').TabelPagination;
23
33
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
@@ -5,6 +5,7 @@ declare const _default: import('vue').DefineComponent<SelectDropdownProps, {}, {
5
5
  "onUpdate:modelValue"?: ((value: string | number, key: string) => any) | undefined;
6
6
  }>, {
7
7
  id: string;
8
+ demo: boolean;
8
9
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
9
10
  loader: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{
10
11
  onError?: (() => any) | undefined;
@@ -51,6 +51,7 @@ export interface SelectDropdownProps {
51
51
  submitOption?: SubmitAuthOptionMap<Item>;
52
52
  keys?: DataKeyConfig;
53
53
  };
54
+ demo?: boolean;
54
55
  lang?: SupportedLanguage;
55
56
  }
56
57
  export interface TextInputProps {
@@ -338,6 +339,7 @@ export interface FromModalProps {
338
339
  schema: Schema;
339
340
  isUpdate?: boolean;
340
341
  lang?: SupportedLanguage;
342
+ demo?: boolean;
341
343
  }
342
344
  export interface ColorPickerProps {
343
345
  id?: string;
@@ -12,6 +12,7 @@ export interface SubmitOptions<T> {
12
12
  mode: SubmitMode;
13
13
  db?: string;
14
14
  deleteDataDB?: boolean;
15
+ demo?: boolean;
15
16
  authType: 'cookie' | 'bearer' | 'none' | 'custom';
16
17
  token?: string;
17
18
  customHeaders?: Record<string, string>;
@@ -111,15 +111,23 @@ export interface TabelEndpoints {
111
111
  delete?: string;
112
112
  deleteMany?: string;
113
113
  }
114
+ export interface CustomAction {
115
+ key: string;
116
+ label: string;
117
+ icon?: string;
118
+ class?: string;
119
+ }
114
120
  export interface TabelSharedConfig<Item> {
115
121
  keys?: DataKeyConfig;
116
122
  formDesign?: FormDesign;
117
123
  submitOption?: SubmitAuthOptionMap<Item>;
124
+ customActions?: CustomAction[];
118
125
  feature?: TabelFeatureToggles;
119
126
  pagination?: TabelPagination;
120
127
  validation?: TabelValidationSchema<Item>;
121
128
  manual?: TabelManualControl;
122
129
  endPoints?: TabelEndpoints;
130
+ demo?: boolean;
123
131
  }
124
132
  export interface TabelDataProperty<Item> extends TabelSharedConfig<Item> {
125
133
  base: Omit<BaseConfig<Item>, 'data'>;