@dovetail-v2/refine 0.0.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/README.MD +49 -0
- package/dist/MonacoYamlDiffEditor.15cce01f.js +54 -0
- package/dist/assets/yaml.worker.bb17811d.js +39447 -0
- package/dist/favicon.ico +0 -0
- package/dist/images/flags/de.svg +1 -0
- package/dist/images/flags/en.svg +1 -0
- package/dist/index.cbb145c9.js +9820 -0
- package/dist/locales/de/common.json +167 -0
- package/dist/locales/en/common.json +167 -0
- package/dist/refine.js +30 -0
- package/dist/refine.umd.cjs +9874 -0
- package/dist/style.css +32634 -0
- package/lib/src/App.d.ts +6 -0
- package/lib/src/Dovetail.d.ts +10 -0
- package/lib/src/components/Breadcrumb/index.d.ts +6 -0
- package/lib/src/components/ConditionsTable/ConditionsTable.d.ts +7 -0
- package/lib/src/components/ConditionsTable/index.d.ts +1 -0
- package/lib/src/components/CreateButton/index.d.ts +2 -0
- package/lib/src/components/CronJobDropdown/index.d.ts +7 -0
- package/lib/src/components/CronjobJobsTable/index.d.ts +7 -0
- package/lib/src/components/DeleteButton/index.d.ts +2 -0
- package/lib/src/components/DeleteManyButton/index.d.ts +4 -0
- package/lib/src/components/DrawerShow/DrawerShow.d.ts +10 -0
- package/lib/src/components/DrawerShow/index.d.ts +1 -0
- package/lib/src/components/EditButton/index.d.ts +2 -0
- package/lib/src/components/Form/KeyValueListWidget.d.ts +6 -0
- package/lib/src/components/Form/MetadataForm.d.ts +2 -0
- package/lib/src/components/Form/NameInputWidget.d.ts +51 -0
- package/lib/src/components/Form/NamespaceSelectWidget.d.ts +9 -0
- package/lib/src/components/Form/index.d.ts +4 -0
- package/lib/src/components/Form/widget.d.ts +5 -0
- package/lib/src/components/FormLayout/index.d.ts +3 -0
- package/lib/src/components/ImageNames/index.d.ts +4 -0
- package/lib/src/components/K8sDropdown/index.d.ts +7 -0
- package/lib/src/components/KeyValue/KeyValue.d.ts +6 -0
- package/lib/src/components/KeyValue/index.d.ts +1 -0
- package/lib/src/components/Layout/index.d.ts +3 -0
- package/lib/src/components/ListPage/index.d.ts +10 -0
- package/lib/src/components/Menu/index.d.ts +2 -0
- package/lib/src/components/NamespacesFilter/index.d.ts +7 -0
- package/lib/src/components/PageShow/PageShow.d.ts +13 -0
- package/lib/src/components/PageShow/index.d.ts +1 -0
- package/lib/src/components/PodContainersTable/PodContainersTable.d.ts +8 -0
- package/lib/src/components/PodContainersTable/index.d.ts +1 -0
- package/lib/src/components/ResourceCRUD/ResourceCRUD.d.ts +8 -0
- package/lib/src/components/ResourceCRUD/create/index.d.ts +8 -0
- package/lib/src/components/ResourceCRUD/index.d.ts +1 -0
- package/lib/src/components/ResourceCRUD/list/index.d.ts +14 -0
- package/lib/src/components/ResourceCRUD/show/index.d.ts +14 -0
- package/lib/src/components/Separator/index.d.ts +2 -0
- package/lib/src/components/ShowContent/ShowContent.d.ts +13 -0
- package/lib/src/components/ShowContent/fields.d.ts +16 -0
- package/lib/src/components/ShowContent/index.d.ts +2 -0
- package/lib/src/components/StateTag/StateTag.d.ts +6 -0
- package/lib/src/components/StateTag/index.d.ts +1 -0
- package/lib/src/components/Table/ErrorContent.d.ts +10 -0
- package/lib/src/components/Table/TableToolBar.d.ts +8 -0
- package/lib/src/components/Table/TableWidgets.d.ts +6 -0
- package/lib/src/components/Table/index.d.ts +28 -0
- package/lib/src/components/Tags/index.d.ts +6 -0
- package/lib/src/components/Time/index.d.ts +9 -0
- package/lib/src/components/WorkloadDropdown/index.d.ts +7 -0
- package/lib/src/components/WorkloadPodsTable/WorkloadPodsTable.d.ts +5 -0
- package/lib/src/components/WorkloadPodsTable/index.d.ts +1 -0
- package/lib/src/components/WorkloadReplicas/index.d.ts +5 -0
- package/lib/src/components/YamlEditor/MonacoYamlDiffEditor.d.ts +9 -0
- package/lib/src/components/YamlEditor/MonacoYamlEditor.d.ts +19 -0
- package/lib/src/components/YamlEditor/YamlEditorComponent.d.ts +26 -0
- package/lib/src/components/YamlEditor/index.d.ts +1 -0
- package/lib/src/components/YamlEditor/style.d.ts +11 -0
- package/lib/src/components/YamlEditor/yaml.worker.d.ts +1 -0
- package/lib/src/components/YamlForm/index.d.ts +6 -0
- package/lib/src/constants/k8s.d.ts +204 -0
- package/lib/src/hooks/index.d.ts +2 -0
- package/lib/src/hooks/useDeleteModal/index.d.ts +1 -0
- package/lib/src/hooks/useDeleteModal/useDeleteManyModal.d.ts +8 -0
- package/lib/src/hooks/useDeleteModal/useDeleteModal.d.ts +7 -0
- package/lib/src/hooks/useDownloadYAML.d.ts +7 -0
- package/lib/src/hooks/useEagleForm.d.ts +39 -0
- package/lib/src/hooks/useEagleTable/columns.d.ts +15 -0
- package/lib/src/hooks/useEagleTable/index.d.ts +52 -0
- package/lib/src/hooks/useEdit.d.ts +4 -0
- package/lib/src/hooks/useSchema.d.ts +7 -0
- package/lib/src/i18n.d.ts +72 -0
- package/lib/src/index.d.ts +6 -0
- package/lib/src/locales/en-US/index.d.ts +15 -0
- package/lib/src/locales/index.d.ts +2 -0
- package/lib/src/locales/zh-CN/index.d.ts +55 -0
- package/lib/src/main.d.ts +1 -0
- package/lib/src/model/cronjob-model.d.ts +9 -0
- package/lib/src/model/index.d.ts +5 -0
- package/lib/src/model/job-model.d.ts +10 -0
- package/lib/src/model/pod-model.d.ts +10 -0
- package/lib/src/model/resource-model.d.ts +17 -0
- package/lib/src/model/workload-model.d.ts +17 -0
- package/lib/src/pages/configmaps/index.d.ts +3 -0
- package/lib/src/pages/cronjobs/create/index.d.ts +3 -0
- package/lib/src/pages/cronjobs/index.d.ts +3 -0
- package/lib/src/pages/cronjobs/list/index.d.ts +3 -0
- package/lib/src/pages/cronjobs/show/index.d.ts +3 -0
- package/lib/src/pages/daemonsets/create/index.d.ts +3 -0
- package/lib/src/pages/daemonsets/index.d.ts +3 -0
- package/lib/src/pages/daemonsets/list/index.d.ts +3 -0
- package/lib/src/pages/daemonsets/show/index.d.ts +3 -0
- package/lib/src/pages/deployments/create/index.d.ts +3 -0
- package/lib/src/pages/deployments/index.d.ts +3 -0
- package/lib/src/pages/deployments/list/index.d.ts +3 -0
- package/lib/src/pages/deployments/show/index.d.ts +3 -0
- package/lib/src/pages/jobs/index.d.ts +4 -0
- package/lib/src/pages/pods/create/index.d.ts +3 -0
- package/lib/src/pages/pods/index.d.ts +3 -0
- package/lib/src/pages/pods/list/index.d.ts +3 -0
- package/lib/src/pages/pods/show/index.d.ts +3 -0
- package/lib/src/pages/secrets/index.d.ts +3 -0
- package/lib/src/pages/statefulsets/create/index.d.ts +3 -0
- package/lib/src/pages/statefulsets/index.d.ts +3 -0
- package/lib/src/pages/statefulsets/list/index.d.ts +3 -0
- package/lib/src/pages/statefulsets/show/index.d.ts +3 -0
- package/lib/src/providers/index.d.ts +1 -0
- package/lib/src/providers/router-provider/index.d.ts +21 -0
- package/lib/src/types/index.d.ts +1 -0
- package/lib/src/types/resource.d.ts +39 -0
- package/lib/src/utils/addId.d.ts +3 -0
- package/lib/src/utils/download.d.ts +1 -0
- package/lib/src/utils/error.d.ts +20 -0
- package/lib/src/utils/k8s.d.ts +3 -0
- package/lib/src/utils/labels.d.ts +9 -0
- package/lib/src/utils/openapi.d.ts +45 -0
- package/lib/src/utils/schema.d.ts +17 -0
- package/lib/src/utils/string.d.ts +1 -0
- package/lib/src/utils/time.d.ts +8 -0
- package/lib/src/utils/yaml.d.ts +2 -0
- package/lib/vite.config.d.ts +2 -0
- package/package.json +90 -0
|
@@ -0,0 +1,167 @@
|
|
|
1
|
+
{
|
|
2
|
+
"pages": {
|
|
3
|
+
"login": {
|
|
4
|
+
"title": "Melden Sie sich bei Ihrem Konto an",
|
|
5
|
+
"signin": "Einloggen",
|
|
6
|
+
"signup": "Anmelden",
|
|
7
|
+
"divider": "oder",
|
|
8
|
+
"fields": {
|
|
9
|
+
"email": "Email",
|
|
10
|
+
"password": "Passwort"
|
|
11
|
+
},
|
|
12
|
+
"errors": {
|
|
13
|
+
"validEmail": "Ungültige E-Mail-Adresse"
|
|
14
|
+
},
|
|
15
|
+
"buttons": {
|
|
16
|
+
"submit": "Anmeldung",
|
|
17
|
+
"forgotPassword": "Passwort vergessen?",
|
|
18
|
+
"noAccount": "Sie haben kein Konto?",
|
|
19
|
+
"rememberMe": "Erinnere dich an mich"
|
|
20
|
+
}
|
|
21
|
+
},
|
|
22
|
+
"forgotPassword": {
|
|
23
|
+
"title": "Haben Sie Ihr Passwort vergessen?",
|
|
24
|
+
"fields": {
|
|
25
|
+
"email": "Email"
|
|
26
|
+
},
|
|
27
|
+
"errors": {
|
|
28
|
+
"validEmail": "Ungültige E-Mail-Adresse"
|
|
29
|
+
},
|
|
30
|
+
"buttons": {
|
|
31
|
+
"submit": "Anweisungen zum Zurücksetzen senden"
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
"register": {
|
|
35
|
+
"title": "Registrieren Sie sich für Ihr Konto",
|
|
36
|
+
"fields": {
|
|
37
|
+
"email": "Email",
|
|
38
|
+
"password": "Passwort"
|
|
39
|
+
},
|
|
40
|
+
"errors": {
|
|
41
|
+
"validEmail": "Ungültige E-Mail-Adresse"
|
|
42
|
+
},
|
|
43
|
+
"buttons": {
|
|
44
|
+
"submit": "Registrieren",
|
|
45
|
+
"haveAccount": "Ein Konto haben?"
|
|
46
|
+
}
|
|
47
|
+
},
|
|
48
|
+
"updatePassword": {
|
|
49
|
+
"title": "Kennwort aktualisieren",
|
|
50
|
+
"fields": {
|
|
51
|
+
"password": "Neues Passwort",
|
|
52
|
+
"confirmPassword": "Bestätige neues Passwort"
|
|
53
|
+
},
|
|
54
|
+
"errors": {
|
|
55
|
+
"confirmPasswordNotMatch": "Passwörter stimmen nicht überein"
|
|
56
|
+
},
|
|
57
|
+
"buttons": {
|
|
58
|
+
"submit": "Aktualisieren"
|
|
59
|
+
}
|
|
60
|
+
},
|
|
61
|
+
"error": {
|
|
62
|
+
"info": "Sie haben vergessen, {{action}} component zu {{resource}} hinzufügen.",
|
|
63
|
+
"404": "Leider existiert diese Seite nicht.",
|
|
64
|
+
"resource404": "Haben Sie die {{resource}} resource erstellt?",
|
|
65
|
+
"backHome": "Zurück"
|
|
66
|
+
}
|
|
67
|
+
},
|
|
68
|
+
"actions": {
|
|
69
|
+
"list": "Aufführen",
|
|
70
|
+
"create": "Erstellen",
|
|
71
|
+
"edit": "Bearbeiten",
|
|
72
|
+
"show": "Zeigen"
|
|
73
|
+
},
|
|
74
|
+
"buttons": {
|
|
75
|
+
"create": "Erstellen",
|
|
76
|
+
"save": "Speichern",
|
|
77
|
+
"logout": "Abmelden",
|
|
78
|
+
"delete": "Löschen",
|
|
79
|
+
"edit": "Bearbeiten",
|
|
80
|
+
"cancel": "Abbrechen",
|
|
81
|
+
"confirm": "Sicher?",
|
|
82
|
+
"filter": "Filter",
|
|
83
|
+
"clear": "Löschen",
|
|
84
|
+
"refresh": "Erneuern",
|
|
85
|
+
"show": "Zeigen",
|
|
86
|
+
"undo": "Undo",
|
|
87
|
+
"import": "Importieren",
|
|
88
|
+
"clone": "Klon",
|
|
89
|
+
"notAccessTitle": "Sie haben keine zugriffsberechtigung"
|
|
90
|
+
},
|
|
91
|
+
"warnWhenUnsavedChanges": "Nicht gespeicherte Änderungen werden nicht übernommen.",
|
|
92
|
+
"notifications": {
|
|
93
|
+
"success": "Erfolg",
|
|
94
|
+
"error": "Fehler (status code: {{statusCode}})",
|
|
95
|
+
"undoable": "Sie haben {{seconds}} Sekunden Zeit für Undo.",
|
|
96
|
+
"createSuccess": "{{resource}} erfolgreich erstellt.",
|
|
97
|
+
"createError": "Fehler beim Erstellen {{resource}} (status code: {{statusCode}})",
|
|
98
|
+
"deleteSuccess": "{{resource}} erfolgreich gelöscht.",
|
|
99
|
+
"deleteError": "Fehler beim Löschen {{resource}} (status code: {{statusCode}})",
|
|
100
|
+
"editSuccess": "{{resource}} erfolgreich bearbeitet.",
|
|
101
|
+
"editError": "Fehler beim Bearbeiten {{resource}} (status code: {{statusCode}})",
|
|
102
|
+
"importProgress": "{{processed}}/{{total}} importiert"
|
|
103
|
+
},
|
|
104
|
+
"loading": "Wird geladen",
|
|
105
|
+
"tags": {
|
|
106
|
+
"clone": "Klon"
|
|
107
|
+
},
|
|
108
|
+
"dashboard": {
|
|
109
|
+
"title": "Dashboard"
|
|
110
|
+
},
|
|
111
|
+
"blog_posts": {
|
|
112
|
+
"blog_posts": "Blogbeiträge",
|
|
113
|
+
"fields": {
|
|
114
|
+
"id": "Id",
|
|
115
|
+
"title": "Titel",
|
|
116
|
+
"content": "Inhalt",
|
|
117
|
+
"status": "Status",
|
|
118
|
+
"createdAt": "Erstellt am",
|
|
119
|
+
"category": "Kategorien"
|
|
120
|
+
},
|
|
121
|
+
"titles": {
|
|
122
|
+
"create": "Erstellen",
|
|
123
|
+
"edit": "Bearbeiten",
|
|
124
|
+
"list": "Einträge",
|
|
125
|
+
"show": "Eintrag zeigen"
|
|
126
|
+
}
|
|
127
|
+
},
|
|
128
|
+
"categories": {
|
|
129
|
+
"categories": "Kategorien",
|
|
130
|
+
"fields": {
|
|
131
|
+
"id": "Id",
|
|
132
|
+
"title": "Titel",
|
|
133
|
+
"createdAt": "Erstellt am"
|
|
134
|
+
},
|
|
135
|
+
"titles": {
|
|
136
|
+
"create": "Erstellen",
|
|
137
|
+
"edit": "Bearbeiten",
|
|
138
|
+
"list": "Einträge",
|
|
139
|
+
"show": "Eintrag zeigen"
|
|
140
|
+
}
|
|
141
|
+
},
|
|
142
|
+
"documentTitle": {
|
|
143
|
+
"default": "refine",
|
|
144
|
+
"suffix": " | refine",
|
|
145
|
+
"blog_posts": {
|
|
146
|
+
"list": "Blogbeiträge | refine",
|
|
147
|
+
"show": "#{{id}} Show Blogeintrag | refine",
|
|
148
|
+
"edit": "#{{id}} Edit Blogeintrag | refine",
|
|
149
|
+
"create": "Create new Blogeintrag | refine",
|
|
150
|
+
"clone": "#{{id}} Clone Blogeintrag | refine"
|
|
151
|
+
},
|
|
152
|
+
"categories": {
|
|
153
|
+
"list": "Kategorien | refine",
|
|
154
|
+
"show": "#{{id}} Zeigen Kategorien | refine",
|
|
155
|
+
"edit": "#{{id}} Bearbeiten Kategorien | refine",
|
|
156
|
+
"create": "Neue Kategorie Erstellen | refine",
|
|
157
|
+
"clone": "#{{id}} Klon Kategorie | refine"
|
|
158
|
+
}
|
|
159
|
+
},
|
|
160
|
+
"table": {
|
|
161
|
+
"actions": "Aktionen"
|
|
162
|
+
},
|
|
163
|
+
"pagination": {
|
|
164
|
+
"go": "Gehen Sie zur Seite",
|
|
165
|
+
"show": "Zeigen"
|
|
166
|
+
}
|
|
167
|
+
}
|
|
@@ -0,0 +1,167 @@
|
|
|
1
|
+
{
|
|
2
|
+
"pages": {
|
|
3
|
+
"login": {
|
|
4
|
+
"title": "Sign in to your account",
|
|
5
|
+
"signin": "Sign in",
|
|
6
|
+
"signup": "Sign up",
|
|
7
|
+
"divider": "or",
|
|
8
|
+
"fields": {
|
|
9
|
+
"email": "Email",
|
|
10
|
+
"password": "Password"
|
|
11
|
+
},
|
|
12
|
+
"errors": {
|
|
13
|
+
"validEmail": "Invalid email address"
|
|
14
|
+
},
|
|
15
|
+
"buttons": {
|
|
16
|
+
"submit": "Login",
|
|
17
|
+
"forgotPassword": "Forgot password?",
|
|
18
|
+
"noAccount": "Don’t have an account?",
|
|
19
|
+
"rememberMe": "Remember me"
|
|
20
|
+
}
|
|
21
|
+
},
|
|
22
|
+
"forgotPassword": {
|
|
23
|
+
"title": "Forgot your password?",
|
|
24
|
+
"fields": {
|
|
25
|
+
"email": "Email"
|
|
26
|
+
},
|
|
27
|
+
"errors": {
|
|
28
|
+
"validEmail": "Invalid email address"
|
|
29
|
+
},
|
|
30
|
+
"buttons": {
|
|
31
|
+
"submit": "Send reset instructions"
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
"register": {
|
|
35
|
+
"title": "Sign up for your account",
|
|
36
|
+
"fields": {
|
|
37
|
+
"email": "Email",
|
|
38
|
+
"password": "Password"
|
|
39
|
+
},
|
|
40
|
+
"errors": {
|
|
41
|
+
"validEmail": "Invalid email address"
|
|
42
|
+
},
|
|
43
|
+
"buttons": {
|
|
44
|
+
"submit": "Register",
|
|
45
|
+
"haveAccount": "Have an account?"
|
|
46
|
+
}
|
|
47
|
+
},
|
|
48
|
+
"updatePassword": {
|
|
49
|
+
"title": "Update password",
|
|
50
|
+
"fields": {
|
|
51
|
+
"password": "New Password",
|
|
52
|
+
"confirmPassword": "Confirm new password"
|
|
53
|
+
},
|
|
54
|
+
"errors": {
|
|
55
|
+
"confirmPasswordNotMatch": "Passwords do not match"
|
|
56
|
+
},
|
|
57
|
+
"buttons": {
|
|
58
|
+
"submit": "Update"
|
|
59
|
+
}
|
|
60
|
+
},
|
|
61
|
+
"error": {
|
|
62
|
+
"info": "You may have forgotten to add the {{action}} component to {{resource}} resource.",
|
|
63
|
+
"404": "Sorry, the page you visited does not exist.",
|
|
64
|
+
"resource404": "Are you sure you have created the {{resource}} resource.",
|
|
65
|
+
"backHome": "Back Home"
|
|
66
|
+
}
|
|
67
|
+
},
|
|
68
|
+
"actions": {
|
|
69
|
+
"list": "List",
|
|
70
|
+
"create": "Create",
|
|
71
|
+
"edit": "Edit",
|
|
72
|
+
"show": "Show"
|
|
73
|
+
},
|
|
74
|
+
"buttons": {
|
|
75
|
+
"create": "Create",
|
|
76
|
+
"save": "Save",
|
|
77
|
+
"logout": "Logout",
|
|
78
|
+
"delete": "Delete",
|
|
79
|
+
"edit": "Edit",
|
|
80
|
+
"cancel": "Cancel",
|
|
81
|
+
"confirm": "Are you sure?",
|
|
82
|
+
"filter": "Filter",
|
|
83
|
+
"clear": "Clear",
|
|
84
|
+
"refresh": "Refresh",
|
|
85
|
+
"show": "Show",
|
|
86
|
+
"undo": "Undo",
|
|
87
|
+
"import": "Import",
|
|
88
|
+
"clone": "Clone",
|
|
89
|
+
"notAccessTitle": "You don't have permission to access"
|
|
90
|
+
},
|
|
91
|
+
"warnWhenUnsavedChanges": "Are you sure you want to leave? You have unsaved changes.",
|
|
92
|
+
"notifications": {
|
|
93
|
+
"success": "Successful",
|
|
94
|
+
"error": "Error (status code: {{statusCode}})",
|
|
95
|
+
"undoable": "You have {{seconds}} seconds to undo",
|
|
96
|
+
"createSuccess": "Successfully created {{resource}}",
|
|
97
|
+
"createError": "There was an error creating {{resource}} (status code: {{statusCode}})",
|
|
98
|
+
"deleteSuccess": "Successfully deleted {{resource}}",
|
|
99
|
+
"deleteError": "Error when deleting {{resource}} (status code: {{statusCode}})",
|
|
100
|
+
"editSuccess": "Successfully edited {{resource}}",
|
|
101
|
+
"editError": "Error when editing {{resource}} (status code: {{statusCode}})",
|
|
102
|
+
"importProgress": "Importing: {{processed}}/{{total}}"
|
|
103
|
+
},
|
|
104
|
+
"loading": "Loading",
|
|
105
|
+
"tags": {
|
|
106
|
+
"clone": "Clone"
|
|
107
|
+
},
|
|
108
|
+
"dashboard": {
|
|
109
|
+
"title": "Dashboard"
|
|
110
|
+
},
|
|
111
|
+
"blog_posts": {
|
|
112
|
+
"blog_posts": "Blog Posts",
|
|
113
|
+
"fields": {
|
|
114
|
+
"id": "Id",
|
|
115
|
+
"title": "Title",
|
|
116
|
+
"content": "Content",
|
|
117
|
+
"status": "Status",
|
|
118
|
+
"createdAt": "Created At",
|
|
119
|
+
"category": "Category"
|
|
120
|
+
},
|
|
121
|
+
"titles": {
|
|
122
|
+
"create": "Create Blog Post",
|
|
123
|
+
"edit": "Edit Blog Post",
|
|
124
|
+
"list": "Blog Posts",
|
|
125
|
+
"show": "Show Blog Post"
|
|
126
|
+
}
|
|
127
|
+
},
|
|
128
|
+
"categories": {
|
|
129
|
+
"categories": "Categories",
|
|
130
|
+
"fields": {
|
|
131
|
+
"id": "Id",
|
|
132
|
+
"title": "Title",
|
|
133
|
+
"createdAt": "Created At"
|
|
134
|
+
},
|
|
135
|
+
"titles": {
|
|
136
|
+
"create": "Create Category",
|
|
137
|
+
"edit": "Edit Category",
|
|
138
|
+
"list": "Categories",
|
|
139
|
+
"show": "Show Category"
|
|
140
|
+
}
|
|
141
|
+
},
|
|
142
|
+
"documentTitle": {
|
|
143
|
+
"default": "refine",
|
|
144
|
+
"suffix": " | refine",
|
|
145
|
+
"blog_posts": {
|
|
146
|
+
"list": "Blog Posts | refine",
|
|
147
|
+
"show": "#{{id}} Show Blog Post | refine",
|
|
148
|
+
"edit": "#{{id}} Edit Blog Post | refine",
|
|
149
|
+
"create": "Create new Blog Post | refine",
|
|
150
|
+
"clone": "#{{id}} Clone Blog Post | refine"
|
|
151
|
+
},
|
|
152
|
+
"categories": {
|
|
153
|
+
"list": "Categories | refine",
|
|
154
|
+
"show": "#{{id}} Show Category | refine",
|
|
155
|
+
"edit": "#{{id}} Edit Category | refine",
|
|
156
|
+
"create": "Create new Category | refine",
|
|
157
|
+
"clone": "#{{id}} Clone Category | refine"
|
|
158
|
+
}
|
|
159
|
+
},
|
|
160
|
+
"table": {
|
|
161
|
+
"actions": "Actions"
|
|
162
|
+
},
|
|
163
|
+
"pagination": {
|
|
164
|
+
"go": "Go to Page",
|
|
165
|
+
"show": "Show"
|
|
166
|
+
}
|
|
167
|
+
}
|
package/dist/refine.js
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { D, K, M, N, c, e, R, d, n, b, a, r, u } from "./index.cbb145c9.js";
|
|
2
|
+
import "@cloudtower/eagle";
|
|
3
|
+
import "@refinedev/core";
|
|
4
|
+
import "js-yaml";
|
|
5
|
+
import "react";
|
|
6
|
+
import "lodash-es";
|
|
7
|
+
import "sunflower-antd";
|
|
8
|
+
import "qs";
|
|
9
|
+
import "react-router-dom";
|
|
10
|
+
import "@cloudtower/icons-react";
|
|
11
|
+
import "monaco-editor";
|
|
12
|
+
import "monaco-yaml";
|
|
13
|
+
import "react-dom";
|
|
14
|
+
import "ky";
|
|
15
|
+
import "mitt";
|
|
16
|
+
export {
|
|
17
|
+
D as Dovetail,
|
|
18
|
+
K as KeyValueListWidget,
|
|
19
|
+
M as MetadataForm,
|
|
20
|
+
N as NameInputWidget,
|
|
21
|
+
c as NamespaceSelectWidget,
|
|
22
|
+
e as RESOURCE_GROUP,
|
|
23
|
+
R as ResourceCRUD,
|
|
24
|
+
d as dnsSubDomainRules,
|
|
25
|
+
n as namespaceRules,
|
|
26
|
+
b as rfc1035LabelRules,
|
|
27
|
+
a as rfc1123LabelRules,
|
|
28
|
+
r as routerProvider,
|
|
29
|
+
u as useSchema
|
|
30
|
+
};
|