@pitcher/canvas-ui 2025.12.10-82548 → 2025.12.10-90353
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/canvas-ui.css +3 -1
- package/canvas-ui.js +1910 -1662
- package/canvas-ui.js.map +1 -1
- package/lib/apps/canvas-builder/composables/useCanvas.d.ts +5 -0
- package/lib/components/CTemplateAccessInfo/CTemplateAccessInfo.vue.d.ts +25 -0
- package/lib/components/CTemplateAccessManage/CTemplateAccessManage.vue.d.ts +26 -0
- package/lib/main.lib.d.ts +2 -0
- package/lib/types/instanceSettings.types.d.ts +1 -0
- package/locale/el.json +9 -1
- package/locale/en.json +9 -1
- package/locale/es.json +9 -1
- package/locale/fr.json +9 -1
- package/package.json +1 -1
|
@@ -4867,6 +4867,7 @@ export default function useCanvas(): {
|
|
|
4867
4867
|
enable_sync_file_filtering?: boolean | undefined;
|
|
4868
4868
|
time_format?: string | undefined;
|
|
4869
4869
|
date_format?: string | undefined;
|
|
4870
|
+
is_file_expiration_mandatory?: boolean | undefined;
|
|
4870
4871
|
}, (OrganizationSettings & {
|
|
4871
4872
|
canvas?: {
|
|
4872
4873
|
hide_page_break_in_toc?: boolean;
|
|
@@ -4908,6 +4909,7 @@ export default function useCanvas(): {
|
|
|
4908
4909
|
enable_sync_file_filtering?: boolean;
|
|
4909
4910
|
time_format?: string;
|
|
4910
4911
|
date_format?: string;
|
|
4912
|
+
is_file_expiration_mandatory?: boolean;
|
|
4911
4913
|
ios?: InstanceSettings;
|
|
4912
4914
|
}) | {
|
|
4913
4915
|
auto_assignment_rules?: {
|
|
@@ -5195,6 +5197,7 @@ export default function useCanvas(): {
|
|
|
5195
5197
|
enable_sync_file_filtering?: boolean | undefined;
|
|
5196
5198
|
time_format?: string | undefined;
|
|
5197
5199
|
date_format?: string | undefined;
|
|
5200
|
+
is_file_expiration_mandatory?: boolean | undefined;
|
|
5198
5201
|
}>;
|
|
5199
5202
|
pitcherSettings: Readonly<Ref<{
|
|
5200
5203
|
readonly auto_assignment_rules?: readonly {
|
|
@@ -5516,6 +5519,7 @@ export default function useCanvas(): {
|
|
|
5516
5519
|
readonly enable_sync_file_filtering?: boolean | undefined;
|
|
5517
5520
|
readonly time_format?: string | undefined;
|
|
5518
5521
|
readonly date_format?: string | undefined;
|
|
5522
|
+
readonly is_file_expiration_mandatory?: boolean | undefined;
|
|
5519
5523
|
}, {
|
|
5520
5524
|
readonly auto_assignment_rules?: readonly {
|
|
5521
5525
|
readonly connection_id: string;
|
|
@@ -5836,6 +5840,7 @@ export default function useCanvas(): {
|
|
|
5836
5840
|
readonly enable_sync_file_filtering?: boolean | undefined;
|
|
5837
5841
|
readonly time_format?: string | undefined;
|
|
5838
5842
|
readonly date_format?: string | undefined;
|
|
5843
|
+
readonly is_file_expiration_mandatory?: boolean | undefined;
|
|
5839
5844
|
}>>;
|
|
5840
5845
|
initialize: (props: CanvasBuilderProps, launchDarkly: LaunchDarklyEnv) => void;
|
|
5841
5846
|
activateNavigationItem: (id: string, sectionId?: string, previewMode?: boolean, index?: number) => void;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { CanvasRetrieve } from '../../../types/openapi';
|
|
2
|
+
interface Props {
|
|
3
|
+
items: CanvasRetrieve[];
|
|
4
|
+
maxItemsToShow?: number;
|
|
5
|
+
title?: string;
|
|
6
|
+
}
|
|
7
|
+
declare function __VLS_template(): {
|
|
8
|
+
attrs: Partial<{}>;
|
|
9
|
+
slots: {
|
|
10
|
+
default?(_: {}): any;
|
|
11
|
+
};
|
|
12
|
+
refs: {};
|
|
13
|
+
rootEl: any;
|
|
14
|
+
};
|
|
15
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
16
|
+
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {
|
|
17
|
+
maxItemsToShow: number;
|
|
18
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
19
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
20
|
+
export default _default;
|
|
21
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
22
|
+
new (): {
|
|
23
|
+
$slots: S;
|
|
24
|
+
};
|
|
25
|
+
};
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
type Item = {
|
|
2
|
+
canvas: {
|
|
3
|
+
id: string;
|
|
4
|
+
name: string;
|
|
5
|
+
tags?: string[];
|
|
6
|
+
};
|
|
7
|
+
id: string;
|
|
8
|
+
};
|
|
9
|
+
interface Props {
|
|
10
|
+
items: Item[];
|
|
11
|
+
maxItemsToRender?: number;
|
|
12
|
+
title?: string;
|
|
13
|
+
}
|
|
14
|
+
declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
15
|
+
view: (item: Item, newTab?: boolean | undefined) => any;
|
|
16
|
+
delete: (item: Item) => any;
|
|
17
|
+
setHome: (item: Item) => any;
|
|
18
|
+
}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
|
|
19
|
+
onView?: ((item: Item, newTab?: boolean | undefined) => any) | undefined;
|
|
20
|
+
onDelete?: ((item: Item) => any) | undefined;
|
|
21
|
+
onSetHome?: ((item: Item) => any) | undefined;
|
|
22
|
+
}>, {
|
|
23
|
+
items: Item[];
|
|
24
|
+
maxItemsToRender: number;
|
|
25
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
26
|
+
export default _default;
|
package/lib/main.lib.d.ts
CHANGED
|
@@ -88,6 +88,8 @@ export { default as CTable } from './components/CTable/CTable.vue';
|
|
|
88
88
|
export { default as CEntitySelector } from './components/CEntitySelector/CEntitySelector.vue';
|
|
89
89
|
export { default as CUsersGroupsAccessManage } from './components/CUsersGroupsAccessManage/CUsersGroupsAccessManage.vue';
|
|
90
90
|
export { default as CFilesAccessManage } from './components/CFilesAccessManage/CFilesAccessManage.vue';
|
|
91
|
+
export { default as CTemplateAccessManage } from './components/CTemplateAccessManage/CTemplateAccessManage.vue';
|
|
92
|
+
export { default as CTemplateAccessInfo } from './components/CTemplateAccessInfo/CTemplateAccessInfo.vue';
|
|
91
93
|
export { default as CGroupsAccessInfo } from './components/CGroupsAccessInfo/CGroupsAccessInfo.vue';
|
|
92
94
|
export { default as CUsersAccessInfo } from './components/CUsersAccessInfo/CUsersAccessInfo.vue';
|
|
93
95
|
export { default as CFilesAccessInfo } from './components/CFilesAccessInfo/CFilesAccessInfo.vue';
|
package/locale/el.json
CHANGED
|
@@ -1831,6 +1831,14 @@
|
|
|
1831
1831
|
"primaryActiontext": "Επιλογή αρχείων",
|
|
1832
1832
|
"select": "Επιλογή"
|
|
1833
1833
|
},
|
|
1834
|
+
"CTemplateAccessManage": {
|
|
1835
|
+
"templates": "Πρότυπο ({n}) | Πρότυπα ({n})",
|
|
1836
|
+
"setHome": "Ορισμός ως αρχικό πρότυπο"
|
|
1837
|
+
},
|
|
1838
|
+
"CTemplateAccessInfo": {
|
|
1839
|
+
"more": "και {n} περισσότερα",
|
|
1840
|
+
"title": "Πρότυπο ({n}) | Πρότυπα ({n})"
|
|
1841
|
+
},
|
|
1834
1842
|
"CGroupsAccessInfo": {
|
|
1835
1843
|
"more": "και {n} περισσότερα",
|
|
1836
1844
|
"title": "Ομάδα ({n}) | Ομάδες ({n})"
|
|
@@ -2823,4 +2831,4 @@
|
|
|
2823
2831
|
"invalidNumber": "Μη έγκυρος αριθμός"
|
|
2824
2832
|
}
|
|
2825
2833
|
}
|
|
2826
|
-
}
|
|
2834
|
+
}
|
package/locale/en.json
CHANGED
|
@@ -1831,6 +1831,14 @@
|
|
|
1831
1831
|
"primaryActiontext": "Select files",
|
|
1832
1832
|
"select": "Select"
|
|
1833
1833
|
},
|
|
1834
|
+
"CTemplateAccessManage": {
|
|
1835
|
+
"templates": "Template ({n}) | Templates ({n})",
|
|
1836
|
+
"setHome": "Set as home template"
|
|
1837
|
+
},
|
|
1838
|
+
"CTemplateAccessInfo": {
|
|
1839
|
+
"more": "and {n} more",
|
|
1840
|
+
"title": "Template ({n}) | Templates ({n})"
|
|
1841
|
+
},
|
|
1834
1842
|
"CGroupsAccessInfo": {
|
|
1835
1843
|
"more": "and {n} more",
|
|
1836
1844
|
"title": "Group ({n}) | Groups ({n})"
|
|
@@ -2823,4 +2831,4 @@
|
|
|
2823
2831
|
"invalidNumber": "Invalid number"
|
|
2824
2832
|
}
|
|
2825
2833
|
}
|
|
2826
|
-
}
|
|
2834
|
+
}
|
package/locale/es.json
CHANGED
|
@@ -1831,6 +1831,14 @@
|
|
|
1831
1831
|
"primaryActiontext": "Seleccionar archivos",
|
|
1832
1832
|
"select": "Seleccionar"
|
|
1833
1833
|
},
|
|
1834
|
+
"CTemplateAccessManage": {
|
|
1835
|
+
"templates": "Plantilla ({n}) | Plantillas ({n})",
|
|
1836
|
+
"setHome": "Establecer como plantilla de inicio"
|
|
1837
|
+
},
|
|
1838
|
+
"CTemplateAccessInfo": {
|
|
1839
|
+
"more": "y {n} más",
|
|
1840
|
+
"title": "Plantilla ({n}) | Plantillas ({n})"
|
|
1841
|
+
},
|
|
1834
1842
|
"CGroupsAccessInfo": {
|
|
1835
1843
|
"more": "y {n} más",
|
|
1836
1844
|
"title": "Grupo ({n}) | Grupos ({n})"
|
|
@@ -2823,4 +2831,4 @@
|
|
|
2823
2831
|
"invalidNumber": "Número inválido"
|
|
2824
2832
|
}
|
|
2825
2833
|
}
|
|
2826
|
-
}
|
|
2834
|
+
}
|
package/locale/fr.json
CHANGED
|
@@ -1831,6 +1831,14 @@
|
|
|
1831
1831
|
"primaryActiontext": "Sélectionner des fichiers",
|
|
1832
1832
|
"select": "Sélectionner"
|
|
1833
1833
|
},
|
|
1834
|
+
"CTemplateAccessManage": {
|
|
1835
|
+
"templates": "Modèle ({n}) | Modèles ({n})",
|
|
1836
|
+
"setHome": "Définir comme modèle d'accueil"
|
|
1837
|
+
},
|
|
1838
|
+
"CTemplateAccessInfo": {
|
|
1839
|
+
"more": "et {n} autres",
|
|
1840
|
+
"title": "Modèle ({n}) | Modèles ({n})"
|
|
1841
|
+
},
|
|
1834
1842
|
"CGroupsAccessInfo": {
|
|
1835
1843
|
"more": "et {n} autres",
|
|
1836
1844
|
"title": "Groupe ({n}) | Groupes ({n})"
|
|
@@ -2823,4 +2831,4 @@
|
|
|
2823
2831
|
"invalidNumber": "Nombre invalide"
|
|
2824
2832
|
}
|
|
2825
2833
|
}
|
|
2826
|
-
}
|
|
2834
|
+
}
|