es-application-template 0.0.8 → 0.0.15
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.
- package/CHANGELOG.md +15 -0
- package/README.md +50 -9
- package/dist/api/index.d.ts +14 -0
- package/dist/appearance/core/contrast.d.ts +30 -0
- package/dist/appearance/core/defaults.d.ts +5 -0
- package/dist/appearance/core/grid.d.ts +7 -0
- package/dist/appearance/core/index.d.ts +14 -0
- package/dist/appearance/core/migrate.d.ts +2 -0
- package/dist/appearance/core/options.d.ts +125 -0
- package/dist/appearance/core/presets.d.ts +22 -0
- package/dist/appearance/core/ranges.d.ts +313 -0
- package/dist/appearance/core/runtime.d.ts +4 -0
- package/dist/appearance/core/theme-constants.d.ts +13 -0
- package/dist/appearance/core/theme-presets.d.ts +3 -0
- package/dist/appearance/core/theme-types.d.ts +37 -0
- package/dist/appearance/core/theme-utils.d.ts +8 -0
- package/dist/appearance/core/types.d.ts +231 -0
- package/dist/appearance/core/validate.d.ts +5 -0
- package/dist/appearance/runtime/AppearanceRuntime.d.ts +6 -0
- package/dist/appearance/runtime/bootstrap.d.ts +4 -0
- package/dist/components/sidebar/index.d.ts +1 -0
- package/dist/config/config-document.d.ts +3 -2
- package/dist/config/use-runtime-config.d.ts +2 -1
- package/dist/config/use-runtime-identity.d.ts +1 -0
- package/dist/domain/constants/index.d.ts +8 -0
- package/dist/index.js +5463 -1155
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +5474 -1170
- package/dist/index.mjs.map +1 -1
- package/dist/management/appearance/appearance-mode-control.d.ts +8 -0
- package/dist/management/appearance/appearance-number-field.d.ts +15 -0
- package/dist/management/appearance/appearance-preview.d.ts +12 -0
- package/dist/management/appearance/appearance-primitives.d.ts +95 -0
- package/dist/management/appearance/appearance-theme-library.d.ts +22 -0
- package/dist/management/appearance/appearance-theme-modal.d.ts +27 -0
- package/dist/management/appearance/appearance-workspace.d.ts +16 -0
- package/dist/management/appearance/index.d.ts +3 -0
- package/dist/management/appearance/use-appearance-theme-library.d.ts +25 -0
- package/dist/management/setting-keys/config-tree/setting-key-convention.d.ts +56 -0
- package/dist/package/index.d.ts +6 -1
- package/dist/styles/index.css +4696 -233
- package/package.json +3 -3
- package/dist/index.cjs +0 -6743
- package/dist/index.cjs.map +0 -1
- package/dist/styles.css +0 -438
- package/dist/styles.css.map +0 -1
- package/dist/views/es-application-template/management/setting-keys/config-tree/ConfigTreeGridEditor.d.ts +0 -14
- package/dist/views/es-application-template/management/setting-keys/config-tree/TreeSelect.d.ts +0 -10
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { AppearanceConfig } from './types';
|
|
2
|
+
export declare const resolveDarkMode: (theme: AppearanceConfig["colors"]["theme"]) => boolean;
|
|
3
|
+
export declare const applyAppearanceTheme: (input: AppearanceConfig, darkMode: boolean) => AppearanceConfig;
|
|
4
|
+
export declare const resetAppearanceTheme: () => AppearanceConfig;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
export declare const APPEARANCE_CONFIG_CODE = "SYSTEM_SETTING_APPEARANCE";
|
|
2
|
+
export declare const APPEARANCE_THEME_CONFIG_PREFIX = "SYSTEM_SETTING_APPEARANCE_THEME_";
|
|
3
|
+
export declare const APPEARANCE_THEME_SCHEMA_VERSION = 2;
|
|
4
|
+
export declare const APPEARANCE_THEME_KEYS: {
|
|
5
|
+
readonly BECOXY_ORANGE: "BECOXY_ORANGE";
|
|
6
|
+
readonly CORPORATE_BLUE: "CORPORATE_BLUE";
|
|
7
|
+
readonly INDIGO_MODERN: "INDIGO_MODERN";
|
|
8
|
+
readonly EMERALD_OPERATIONS: "EMERALD_OPERATIONS";
|
|
9
|
+
readonly SLATE_MINIMAL: "SLATE_MINIMAL";
|
|
10
|
+
};
|
|
11
|
+
export declare const normalizeAppearanceThemeKey: (value: string) => string;
|
|
12
|
+
export declare const getAppearanceThemeConfigCode: (themeKey: string) => string;
|
|
13
|
+
export declare const getAppearanceThemeKeyFromCode: (code?: string | null) => string;
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { AppearanceConfig } from './types';
|
|
2
|
+
export type AppearanceThemeLayout = Pick<AppearanceConfig['layout'], 'sidebarWidth' | 'collapsedWidth' | 'navbarHeight' | 'footerHeight' | 'contentPadding' | 'gutter' | 'sectionGap' | 'compact'>;
|
|
3
|
+
export type AppearanceThemeNavigation = Pick<AppearanceConfig['navigation'], 'showIcons' | 'showGroupTitle' | 'searchable' | 'itemHeight' | 'indent' | 'groupSpacing' | 'iconSize' | 'activeRadius' | 'activeStyle'>;
|
|
4
|
+
export type AppearanceThemeAccessibility = Pick<AppearanceConfig['other'], 'reduceMotion' | 'highContrast' | 'focusOutline' | 'largeText' | 'showTooltips' | 'scrollbar'>;
|
|
5
|
+
export type AppearanceThemeConfig = {
|
|
6
|
+
colors: AppearanceConfig['colors'];
|
|
7
|
+
darkColors: AppearanceConfig['darkColors'];
|
|
8
|
+
typography: AppearanceConfig['typography'];
|
|
9
|
+
components: AppearanceConfig['components'];
|
|
10
|
+
grid: AppearanceConfig['grid'];
|
|
11
|
+
layout: AppearanceThemeLayout;
|
|
12
|
+
navigation: AppearanceThemeNavigation;
|
|
13
|
+
accessibility: AppearanceThemeAccessibility;
|
|
14
|
+
};
|
|
15
|
+
export type AppearanceThemeValue = {
|
|
16
|
+
themeSchemaVersion: number;
|
|
17
|
+
appearanceSchemaVersion: number;
|
|
18
|
+
baseThemeKey?: string;
|
|
19
|
+
config: AppearanceThemeConfig;
|
|
20
|
+
};
|
|
21
|
+
export type AppearanceThemeKind = 'built-in' | 'custom';
|
|
22
|
+
export type AppearanceThemeRecord = {
|
|
23
|
+
key: string;
|
|
24
|
+
code: string;
|
|
25
|
+
name: string;
|
|
26
|
+
description?: string;
|
|
27
|
+
kind: AppearanceThemeKind;
|
|
28
|
+
builtIn: boolean;
|
|
29
|
+
overridden: boolean;
|
|
30
|
+
configId?: string;
|
|
31
|
+
displayOrder: number;
|
|
32
|
+
createdByName?: string;
|
|
33
|
+
createdDate?: string;
|
|
34
|
+
updatedByName?: string;
|
|
35
|
+
updatedDate?: string;
|
|
36
|
+
value: AppearanceThemeValue;
|
|
37
|
+
};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { AppearanceThemeConfig, AppearanceThemeValue } from './theme-types';
|
|
2
|
+
import { AppearanceConfig } from './types';
|
|
3
|
+
export declare const extractAppearanceThemeConfig: (appearance: AppearanceConfig) => AppearanceThemeConfig;
|
|
4
|
+
export declare const createAppearanceThemeValue: (appearance: AppearanceConfig, baseThemeKey?: string) => AppearanceThemeValue;
|
|
5
|
+
export declare const applyAppearanceThemeConfig: (currentAppearance: AppearanceConfig, themeConfig: AppearanceThemeConfig, sourceThemeKey?: string) => AppearanceConfig;
|
|
6
|
+
export declare const appearanceFromThemeValue: (theme: AppearanceThemeValue) => AppearanceConfig;
|
|
7
|
+
export declare const appearanceThemeConfigEquals: (appearance: AppearanceConfig, themeConfig: AppearanceThemeConfig) => boolean;
|
|
8
|
+
export declare const normalizeAppearanceThemeValue: (input: unknown) => AppearanceThemeValue | null;
|
|
@@ -0,0 +1,231 @@
|
|
|
1
|
+
export type AppearanceMode = 'light' | 'dark' | 'auto';
|
|
2
|
+
export type AppearanceShadow = 'none' | 'light' | 'medium';
|
|
3
|
+
export type AppearanceDropdownShadow = 'light' | 'medium' | 'strong';
|
|
4
|
+
export type NavigationActiveStyle = 'soft-background' | 'left-border' | 'text-only';
|
|
5
|
+
export type AppearanceGridLineMode = 'both' | 'horizontal' | 'vertical' | 'none';
|
|
6
|
+
export type AppearanceGridShadow = 'none' | 'light' | 'medium' | 'strong';
|
|
7
|
+
export type AppearanceGridColorMode = 'default' | 'theme' | 'custom';
|
|
8
|
+
export interface AppearanceGridPalette {
|
|
9
|
+
background: string;
|
|
10
|
+
text: string;
|
|
11
|
+
headerBackground: string;
|
|
12
|
+
headerText: string;
|
|
13
|
+
stripedBackground: string;
|
|
14
|
+
hoverBackground: string;
|
|
15
|
+
selectedBackground: string;
|
|
16
|
+
selectedText: string;
|
|
17
|
+
activeCellBackground: string;
|
|
18
|
+
border: string;
|
|
19
|
+
groupBackground: string;
|
|
20
|
+
groupText: string;
|
|
21
|
+
footerBackground: string;
|
|
22
|
+
footerText: string;
|
|
23
|
+
}
|
|
24
|
+
export interface AppearanceGridColors {
|
|
25
|
+
mode: AppearanceGridColorMode;
|
|
26
|
+
light: Partial<AppearanceGridPalette>;
|
|
27
|
+
dark: Partial<AppearanceGridPalette>;
|
|
28
|
+
}
|
|
29
|
+
export interface AppearanceGrid {
|
|
30
|
+
fontSize: number;
|
|
31
|
+
rowHeight: number;
|
|
32
|
+
headerHeight: number;
|
|
33
|
+
cellPaddingX: number;
|
|
34
|
+
cellPaddingY: number;
|
|
35
|
+
headerPaddingX: number;
|
|
36
|
+
headerPaddingY: number;
|
|
37
|
+
headerFontWeight: number;
|
|
38
|
+
pagerHeight: number;
|
|
39
|
+
lineMode: AppearanceGridLineMode;
|
|
40
|
+
borderWidth: number;
|
|
41
|
+
radius: number;
|
|
42
|
+
shadow: AppearanceGridShadow;
|
|
43
|
+
striped: boolean;
|
|
44
|
+
hover: boolean;
|
|
45
|
+
colors: AppearanceGridColors;
|
|
46
|
+
}
|
|
47
|
+
export interface AppearanceColors {
|
|
48
|
+
theme: AppearanceMode;
|
|
49
|
+
primary: string;
|
|
50
|
+
brandAccent: string;
|
|
51
|
+
secondary: string;
|
|
52
|
+
success: string;
|
|
53
|
+
warning: string;
|
|
54
|
+
danger: string;
|
|
55
|
+
info: string;
|
|
56
|
+
background: string;
|
|
57
|
+
surface: string;
|
|
58
|
+
surfaceSecondary: string;
|
|
59
|
+
textPrimary: string;
|
|
60
|
+
headingText: string;
|
|
61
|
+
textSecondary: string;
|
|
62
|
+
mutedText: string;
|
|
63
|
+
placeholderText: string;
|
|
64
|
+
border: string;
|
|
65
|
+
inputBorder: string;
|
|
66
|
+
hoverBackground: string;
|
|
67
|
+
activeBackground: string;
|
|
68
|
+
disabledBackground: string;
|
|
69
|
+
navbarBackground: string;
|
|
70
|
+
navbarText: string;
|
|
71
|
+
sidebarBackground: string;
|
|
72
|
+
sidebarText: string;
|
|
73
|
+
sidebarMutedText: string;
|
|
74
|
+
linkColor: string;
|
|
75
|
+
scrollbarThumb: string;
|
|
76
|
+
scrollbarTrack: string;
|
|
77
|
+
}
|
|
78
|
+
export interface AppearanceDarkColors {
|
|
79
|
+
background: string;
|
|
80
|
+
surface: string;
|
|
81
|
+
surfaceSecondary: string;
|
|
82
|
+
textPrimary: string;
|
|
83
|
+
headingText: string;
|
|
84
|
+
textSecondary: string;
|
|
85
|
+
mutedText: string;
|
|
86
|
+
placeholderText: string;
|
|
87
|
+
border: string;
|
|
88
|
+
inputBorder: string;
|
|
89
|
+
hoverBackground: string;
|
|
90
|
+
activeBackground: string;
|
|
91
|
+
disabledBackground: string;
|
|
92
|
+
navbarBackground: string;
|
|
93
|
+
navbarText: string;
|
|
94
|
+
sidebarBackground: string;
|
|
95
|
+
sidebarText: string;
|
|
96
|
+
sidebarMutedText: string;
|
|
97
|
+
linkColor: string;
|
|
98
|
+
scrollbarThumb: string;
|
|
99
|
+
scrollbarTrack: string;
|
|
100
|
+
}
|
|
101
|
+
export interface AppearanceTypography {
|
|
102
|
+
fontFamily: string;
|
|
103
|
+
baseFontSize: number;
|
|
104
|
+
baseLineHeight: number;
|
|
105
|
+
bodyFontWeight: number;
|
|
106
|
+
pageTitleSize: number;
|
|
107
|
+
pageTitleWeight: number;
|
|
108
|
+
sectionTitleSize: number;
|
|
109
|
+
sectionTitleWeight: number;
|
|
110
|
+
cardTitleSize: number;
|
|
111
|
+
cardTitleWeight: number;
|
|
112
|
+
menuFontSize: number;
|
|
113
|
+
menuFontWeight: number;
|
|
114
|
+
formLabelSize: number;
|
|
115
|
+
formLabelWeight: number;
|
|
116
|
+
smallFontSize: number;
|
|
117
|
+
letterSpacing: number;
|
|
118
|
+
}
|
|
119
|
+
export interface AppearanceComponents {
|
|
120
|
+
controlHeight: number;
|
|
121
|
+
buttonHeight: number;
|
|
122
|
+
buttonRadius: number;
|
|
123
|
+
inputRadius: number;
|
|
124
|
+
cardRadius: number;
|
|
125
|
+
modalRadius: number;
|
|
126
|
+
dropdownRadius: number;
|
|
127
|
+
buttonPaddingX: number;
|
|
128
|
+
cardPadding: number;
|
|
129
|
+
cardGap: number;
|
|
130
|
+
cardShadow: AppearanceShadow;
|
|
131
|
+
dropdownShadow: AppearanceDropdownShadow;
|
|
132
|
+
focusRingSize: number;
|
|
133
|
+
transitionDuration: number;
|
|
134
|
+
tabHeight: number;
|
|
135
|
+
tabRadius: number;
|
|
136
|
+
checkboxSize: number;
|
|
137
|
+
switchHeight: number;
|
|
138
|
+
}
|
|
139
|
+
export interface AppearanceLayout {
|
|
140
|
+
main: string;
|
|
141
|
+
contentWidth: string;
|
|
142
|
+
sidebarWidth: number;
|
|
143
|
+
collapsedWidth: number;
|
|
144
|
+
navbarHeight: number;
|
|
145
|
+
footerHeight: number;
|
|
146
|
+
contentPadding: number;
|
|
147
|
+
gutter: number;
|
|
148
|
+
sectionGap: number;
|
|
149
|
+
stickyNavbar: boolean;
|
|
150
|
+
stickySidebar: boolean;
|
|
151
|
+
breadcrumb: boolean;
|
|
152
|
+
pageHeader: boolean;
|
|
153
|
+
compact: boolean;
|
|
154
|
+
}
|
|
155
|
+
export interface AppearanceNavigation {
|
|
156
|
+
viewMode: 'layout-3' | 'layout-1' | 'layout-5';
|
|
157
|
+
showIcons: boolean;
|
|
158
|
+
showGroupTitle: boolean;
|
|
159
|
+
accordion: boolean;
|
|
160
|
+
rememberOpen: boolean;
|
|
161
|
+
searchable: boolean;
|
|
162
|
+
showFavorites: boolean;
|
|
163
|
+
itemHeight: number;
|
|
164
|
+
indent: number;
|
|
165
|
+
groupSpacing: number;
|
|
166
|
+
iconSize: number;
|
|
167
|
+
activeRadius: number;
|
|
168
|
+
activeStyle: NavigationActiveStyle;
|
|
169
|
+
}
|
|
170
|
+
export interface AppearanceLogos {
|
|
171
|
+
showTagline: boolean;
|
|
172
|
+
position: string;
|
|
173
|
+
headerSize: string;
|
|
174
|
+
menuGap: string;
|
|
175
|
+
hoverEffect: string;
|
|
176
|
+
}
|
|
177
|
+
export interface AppearanceLoginPage {
|
|
178
|
+
style: string;
|
|
179
|
+
showModules: boolean;
|
|
180
|
+
showFeatures: boolean;
|
|
181
|
+
showFooter: boolean;
|
|
182
|
+
showLanguage: boolean;
|
|
183
|
+
showTheme: boolean;
|
|
184
|
+
title: string;
|
|
185
|
+
subtitle: string;
|
|
186
|
+
cardPosition: string;
|
|
187
|
+
overlay: string;
|
|
188
|
+
blur: string;
|
|
189
|
+
}
|
|
190
|
+
export interface AppearanceEmail {
|
|
191
|
+
headerColor: string;
|
|
192
|
+
footerColor: string;
|
|
193
|
+
textColor: string;
|
|
194
|
+
linkColor: string;
|
|
195
|
+
buttonRadius: string;
|
|
196
|
+
documentHeader: boolean;
|
|
197
|
+
documentFooter: boolean;
|
|
198
|
+
watermark: boolean;
|
|
199
|
+
signature: string;
|
|
200
|
+
pageSize: string;
|
|
201
|
+
margin: string;
|
|
202
|
+
}
|
|
203
|
+
export interface AppearanceOther {
|
|
204
|
+
reduceMotion: boolean;
|
|
205
|
+
highContrast: boolean;
|
|
206
|
+
focusOutline: boolean;
|
|
207
|
+
largeText: boolean;
|
|
208
|
+
showTooltips: boolean;
|
|
209
|
+
animationSpeed: string;
|
|
210
|
+
scrollbar: 'Mảnh' | 'Mặc định' | 'Ẩn';
|
|
211
|
+
iconSet: string;
|
|
212
|
+
}
|
|
213
|
+
export interface AppearanceThemeMeta {
|
|
214
|
+
sourceThemeKey?: string;
|
|
215
|
+
}
|
|
216
|
+
export interface AppearanceConfig extends Record<string, unknown> {
|
|
217
|
+
schemaVersion: number;
|
|
218
|
+
themeMeta?: AppearanceThemeMeta;
|
|
219
|
+
colors: AppearanceColors;
|
|
220
|
+
darkColors: AppearanceDarkColors;
|
|
221
|
+
typography: AppearanceTypography;
|
|
222
|
+
components: AppearanceComponents;
|
|
223
|
+
grid: AppearanceGrid;
|
|
224
|
+
layout: AppearanceLayout;
|
|
225
|
+
navigation: AppearanceNavigation;
|
|
226
|
+
logos: AppearanceLogos;
|
|
227
|
+
loginPage: AppearanceLoginPage;
|
|
228
|
+
email: AppearanceEmail;
|
|
229
|
+
other: AppearanceOther;
|
|
230
|
+
}
|
|
231
|
+
export type AppearanceValidationErrors = Record<string, string>;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { AppearanceConfig, AppearanceValidationErrors } from './types';
|
|
2
|
+
export declare const normalizeAppearanceConfig: (input: unknown) => AppearanceConfig;
|
|
3
|
+
export declare const validateAppearanceConfig: (input: unknown) => AppearanceValidationErrors;
|
|
4
|
+
/** Read persisted JSON before defaults can mask its original schemaVersion. */
|
|
5
|
+
export declare const deserializeAppearanceConfig: (serialized?: string | null) => AppearanceConfig;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { ReactNode } from 'react';
|
|
2
|
+
import { AppearanceConfig } from '../core/types';
|
|
3
|
+
export declare const useAppearance: () => AppearanceConfig;
|
|
4
|
+
export declare const AppearanceRuntime: ({ children }: {
|
|
5
|
+
children: ReactNode;
|
|
6
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { AppearanceConfig } from '../core/types';
|
|
2
|
+
export declare const APPEARANCE_CONFIG_CODE = "SYSTEM_SETTING_APPEARANCE";
|
|
3
|
+
/** Must run before createRoot. Uses last-known-good values without waiting for React/API. */
|
|
4
|
+
export declare const bootstrapAppearance: () => AppearanceConfig;
|
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
import { ConfigCachePolicyName } from './config-cache';
|
|
2
|
-
type UseConfigDocumentOptions = {
|
|
2
|
+
type UseConfigDocumentOptions<T> = {
|
|
3
|
+
deserialize?: (serialized?: string | null) => T;
|
|
3
4
|
productCode?: string | null;
|
|
4
5
|
userId?: string | null;
|
|
5
6
|
policy?: ConfigCachePolicyName;
|
|
6
7
|
enabled?: boolean;
|
|
7
8
|
};
|
|
8
|
-
export declare const useConfigDocument: <T extends Record<string, unknown>>(code: string, defaults: T, name?: string, normalize?: (value: T) => T, options?: UseConfigDocumentOptions) => {
|
|
9
|
+
export declare const useConfigDocument: <T extends Record<string, unknown>>(code: string, defaults: T, name?: string, normalize?: (value: T) => T, options?: UseConfigDocumentOptions<T>) => {
|
|
9
10
|
value: T;
|
|
10
11
|
setValue: (next: T) => void;
|
|
11
12
|
patch: <K extends keyof T>(key: K, next: T[K]) => void;
|
|
@@ -6,9 +6,10 @@ type UseRuntimeConfigOptions<T> = {
|
|
|
6
6
|
identity: IConfigIdentity;
|
|
7
7
|
policy: ConfigCachePolicyName;
|
|
8
8
|
normalize?: (value: T) => T;
|
|
9
|
+
deserialize?: (serialized?: string | null) => T;
|
|
9
10
|
enabled?: boolean;
|
|
10
11
|
};
|
|
11
|
-
export declare const useRuntimeConfig: <T extends Record<string, unknown>>({ code, defaults, identity, policy, normalize, enabled }: UseRuntimeConfigOptions<T>) => {
|
|
12
|
+
export declare const useRuntimeConfig: <T extends Record<string, unknown>>({ code, defaults, identity, policy, normalize, deserialize, enabled }: UseRuntimeConfigOptions<T>) => {
|
|
12
13
|
value: T;
|
|
13
14
|
ready: boolean;
|
|
14
15
|
config: IConfig;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const useRuntimeConfigIdentity: () => import("../domain/models/IConfig").IConfigIdentity;
|
|
@@ -1,4 +1,10 @@
|
|
|
1
1
|
export declare const BASE_URL: string;
|
|
2
|
+
export declare const CDN_URL_VIEW: string;
|
|
3
|
+
export declare const UPLOADFILE: {
|
|
4
|
+
URL_API: {
|
|
5
|
+
UPLOAD_IMAGE_API: string;
|
|
6
|
+
};
|
|
7
|
+
};
|
|
2
8
|
export declare const PRODUCTDEPLOY: {
|
|
3
9
|
URL_API: {
|
|
4
10
|
GET_RESOURCE_API: string;
|
|
@@ -7,11 +13,13 @@ export declare const PRODUCTDEPLOY: {
|
|
|
7
13
|
export declare const CONFIG: {
|
|
8
14
|
ACTION_TYPES: {
|
|
9
15
|
GET_BY_CODE: string;
|
|
16
|
+
GET_PAGING: string;
|
|
10
17
|
UPDATE: string;
|
|
11
18
|
DELETE: string;
|
|
12
19
|
};
|
|
13
20
|
URL_API: {
|
|
14
21
|
GET_BY_CODE_API: string;
|
|
22
|
+
GET_PAGING_API: string;
|
|
15
23
|
UPDATE_API: string;
|
|
16
24
|
DELETE_API: string;
|
|
17
25
|
};
|