@isi-ui7/bos7-shared 0.2.0
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/dist/api.d.ts +4 -0
- package/dist/auth7/client.d.ts +26 -0
- package/dist/auth7/delegated-proxy.d.ts +33 -0
- package/dist/auth7/hooks/useAuth.d.ts +10 -0
- package/dist/auth7/hooks/useSession.d.ts +12 -0
- package/dist/auth7/index.d.ts +12 -0
- package/dist/auth7/provider.d.ts +13 -0
- package/dist/auth7/scope-guard.d.ts +5 -0
- package/dist/auth7/service-account.d.ts +2 -0
- package/dist/auth7/token-exchange.d.ts +11 -0
- package/dist/auth7/types.d.ts +63 -0
- package/dist/backend.d.ts +20 -0
- package/dist/crud-components.d.ts +47 -0
- package/dist/crud-hooks.d.ts +15 -0
- package/dist/crud-types.d.ts +86 -0
- package/dist/data-table/cursor-adapter.d.ts +74 -0
- package/dist/event-bus/index.d.ts +20 -0
- package/dist/event-bus/useEventBus.d.ts +21 -0
- package/dist/event-bus.d.ts +1 -0
- package/dist/export.d.ts +7 -0
- package/dist/form-layout.d.ts +39 -0
- package/dist/form-numeric.d.ts +35 -0
- package/dist/form-renderer-utils.d.ts +10 -0
- package/dist/form-renderer.d.ts +18 -0
- package/dist/form-rules.d.ts +12 -0
- package/dist/form-types.d.ts +130 -0
- package/dist/html2canvas.esm-d2sM-0Wm.js +4870 -0
- package/dist/i18n.d.ts +35 -0
- package/dist/index.d.ts +18 -0
- package/dist/index.es-Bylk5fh-.js +5649 -0
- package/dist/index.js +20779 -0
- package/dist/jspdf.es.min-Dzm5j8wC.js +9977 -0
- package/dist/jspdf.plugin.autotable-DcntYaes.js +1078 -0
- package/dist/modal-layout.d.ts +45 -0
- package/dist/nats/client.d.ts +54 -0
- package/dist/notif7.d.ts +21 -0
- package/dist/notification/routing.d.ts +4 -0
- package/dist/notifications-bff.d.ts +22 -0
- package/dist/observability/otel-init.d.ts +1 -0
- package/dist/page-layout.d.ts +24 -0
- package/dist/purify.es-CiEWEeUM.js +605 -0
- package/dist/shell/app-shell-layout.d.ts +70 -0
- package/dist/shell/branch.d.ts +6 -0
- package/dist/shell/interaction.d.ts +2 -0
- package/dist/shell/provider.d.ts +15 -0
- package/dist/style-contract.d.ts +72 -0
- package/dist/types/core.d.ts +39 -0
- package/dist/types/notification.d.ts +30 -0
- package/dist/workflow/api-client.d.ts +2 -0
- package/dist/workflow/backend.d.ts +9 -0
- package/dist/workflow/crud-client.d.ts +3 -0
- package/dist/workflow/notif7.d.ts +6 -0
- package/dist/workflow/starter.d.ts +44 -0
- package/dist/workflow/use-crud-form.d.ts +27 -0
- package/dist/workflow/use-workflow-tracker.d.ts +40 -0
- package/package.json +92 -0
- package/src/api.ts +40 -0
- package/src/auth7/client.ts +248 -0
- package/src/auth7/delegated-proxy.ts +80 -0
- package/src/auth7/hooks/useAuth.ts +21 -0
- package/src/auth7/hooks/useSession.ts +75 -0
- package/src/auth7/index.ts +14 -0
- package/src/auth7/provider.tsx +256 -0
- package/src/auth7/scope-guard.ts +54 -0
- package/src/auth7/service-account.ts +71 -0
- package/src/auth7/token-exchange.ts +125 -0
- package/src/auth7/types.ts +72 -0
- package/src/backend.ts +96 -0
- package/src/crud-components.tsx +580 -0
- package/src/crud-hooks.test.ts +32 -0
- package/src/crud-hooks.ts +31 -0
- package/src/crud-types.ts +64 -0
- package/src/data-table/cursor-adapter.ts +239 -0
- package/src/event-bus/index.ts +90 -0
- package/src/event-bus/useEventBus.ts +93 -0
- package/src/event-bus.ts +1 -0
- package/src/export.ts +62 -0
- package/src/form-contract.css +52 -0
- package/src/form-layout.tsx +90 -0
- package/src/form-numeric.ts +173 -0
- package/src/form-renderer-utils.ts +139 -0
- package/src/form-renderer.tsx +624 -0
- package/src/form-rules.ts +54 -0
- package/src/form-types.ts +126 -0
- package/src/i18n.tsx +92 -0
- package/src/index.ts +20 -0
- package/src/modal-layout.tsx +60 -0
- package/src/nats/client.ts +130 -0
- package/src/notif7.ts +76 -0
- package/src/notification/routing.ts +64 -0
- package/src/notifications-bff.ts +273 -0
- package/src/observability/otel-init.ts +41 -0
- package/src/page-layout.tsx +69 -0
- package/src/shell/app-shell-layout.tsx +494 -0
- package/src/shell/branch.ts +48 -0
- package/src/shell/interaction.ts +17 -0
- package/src/shell/provider.tsx +34 -0
- package/src/style-contract.test.ts +59 -0
- package/src/style-contract.ts +132 -0
- package/src/types/core.ts +46 -0
- package/src/types/notification.ts +35 -0
- package/src/workflow/api-client.ts +7 -0
- package/src/workflow/backend.ts +53 -0
- package/src/workflow/crud-client.ts +43 -0
- package/src/workflow/notif7.ts +28 -0
- package/src/workflow/starter.ts +153 -0
- package/src/workflow/use-crud-form.ts +176 -0
- package/src/workflow/use-workflow-tracker.ts +109 -0
package/dist/i18n.d.ts
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
export type BosSharedLabels = {
|
|
2
|
+
validRequired: (fieldLabel: string) => string;
|
|
3
|
+
validMinLength: (n: number) => string;
|
|
4
|
+
validMaxLength: (n: number) => string;
|
|
5
|
+
validMin: (n: number) => string;
|
|
6
|
+
validMax: (n: number) => string;
|
|
7
|
+
validPattern: string;
|
|
8
|
+
validationError: string;
|
|
9
|
+
ruleEmail: string;
|
|
10
|
+
ruleUrl: string;
|
|
11
|
+
ruleNik: string;
|
|
12
|
+
ruleKodePos: string;
|
|
13
|
+
rulePhone: string;
|
|
14
|
+
boolYes: string;
|
|
15
|
+
boolNo: string;
|
|
16
|
+
toggleOn: string;
|
|
17
|
+
toggleOff: string;
|
|
18
|
+
emptyValue: string;
|
|
19
|
+
loading: string;
|
|
20
|
+
saving: string;
|
|
21
|
+
errorTitle: string;
|
|
22
|
+
close: string;
|
|
23
|
+
cancel: string;
|
|
24
|
+
prev: string;
|
|
25
|
+
next: string;
|
|
26
|
+
subtitleCreate: string;
|
|
27
|
+
subtitleEdit: string;
|
|
28
|
+
subtitleView: string;
|
|
29
|
+
submitCreate: string;
|
|
30
|
+
submitEdit: string;
|
|
31
|
+
deleteTitle: string;
|
|
32
|
+
deleteDescription: string;
|
|
33
|
+
deleteConfirm: string;
|
|
34
|
+
};
|
|
35
|
+
export declare function useBosSharedI18n(): BosSharedLabels;
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
export * from './auth7';
|
|
2
|
+
export * from './page-layout';
|
|
3
|
+
export * from './backend';
|
|
4
|
+
export * from './export';
|
|
5
|
+
export * from './api';
|
|
6
|
+
export * from './types/core';
|
|
7
|
+
export * from './types/notification';
|
|
8
|
+
export * from './nats/client';
|
|
9
|
+
export * from './event-bus';
|
|
10
|
+
export * from './notification/routing';
|
|
11
|
+
export * from './style-contract';
|
|
12
|
+
export * from './shell/provider';
|
|
13
|
+
export * from './shell/app-shell-layout';
|
|
14
|
+
export * from './notifications-bff';
|
|
15
|
+
export * from './crud-types';
|
|
16
|
+
export * from './crud-hooks';
|
|
17
|
+
export * from './form-types';
|
|
18
|
+
export * from './i18n';
|