@steedos-labs/content-compliance 0.0.30 → 0.0.32
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/main/default/objects/pepsico_material_approval/fields/content_rule.field.yml +1 -5
- package/main/default/objects/pepsico_material_approval/fields/name.field.yml +1 -1
- package/main/default/pages/pepsico_content_review_detail.page.amis.json +1 -1
- package/package.json +1 -1
- package/public/content-review/topic.css +5 -0
- package/public/dynamic.css +21 -0
|
@@ -65,11 +65,7 @@ data_type: text
|
|
|
65
65
|
description: ''
|
|
66
66
|
filters: []
|
|
67
67
|
group: Content hub 材料标签
|
|
68
|
-
inlineHelpText:
|
|
69
|
-
字段默认非必填、单选;<br>但当满足以下条件时字段必填:
|
|
70
|
-
1、素材类型=艺人素材
|
|
71
|
-
2、素材类型=IP素材
|
|
72
|
-
3、素材类型=Social素材/种草素材>短视频>KOL/KOC视频
|
|
68
|
+
inlineHelpText: ''
|
|
73
69
|
is_wide: true
|
|
74
70
|
label: 素材授权规则
|
|
75
71
|
options:
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
},
|
|
33
33
|
{
|
|
34
34
|
"type": "tpl",
|
|
35
|
-
"tpl": "<li class=\"col-span-1 flex rounded-md shadow-sm\">\n <div class=\"flex w-16 shrink-0 items-center justify-center rounded-l-md bg-private text-base font-medium text-white\">SRA</div>\n <div class=\"flex flex-1 items-center justify-between truncate rounded-r-md border-b border-r border-t border-gray-200 bg-white\">\n <div class=\"flex-1 truncate px-4 py-2 text-sm\">\n <a href=\"#\" class=\"font-medium text-
|
|
35
|
+
"tpl": "<li class=\"col-span-1 flex rounded-md shadow-sm\">\n <div class=\"flex w-16 shrink-0 items-center justify-center rounded-l-md bg-private text-base font-medium text-white\">SRA</div>\n <div class=\"flex flex-1 items-center justify-between truncate rounded-r-md border-b border-r border-t border-gray-200 bg-white\">\n <div class=\"flex-1 truncate px-4 py-2 text-sm\">\n <a href=\"#\" class=\"font-medium text-gray-900 hover:text-gray-600\">${_display.sra_reviewer|pick:label}</a>\n <p class=\"text-gray-500 m-0 h-5\">${IFS(sra_approval_status === true, '<i class=\"fa-solid fa-check\"></i>', sra_approval_status === false, '<i class=\"fa-solid fa-xmark\"></i>', !sra_approval_status, CONCATENATE(IF(sra_materials_quantity, sra_materials_quantity, 0), ' / ', materials_quantity))}</p>\n </div>\n </div>\n</li>",
|
|
36
36
|
"inline": true,
|
|
37
37
|
"wrapperComponent": "",
|
|
38
38
|
"id": "u:912d54a43263",
|
package/package.json
CHANGED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
|
|
2
|
+
:root {
|
|
3
|
+
--private: #155a9f;
|
|
4
|
+
--private-bg: rgb(33 81 161 / 15%);
|
|
5
|
+
--private-onHover-bg: rgb(33 81 161 / 20%);
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
button{
|
|
10
|
+
background-color: var(--private) !important;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
input{
|
|
14
|
+
color: var(--private) !important;
|
|
15
|
+
border-color: var(--private) !important;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
h2{
|
|
19
|
+
color: var(--private) !important;
|
|
20
|
+
}
|
|
21
|
+
|