cc-core-cli 1.0.130 → 1.0.131
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/bin/index.js +6 -6
- package/package.json +1 -1
- package/template/admin/Dockerfile +7 -4
- package/template/admin/next-env.d.ts +5 -0
- package/template/admin/package.json +23 -10
- package/template/admin/postcss.config.js +6 -0
- package/template/admin/public/images/component/barchart.svg +20 -0
- package/template/admin/public/images/component/bubble_chart.svg +17 -0
- package/template/admin/public/images/component/button.svg +17 -0
- package/template/admin/public/images/component/calendar.svg +63 -0
- package/template/admin/public/images/component/checkbox.svg +25 -0
- package/template/admin/public/images/component/color_picker.svg +25 -0
- package/template/admin/public/images/component/cron_tab.svg +33 -0
- package/template/admin/public/images/component/currency.svg +34 -0
- package/template/admin/public/images/component/custom_fields.svg +34 -0
- package/template/admin/public/images/component/data_table.svg +101 -0
- package/template/admin/public/images/component/date_picker.svg +47 -0
- package/template/admin/public/images/component/donut.svg +23 -0
- package/template/admin/public/images/component/edit_table.svg +96 -0
- package/template/admin/public/images/component/entity_field.svg +36 -0
- package/template/admin/public/images/component/entity_layout.svg +40 -0
- package/template/admin/public/images/component/entity_list.svg +88 -0
- package/template/admin/public/images/component/file.svg +36 -0
- package/template/admin/public/images/component/hidden_field.svg +34 -0
- package/template/admin/public/images/component/image.svg +38 -0
- package/template/admin/public/images/component/input.svg +34 -0
- package/template/admin/public/images/component/input_icon.svg +13 -0
- package/template/admin/public/images/component/input_number.svg +34 -0
- package/template/admin/public/images/component/input_translate.svg +47 -0
- package/template/admin/public/images/component/json.svg +31 -0
- package/template/admin/public/images/component/label.svg +11 -0
- package/template/admin/public/images/component/line_chart.svg +19 -0
- package/template/admin/public/images/component/matrix_table.svg +34 -0
- package/template/admin/public/images/component/mixed_chart.svg +25 -0
- package/template/admin/public/images/component/polar_chart.svg +33 -0
- package/template/admin/public/images/component/radio.svg +24 -0
- package/template/admin/public/images/component/redar_chart.svg +17 -0
- package/template/admin/public/images/component/scatter_chart.svg +25 -0
- package/template/admin/public/images/component/select.svg +34 -0
- package/template/admin/public/images/component/summary_box.svg +31 -0
- package/template/admin/public/images/component/switch.svg +12 -0
- package/template/admin/public/images/component/translate.svg +35 -0
- package/template/admin/public/images/component/tree.svg +78 -0
- package/template/admin/public/images/default-profile.png +0 -0
- package/template/admin/public/images/empty-data.png +0 -0
- package/template/admin/public/images/file.png +0 -0
- package/template/admin/public/images/forgot-step-1.png +0 -0
- package/template/admin/public/images/forgot-step-2.png +0 -0
- package/template/admin/public/images/forgot-step-3.png +0 -0
- package/template/admin/public/images/form.png +0 -0
- package/template/admin/public/images/info-panel.png +0 -0
- package/template/admin/public/images/panel.png +0 -0
- package/template/admin/public/images/stack.png +0 -0
- package/template/admin/public/images/type-all.png +0 -0
- package/template/admin/public/images/type-boolean.png +0 -0
- package/template/admin/public/images/type-date.png +0 -0
- package/template/admin/public/images/type-file.png +0 -0
- package/template/admin/public/images/type-image.png +0 -0
- package/template/admin/public/images/type-json.png +0 -0
- package/template/admin/public/images/type-number.png +0 -0
- package/template/admin/public/images/type-options.png +0 -0
- package/template/admin/public/images/type-password.png +0 -0
- package/template/admin/public/images/type-related.png +0 -0
- package/template/admin/public/images/type-string.png +0 -0
- package/template/admin/public/images/type-trash.png +0 -0
- package/template/admin/public/images/type-unknown.png +0 -0
- package/template/admin/public/images/upload.png +0 -0
- package/template/admin/public/private-image-worker.js +10 -7
- package/template/admin/src/pages/[...url_key].tsx +9 -0
- package/template/admin/src/pages/_app.tsx +22 -0
- package/template/admin/src/pages/activate.tsx +9 -0
- package/template/admin/src/pages/api/auth/activate_account/confirm.ts +13 -0
- package/template/admin/src/pages/api/auth/activate_account/index.ts +13 -0
- package/template/admin/src/pages/api/auth/activate_account/resend.ts +13 -0
- package/template/admin/src/pages/api/auth/activate_account/set_password.ts +17 -0
- package/template/admin/src/pages/api/auth/authen/confirm.ts +24 -0
- package/template/admin/src/pages/api/auth/authen/resend.ts +13 -0
- package/template/admin/src/pages/api/auth/callback/index.ts +24 -0
- package/template/admin/src/pages/api/auth/forgot_password/confirm.ts +13 -0
- package/template/admin/src/pages/api/auth/forgot_password/index.ts +13 -0
- package/template/admin/src/pages/api/auth/forgot_password/resend.ts +13 -0
- package/template/admin/src/pages/api/auth/forgot_password/reset.ts +17 -0
- package/template/admin/src/pages/api/auth/login.ts +24 -0
- package/template/admin/src/pages/api/auth/logout.ts +30 -0
- package/template/admin/src/pages/api/custom/[...path].ts +16 -0
- package/template/admin/src/pages/api/download.ts +79 -0
- package/template/admin/src/pages/api/entity/[entity]/[id].ts +46 -0
- package/template/admin/src/pages/api/entity/[entity]/delete.ts +18 -0
- package/template/admin/src/pages/api/entity/[entity]/find.ts +17 -0
- package/template/admin/src/pages/api/entity/[entity]/index.ts +30 -0
- package/template/admin/src/pages/api/entity/[entity]/update.ts +18 -0
- package/template/admin/src/pages/api/entity/approve/[entity]/[id].ts +19 -0
- package/template/admin/src/pages/api/entity/schema/[entity]/index.ts +27 -0
- package/template/admin/src/pages/api/entity/schema/[entity]/relate.ts +16 -0
- package/template/admin/src/pages/api/entity/schema/index.ts +27 -0
- package/template/admin/src/pages/api/import_export/example/index.ts +13 -0
- package/template/admin/src/pages/api/import_export/execute/index.ts +13 -0
- package/template/admin/src/pages/api/import_export/export/index.ts +13 -0
- package/template/admin/src/pages/api/import_export/import/index.ts +13 -0
- package/template/admin/src/pages/api/import_export/progresses/index.ts +13 -0
- package/template/admin/src/pages/api/import_export/verify_progress/index.ts +13 -0
- package/template/admin/src/pages/api/language/set.ts +15 -0
- package/template/admin/src/pages/api/media/private.ts +49 -0
- package/template/admin/src/pages/api/queue/[queue]/count.ts +17 -0
- package/template/admin/src/pages/api/queue/[queue]/flush.ts +17 -0
- package/template/admin/src/pages/api/queue/[queue]/flushall.ts +16 -0
- package/template/admin/src/pages/api/queue/[queue]/index.ts +20 -0
- package/template/admin/src/pages/api/queue/index.ts +13 -0
- package/template/admin/src/pages/api/redis/index.ts +0 -0
- package/template/admin/src/pages/api/setting/[code].ts +21 -0
- package/template/admin/src/pages/api/system/config.ts +13 -0
- package/template/admin/src/pages/api/system/data_source/[code].ts +17 -0
- package/template/admin/src/pages/api/system/endpoint/[method].ts +17 -0
- package/template/admin/src/pages/api/system/queue.ts +13 -0
- package/template/admin/src/pages/api/system/role.ts +13 -0
- package/template/admin/src/pages/api/user/change_password.ts +13 -0
- package/template/admin/src/pages/api/user/filter/index.ts +13 -0
- package/template/admin/src/pages/api/user/me.ts +24 -0
- package/template/admin/src/pages/api/user/register.ts +13 -0
- package/template/admin/src/pages/callback/[channel].tsx +9 -0
- package/template/admin/src/pages/entity/[entity]/[layout]/[id].tsx +17 -0
- package/template/admin/src/pages/entity/[entity]/[layout]/index.tsx +19 -0
- package/template/admin/src/pages/forgot_password.tsx +9 -0
- package/template/admin/src/pages/index.tsx +7 -0
- package/template/admin/src/pages/login.tsx +9 -0
- package/template/admin/src/pages/profile.tsx +9 -0
- package/template/admin/src/pages/register.tsx +9 -0
- package/template/admin/src/pages/setting/entities/[key].tsx +10 -0
- package/template/admin/src/pages/setting/entities/index.tsx +10 -0
- package/template/admin/src/pages/setting/module/[module]/[layout].tsx +16 -0
- package/template/admin/src/pages/setting/modules.tsx +10 -0
- package/template/admin/src/styles/global.css +101 -0
- package/template/admin/src/styles/workflow.css +40 -0
- package/template/admin/src/utils/color.ts +88 -0
- package/template/admin/tailwind.config.js +57 -0
- package/template/admin/tsconfig.json +36 -0
- package/template/admin_v3/Dockerfile +15 -0
- package/template/admin_v3/README.md +1 -0
- package/template/admin_v3/_env +10 -0
- package/template/admin_v3/_gitignore +5 -0
- package/template/admin_v3/_npmrc +1 -0
- package/template/admin_v3/docker-compose.yml +11 -0
- package/template/admin_v3/next-env.d.ts +5 -0
- package/template/admin_v3/package.json +37 -0
- package/template/admin_v3/postcss.config.js +6 -0
- package/template/admin_v3/public/images/component/barchart.svg +20 -0
- package/template/admin_v3/public/images/component/bubble_chart.svg +17 -0
- package/template/admin_v3/public/images/component/button.svg +17 -0
- package/template/admin_v3/public/images/component/calendar.svg +63 -0
- package/template/admin_v3/public/images/component/checkbox.svg +25 -0
- package/template/admin_v3/public/images/component/color_picker.svg +25 -0
- package/template/admin_v3/public/images/component/cron_tab.svg +33 -0
- package/template/admin_v3/public/images/component/currency.svg +34 -0
- package/template/admin_v3/public/images/component/custom_fields.svg +34 -0
- package/template/admin_v3/public/images/component/data_table.svg +101 -0
- package/template/admin_v3/public/images/component/date_picker.svg +47 -0
- package/template/admin_v3/public/images/component/donut.svg +23 -0
- package/template/admin_v3/public/images/component/edit_table.svg +96 -0
- package/template/admin_v3/public/images/component/entity_field.svg +36 -0
- package/template/admin_v3/public/images/component/entity_layout.svg +40 -0
- package/template/admin_v3/public/images/component/entity_list.svg +88 -0
- package/template/admin_v3/public/images/component/file.svg +36 -0
- package/template/admin_v3/public/images/component/hidden_field.svg +34 -0
- package/template/admin_v3/public/images/component/image.svg +38 -0
- package/template/admin_v3/public/images/component/input.svg +34 -0
- package/template/admin_v3/public/images/component/input_icon.svg +13 -0
- package/template/admin_v3/public/images/component/input_number.svg +34 -0
- package/template/admin_v3/public/images/component/input_translate.svg +47 -0
- package/template/admin_v3/public/images/component/json.svg +31 -0
- package/template/admin_v3/public/images/component/label.svg +11 -0
- package/template/admin_v3/public/images/component/line_chart.svg +19 -0
- package/template/admin_v3/public/images/component/matrix_table.svg +34 -0
- package/template/admin_v3/public/images/component/mixed_chart.svg +25 -0
- package/template/admin_v3/public/images/component/polar_chart.svg +33 -0
- package/template/admin_v3/public/images/component/radio.svg +24 -0
- package/template/admin_v3/public/images/component/redar_chart.svg +17 -0
- package/template/admin_v3/public/images/component/scatter_chart.svg +25 -0
- package/template/admin_v3/public/images/component/select.svg +34 -0
- package/template/admin_v3/public/images/component/summary_box.svg +31 -0
- package/template/admin_v3/public/images/component/switch.svg +12 -0
- package/template/admin_v3/public/images/component/translate.svg +35 -0
- package/template/admin_v3/public/images/component/tree.svg +78 -0
- package/template/admin_v3/public/images/default-profile.png +0 -0
- package/template/admin_v3/public/images/empty-data.png +0 -0
- package/template/admin_v3/public/images/file.png +0 -0
- package/template/admin_v3/public/images/forgot-step-1.png +0 -0
- package/template/admin_v3/public/images/forgot-step-2.png +0 -0
- package/template/admin_v3/public/images/forgot-step-3.png +0 -0
- package/template/admin_v3/public/images/form.png +0 -0
- package/template/admin_v3/public/images/info-panel.png +0 -0
- package/template/admin_v3/public/images/panel.png +0 -0
- package/template/admin_v3/public/images/split.svg +1 -0
- package/template/admin_v3/public/images/stack.png +0 -0
- package/template/admin_v3/public/images/type-all.png +0 -0
- package/template/admin_v3/public/images/type-boolean.png +0 -0
- package/template/admin_v3/public/images/type-date.png +0 -0
- package/template/admin_v3/public/images/type-file.png +0 -0
- package/template/admin_v3/public/images/type-image.png +0 -0
- package/template/admin_v3/public/images/type-json.png +0 -0
- package/template/admin_v3/public/images/type-number.png +0 -0
- package/template/admin_v3/public/images/type-options.png +0 -0
- package/template/admin_v3/public/images/type-password.png +0 -0
- package/template/admin_v3/public/images/type-related.png +0 -0
- package/template/admin_v3/public/images/type-string.png +0 -0
- package/template/admin_v3/public/images/type-trash.png +0 -0
- package/template/admin_v3/public/images/type-unknown.png +0 -0
- package/template/admin_v3/public/images/upload.png +0 -0
- package/template/admin_v3/public/private-image-worker.js +24 -0
- package/template/admin_v3/src/pages/[...url_key].tsx +9 -0
- package/template/admin_v3/src/pages/_app.tsx +22 -0
- package/template/admin_v3/src/pages/activate.tsx +9 -0
- package/template/admin_v3/src/pages/api/auth/activate_account/confirm.ts +13 -0
- package/template/admin_v3/src/pages/api/auth/activate_account/index.ts +13 -0
- package/template/admin_v3/src/pages/api/auth/activate_account/resend.ts +13 -0
- package/template/admin_v3/src/pages/api/auth/activate_account/set_password.ts +17 -0
- package/template/admin_v3/src/pages/api/auth/authen/confirm.ts +24 -0
- package/template/admin_v3/src/pages/api/auth/authen/resend.ts +13 -0
- package/template/admin_v3/src/pages/api/auth/callback/index.ts +24 -0
- package/template/admin_v3/src/pages/api/auth/forgot_password/confirm.ts +13 -0
- package/template/admin_v3/src/pages/api/auth/forgot_password/index.ts +13 -0
- package/template/admin_v3/src/pages/api/auth/forgot_password/resend.ts +13 -0
- package/template/admin_v3/src/pages/api/auth/forgot_password/reset.ts +17 -0
- package/template/admin_v3/src/pages/api/auth/login.ts +24 -0
- package/template/admin_v3/src/pages/api/auth/logout.ts +30 -0
- package/template/admin_v3/src/pages/api/custom/[...path].ts +16 -0
- package/template/admin_v3/src/pages/api/download.ts +79 -0
- package/template/admin_v3/src/pages/api/entity/[entity]/[id].ts +46 -0
- package/template/admin_v3/src/pages/api/entity/[entity]/delete.ts +18 -0
- package/template/admin_v3/src/pages/api/entity/[entity]/find.ts +17 -0
- package/template/admin_v3/src/pages/api/entity/[entity]/index.ts +30 -0
- package/template/admin_v3/src/pages/api/entity/[entity]/update.ts +18 -0
- package/template/admin_v3/src/pages/api/entity/approve/[entity]/[id].ts +19 -0
- package/template/admin_v3/src/pages/api/entity/schema/[entity]/index.ts +27 -0
- package/template/admin_v3/src/pages/api/entity/schema/[entity]/relate.ts +16 -0
- package/template/admin_v3/src/pages/api/entity/schema/index.ts +27 -0
- package/template/admin_v3/src/pages/api/import_export/example/index.ts +13 -0
- package/template/admin_v3/src/pages/api/import_export/execute/index.ts +13 -0
- package/template/admin_v3/src/pages/api/import_export/export/index.ts +13 -0
- package/template/admin_v3/src/pages/api/import_export/import/index.ts +13 -0
- package/template/admin_v3/src/pages/api/import_export/progresses/index.ts +13 -0
- package/template/admin_v3/src/pages/api/import_export/verify_progress/index.ts +13 -0
- package/template/admin_v3/src/pages/api/language/set.ts +15 -0
- package/template/admin_v3/src/pages/api/media/private.ts +49 -0
- package/template/admin_v3/src/pages/api/queue/[queue]/count.ts +17 -0
- package/template/admin_v3/src/pages/api/queue/[queue]/flush.ts +17 -0
- package/template/admin_v3/src/pages/api/queue/[queue]/flushall.ts +16 -0
- package/template/admin_v3/src/pages/api/queue/[queue]/index.ts +20 -0
- package/template/admin_v3/src/pages/api/queue/index.ts +13 -0
- package/template/admin_v3/src/pages/api/redis/[connect]/index.ts +0 -0
- package/template/admin_v3/src/pages/api/redis/index.ts +0 -0
- package/template/admin_v3/src/pages/api/setting/[code].ts +21 -0
- package/template/admin_v3/src/pages/api/system/config.ts +13 -0
- package/template/admin_v3/src/pages/api/system/data_source/[code].ts +17 -0
- package/template/admin_v3/src/pages/api/system/endpoint/[method].ts +17 -0
- package/template/admin_v3/src/pages/api/system/queue.ts +13 -0
- package/template/admin_v3/src/pages/api/system/role.ts +13 -0
- package/template/admin_v3/src/pages/api/user/change_password.ts +13 -0
- package/template/admin_v3/src/pages/api/user/filter/index.ts +13 -0
- package/template/admin_v3/src/pages/api/user/me.ts +24 -0
- package/template/admin_v3/src/pages/api/user/register.ts +13 -0
- package/template/admin_v3/src/pages/callback/[channel].tsx +9 -0
- package/template/admin_v3/src/pages/entity/[entity]/[layout]/[id].tsx +17 -0
- package/template/admin_v3/src/pages/entity/[entity]/[layout]/index.tsx +19 -0
- package/template/admin_v3/src/pages/forgot_password.tsx +9 -0
- package/template/admin_v3/src/pages/index.tsx +7 -0
- package/template/admin_v3/src/pages/login.tsx +9 -0
- package/template/admin_v3/src/pages/profile.tsx +9 -0
- package/template/admin_v3/src/pages/register.tsx +9 -0
- package/template/admin_v3/src/pages/setting/entities/[key].tsx +10 -0
- package/template/admin_v3/src/pages/setting/entities/index.tsx +10 -0
- package/template/admin_v3/src/pages/setting/module/[module]/[layout].tsx +16 -0
- package/template/admin_v3/src/pages/setting/modules.tsx +10 -0
- package/template/admin_v3/src/styles/global.css +101 -0
- package/template/admin_v3/src/styles/workflow.css +40 -0
- package/template/admin_v3/src/utils/color.ts +88 -0
- package/template/admin_v3/tailwind.config.js +57 -0
- package/template/admin_v3/tsconfig.json +36 -0
- package/template/core/_gitignore +4 -0
- package/template/core/buildspec.yml +29 -0
- package/template/core/jest.config.js +43 -0
- package/template/core/package.json +14 -2
- package/template/core/sonar-project.properties +27 -0
- package/template/core/test/__mocks__/cc-core-lib.d.ts +161 -0
- package/template/core/test/__mocks__/cc-core-lib.js +311 -0
- package/template/core/test/__mocks__/pdf-img-convert.js +5 -0
- package/template/core/test/jest.setup.ts +25 -0
- package/template/core/tsconfig.json +13 -13
- package/template/core/tsconfig.test.json +17 -0
- package/template/admin/config/service-account.json +0 -1
- package/template/admin/index.js +0 -67
- package/template/admin/next.config.js +0 -66
- package/template/admin/pages/404.js +0 -13
- package/template/admin/pages/[...url_key].js +0 -21
- package/template/admin/pages/_app.js +0 -16
- package/template/admin/pages/_document.js +0 -43
- package/template/admin/pages/callback/[channel].js +0 -13
- package/template/admin/pages/callback.js +0 -13
- package/template/admin/pages/change_password_expired.js +0 -13
- package/template/admin/pages/check_session.js +0 -13
- package/template/admin/pages/cognito.js +0 -13
- package/template/admin/pages/confirmpassword.js +0 -12
- package/template/admin/pages/forgotpassword.js +0 -12
- package/template/admin/pages/index.js +0 -13
- package/template/admin/pages/login.js +0 -13
- package/template/admin/pages/maintenance.js +0 -12
- package/template/admin/pages/password_expired.js +0 -13
- package/template/admin/pages/permission_denied.js +0 -13
- package/template/admin/pages/profile.js +0 -14
- package/template/admin/pages/register.js +0 -13
- package/template/admin/pages/setting/[...setting_url_key].js +0 -13
- package/template/admin/pages/setting/entities/[subList]/detail.js +0 -14
- package/template/admin/pages/setting/entities/[subList]/detail_compare.js +0 -8
- package/template/admin/pages/setting/entities/[subList]/index.js +0 -7
- package/template/admin/pages/setting/entities/detail/index.js +0 -14
- package/template/admin/pages/setting/entities/index.js +0 -14
- package/template/admin/pages/social.js +0 -13
- package/template/admin/pages/token_expired.js +0 -12
- package/template/admin/public/icon-192x192.png +0 -0
- package/template/admin/public/icon-256x256.png +0 -0
- package/template/admin/public/icon-384x384.png +0 -0
- package/template/admin/public/icon-512x512.png +0 -0
- package/template/admin/public/manifest.json +0 -32
- package/template/admin/public/static/images/adv_settings.svg +0 -130
- package/template/admin/public/static/images/aws-cognito.png +0 -0
- package/template/admin/public/static/images/azure-ad.svg +0 -1
- package/template/admin/public/static/images/bin_icon.svg +0 -1
- package/template/admin/public/static/images/color-picker.png +0 -0
- package/template/admin/public/static/images/csv_icon.svg +0 -1
- package/template/admin/public/static/images/default-file.png +0 -0
- package/template/admin/public/static/images/default-img.png +0 -0
- package/template/admin/public/static/images/default-map.png +0 -0
- package/template/admin/public/static/images/default-profile.png +0 -0
- package/template/admin/public/static/images/doc_icon.svg +0 -1
- package/template/admin/public/static/images/exe_icon.svg +0 -1
- package/template/admin/public/static/images/gif_icon.svg +0 -1
- package/template/admin/public/static/images/google.png +0 -0
- package/template/admin/public/static/images/icon-youtub.webp +0 -0
- package/template/admin/public/static/images/id-connect.png +0 -0
- package/template/admin/public/static/images/iso_icon.svg +0 -1
- package/template/admin/public/static/images/json_icon.png +0 -0
- package/template/admin/public/static/images/lang/af-ZA.svg +0 -41
- package/template/admin/public/static/images/lang/ar-AE.svg +0 -38
- package/template/admin/public/static/images/lang/ar-BH.svg +0 -36
- package/template/admin/public/static/images/lang/ar-DZ.svg +0 -40
- package/template/admin/public/static/images/lang/ar-EG.svg +0 -38
- package/template/admin/public/static/images/lang/ar-IQ.svg +0 -46
- package/template/admin/public/static/images/lang/ar-JO.svg +0 -39
- package/template/admin/public/static/images/lang/ar-KW.svg +0 -38
- package/template/admin/public/static/images/lang/ar-LB.svg +0 -40
- package/template/admin/public/static/images/lang/ar-LY.svg +0 -41
- package/template/admin/public/static/images/lang/ar-MA.svg +0 -36
- package/template/admin/public/static/images/lang/ar-OM.svg +0 -70
- package/template/admin/public/static/images/lang/ar-QA.svg +0 -36
- package/template/admin/public/static/images/lang/ar-SA.svg +0 -62
- package/template/admin/public/static/images/lang/ar-TN.svg +0 -40
- package/template/admin/public/static/images/lang/ar-YE.svg +0 -37
- package/template/admin/public/static/images/lang/az-AZ.svg +0 -41
- package/template/admin/public/static/images/lang/be-BY.svg +0 -38
- package/template/admin/public/static/images/lang/bg-BG.svg +0 -37
- package/template/admin/public/static/images/lang/bs-BA.svg +0 -48
- package/template/admin/public/static/images/lang/ca-ES.svg +0 -89
- package/template/admin/public/static/images/lang/cs-CZ.svg +0 -37
- package/template/admin/public/static/images/lang/cy-GB.svg +0 -43
- package/template/admin/public/static/images/lang/da-DK.svg +0 -36
- package/template/admin/public/static/images/lang/de-AT.svg +0 -39
- package/template/admin/public/static/images/lang/de-CH.svg +0 -36
- package/template/admin/public/static/images/lang/de-DE.svg +0 -37
- package/template/admin/public/static/images/lang/de-LI.svg +0 -45
- package/template/admin/public/static/images/lang/de-LU.svg +0 -37
- package/template/admin/public/static/images/lang/dv-MV.svg +0 -37
- package/template/admin/public/static/images/lang/el-GR.svg +0 -46
- package/template/admin/public/static/images/lang/en-AU.svg +0 -51
- package/template/admin/public/static/images/lang/en-BZ.svg +0 -196
- package/template/admin/public/static/images/lang/en-CA.svg +0 -43
- package/template/admin/public/static/images/lang/en-GB.svg +0 -43
- package/template/admin/public/static/images/lang/en-IE.svg +0 -37
- package/template/admin/public/static/images/lang/en-JM.svg +0 -40
- package/template/admin/public/static/images/lang/en-NZ.svg +0 -51
- package/template/admin/public/static/images/lang/en-PH.svg +0 -51
- package/template/admin/public/static/images/lang/en-SG.svg +0 -44
- package/template/admin/public/static/images/lang/en-TT.svg +0 -40
- package/template/admin/public/static/images/lang/en-US.svg +0 -88
- package/template/admin/public/static/images/lang/en-ZA.svg +0 -41
- package/template/admin/public/static/images/lang/en-ZW.svg +0 -50
- package/template/admin/public/static/images/lang/es-AR.svg +0 -41
- package/template/admin/public/static/images/lang/es-BO.svg +0 -101
- package/template/admin/public/static/images/lang/es-CL.svg +0 -38
- package/template/admin/public/static/images/lang/es-CO.svg +0 -37
- package/template/admin/public/static/images/lang/es-CR.svg +0 -111
- package/template/admin/public/static/images/lang/es-DO.svg +0 -103
- package/template/admin/public/static/images/lang/es-EC.svg +0 -87
- package/template/admin/public/static/images/lang/es-ES.svg +0 -89
- package/template/admin/public/static/images/lang/es-GT.svg +0 -109
- package/template/admin/public/static/images/lang/es-HN.svg +0 -46
- package/template/admin/public/static/images/lang/es-MX.svg +0 -60
- package/template/admin/public/static/images/lang/es-NI.svg +0 -82
- package/template/admin/public/static/images/lang/es-PA.svg +0 -41
- package/template/admin/public/static/images/lang/es-PE.svg +0 -37
- package/template/admin/public/static/images/lang/es-PR.svg +0 -43
- package/template/admin/public/static/images/lang/es-PY.svg +0 -41
- package/template/admin/public/static/images/lang/es-SV.svg +0 -115
- package/template/admin/public/static/images/lang/es-UY.svg +0 -75
- package/template/admin/public/static/images/lang/es-VE.svg +0 -49
- package/template/admin/public/static/images/lang/et-EE.svg +0 -37
- package/template/admin/public/static/images/lang/eu-ES.svg +0 -89
- package/template/admin/public/static/images/lang/fa-IR.svg +0 -81
- package/template/admin/public/static/images/lang/fi-FI.svg +0 -36
- package/template/admin/public/static/images/lang/fr-BE.svg +0 -37
- package/template/admin/public/static/images/lang/fr-CA.svg +0 -43
- package/template/admin/public/static/images/lang/fr-CH.svg +0 -36
- package/template/admin/public/static/images/lang/fr-FR.svg +0 -37
- package/template/admin/public/static/images/lang/fr-LU.svg +0 -37
- package/template/admin/public/static/images/lang/fr-MC.svg +0 -36
- package/template/admin/public/static/images/lang/gl-ES.svg +0 -89
- package/template/admin/public/static/images/lang/gu-IN.svg +0 -59
- package/template/admin/public/static/images/lang/he-IL.svg +0 -37
- package/template/admin/public/static/images/lang/hi-IN.svg +0 -59
- package/template/admin/public/static/images/lang/hr-BA.svg +0 -48
- package/template/admin/public/static/images/lang/hr-HR.svg +0 -101
- package/template/admin/public/static/images/lang/hu-HU.svg +0 -37
- package/template/admin/public/static/images/lang/hy-AM.svg +0 -37
- package/template/admin/public/static/images/lang/id-ID.svg +0 -36
- package/template/admin/public/static/images/lang/is-IS.svg +0 -37
- package/template/admin/public/static/images/lang/it-CH.svg +0 -36
- package/template/admin/public/static/images/lang/it-IT.svg +0 -37
- package/template/admin/public/static/images/lang/ja-JP.svg +0 -36
- package/template/admin/public/static/images/lang/ka-GE.svg +0 -42
- package/template/admin/public/static/images/lang/kk-KZ.svg +0 -72
- package/template/admin/public/static/images/lang/kn-IN.svg +0 -59
- package/template/admin/public/static/images/lang/ko-KR.svg +0 -57
- package/template/admin/public/static/images/lang/kok-IN.svg +0 -59
- package/template/admin/public/static/images/lang/ky-KG.svg +0 -54
- package/template/admin/public/static/images/lang/lt-LT.svg +0 -37
- package/template/admin/public/static/images/lang/lv-LV.svg +0 -36
- package/template/admin/public/static/images/lang/mi-NZ.svg +0 -51
- package/template/admin/public/static/images/lang/mk-MK.svg +0 -46
- package/template/admin/public/static/images/lang/mn-MN.svg +0 -50
- package/template/admin/public/static/images/lang/mr-IN.svg +0 -59
- package/template/admin/public/static/images/lang/ms-BN.svg +0 -47
- package/template/admin/public/static/images/lang/ms-MY.svg +0 -53
- package/template/admin/public/static/images/lang/mt-MT.svg +0 -50
- package/template/admin/public/static/images/lang/nb-NO.svg +0 -37
- package/template/admin/public/static/images/lang/nl-BE.svg +0 -37
- package/template/admin/public/static/images/lang/nl-NL.svg +0 -37
- package/template/admin/public/static/images/lang/nn-NO.svg +0 -37
- package/template/admin/public/static/images/lang/ns-ZA.svg +0 -41
- package/template/admin/public/static/images/lang/pa-IN.svg +0 -59
- package/template/admin/public/static/images/lang/pl-PL.svg +0 -36
- package/template/admin/public/static/images/lang/ps-AR.svg +0 -68
- package/template/admin/public/static/images/lang/pt-BR.svg +0 -51
- package/template/admin/public/static/images/lang/pt-PT.svg +0 -55
- package/template/admin/public/static/images/lang/qu-BO.svg +0 -101
- package/template/admin/public/static/images/lang/qu-EC.svg +0 -87
- package/template/admin/public/static/images/lang/qu-PE.svg +0 -37
- package/template/admin/public/static/images/lang/ro-RO.svg +0 -37
- package/template/admin/public/static/images/lang/ru-RU.svg +0 -37
- package/template/admin/public/static/images/lang/sa-IN.svg +0 -59
- package/template/admin/public/static/images/lang/se-FI.svg +0 -36
- package/template/admin/public/static/images/lang/se-NO.svg +0 -37
- package/template/admin/public/static/images/lang/se-SE.svg +0 -36
- package/template/admin/public/static/images/lang/sk-SK.svg +0 -41
- package/template/admin/public/static/images/lang/sl-SI.svg +0 -51
- package/template/admin/public/static/images/lang/sq-AL.svg +0 -36
- package/template/admin/public/static/images/lang/sr-BA.svg +0 -48
- package/template/admin/public/static/images/lang/sr-SP.svg +0 -79
- package/template/admin/public/static/images/lang/sv-FI.svg +0 -36
- package/template/admin/public/static/images/lang/sv-SE.svg +0 -36
- package/template/admin/public/static/images/lang/sw-KE.svg +0 -55
- package/template/admin/public/static/images/lang/syr-SY.svg +0 -41
- package/template/admin/public/static/images/lang/ta-IN.svg +0 -59
- package/template/admin/public/static/images/lang/te-IN.svg +0 -59
- package/template/admin/public/static/images/lang/th-TH.svg +0 -40
- package/template/admin/public/static/images/lang/tl-PH.svg +0 -51
- package/template/admin/public/static/images/lang/tn-ZA.svg +0 -41
- package/template/admin/public/static/images/lang/tr-TR.svg +0 -39
- package/template/admin/public/static/images/lang/tt-RU.svg +0 -37
- package/template/admin/public/static/images/lang/uk-UA.svg +0 -36
- package/template/admin/public/static/images/lang/ur-PK.svg +0 -40
- package/template/admin/public/static/images/lang/vi-VN.svg +0 -36
- package/template/admin/public/static/images/lang/xh-ZA.svg +0 -41
- package/template/admin/public/static/images/lang/zh-CN.svg +0 -42
- package/template/admin/public/static/images/lang/zh-HK.svg +0 -42
- package/template/admin/public/static/images/lang/zh-SG.svg +0 -44
- package/template/admin/public/static/images/lang/zh-TW.svg +0 -43
- package/template/admin/public/static/images/lang/zu-ZA.svg +0 -41
- package/template/admin/public/static/images/logo-company-default.svg +0 -1
- package/template/admin/public/static/images/logo.png +0 -0
- package/template/admin/public/static/images/m_logo.png +0 -0
- package/template/admin/public/static/images/maintenance-icon.png +0 -0
- package/template/admin/public/static/images/member_logo.png +0 -0
- package/template/admin/public/static/images/pdf_icon.svg +0 -1
- package/template/admin/public/static/images/png_icon.svg +0 -1
- package/template/admin/public/static/images/security.png +0 -0
- package/template/admin/public/static/images/template-bar.svg +0 -820
- package/template/admin/public/static/images/template-bubble.png +0 -0
- package/template/admin/public/static/images/template-line.png +0 -0
- package/template/admin/public/static/images/template-mixed.jpeg +0 -0
- package/template/admin/public/static/images/template-pie.png +0 -0
- package/template/admin/public/static/images/template-polar-area.png +0 -0
- package/template/admin/public/static/images/template-radar.jpg +0 -0
- package/template/admin/public/static/images/template-radar.png +0 -0
- package/template/admin/public/static/images/template-scatter.png +0 -0
- package/template/admin/public/static/images/translation.svg +0 -82
- package/template/admin/public/static/images/txt_icon.svg +0 -1
- package/template/admin/public/static/images/widget-bubble.png +0 -0
- package/template/admin/public/static/images/widget-column.png +0 -0
- package/template/admin/public/static/images/widget-combo.png +0 -0
- package/template/admin/public/static/images/widget-doughnut.png +0 -0
- package/template/admin/public/static/images/widget-line.png +0 -0
- package/template/admin/public/static/images/widget-pie.png +0 -0
- package/template/admin/public/static/images/widget-scatter.png +0 -0
- package/template/admin/public/static/images/widget-summary_box.png +0 -0
- package/template/admin/public/static/images/widget-treemap.png +0 -0
- package/template/admin/public/static/images/xls_icon.svg +0 -1
- package/template/admin/public/static/images/xml_icon.svg +0 -1
- package/template/admin/public/static/images/zip_icon.svg +0 -1
- package/template/admin/public/static/styles/activity_log.less +0 -157
- package/template/admin/public/static/styles/calendar.less +0 -145
- package/template/admin/public/static/styles/collections.less +0 -123
- package/template/admin/public/static/styles/compute_field.less +0 -250
- package/template/admin/public/static/styles/custom-antd.less +0 -80
- package/template/admin/public/static/styles/custom_icon.less +0 -556
- package/template/admin/public/static/styles/date_search.less +0 -63
- package/template/admin/public/static/styles/datepicker.less +0 -323
- package/template/admin/public/static/styles/detail.less +0 -2690
- package/template/admin/public/static/styles/editTable.less +0 -23
- package/template/admin/public/static/styles/entities.less +0 -897
- package/template/admin/public/static/styles/filter.less +0 -24
- package/template/admin/public/static/styles/filter_new.less +0 -154
- package/template/admin/public/static/styles/hook.less +0 -142
- package/template/admin/public/static/styles/import_export.less +0 -62
- package/template/admin/public/static/styles/input.less +0 -386
- package/template/admin/public/static/styles/layout.less +0 -1455
- package/template/admin/public/static/styles/login.less +0 -263
- package/template/admin/public/static/styles/mainheader.less +0 -32
- package/template/admin/public/static/styles/matrix.less +0 -105
- package/template/admin/public/static/styles/permission_denied.less +0 -13
- package/template/admin/public/static/styles/pipeline.less +0 -84
- package/template/admin/public/static/styles/print_template.less +0 -730
- package/template/admin/public/static/styles/rabbitmq.less +0 -3
- package/template/admin/public/static/styles/restful.less +0 -22
- package/template/admin/public/static/styles/setting.less +0 -534
- package/template/admin/public/static/styles/style.less +0 -1957
- package/template/admin/public/static/styles/system.less +0 -11
- package/template/admin/public/static/styles/tree_theme_minimal.less +0 -321
- package/template/admin/public/static/styles/versioning_control.less +0 -24
- package/template/admin/public/static/styles/wysiwyg.less +0 -8
- package/template/admin/theme/main.less +0 -1
- package/template/admin/theme/vars.less +0 -41
- /package/template/admin/public/{static/images → images}/split.svg +0 -0
- /package/template/admin/{public/static/styles/custom.less → src/pages/api/redis/[connect]/index.ts} +0 -0
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,82 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
-
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
3
|
-
|
|
4
|
-
<svg
|
|
5
|
-
version="1.1"
|
|
6
|
-
id="svg4266"
|
|
7
|
-
xml:space="preserve"
|
|
8
|
-
width="682.66669"
|
|
9
|
-
height="682.66669"
|
|
10
|
-
viewBox="0 0 682.66669 682.66669"
|
|
11
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
12
|
-
xmlns:svg="http://www.w3.org/2000/svg"><defs
|
|
13
|
-
id="defs4270"><clipPath
|
|
14
|
-
clipPathUnits="userSpaceOnUse"
|
|
15
|
-
id="clipPath4280"><path
|
|
16
|
-
d="M 0,512 H 512 V 0 H 0 Z"
|
|
17
|
-
id="path4278" /></clipPath></defs><g
|
|
18
|
-
id="g4272"
|
|
19
|
-
transform="matrix(1.3333333,0,0,-1.3333333,0,682.66667)"><g
|
|
20
|
-
id="g4274"><g
|
|
21
|
-
id="g4276"
|
|
22
|
-
clip-path="url(#clipPath4280)"><g
|
|
23
|
-
id="g4282"
|
|
24
|
-
transform="translate(199.8862,231.9517)"><path
|
|
25
|
-
d="m 0,0 h -168.338 c -13.282,0 -24.048,10.767 -24.048,24.048 V 248.5 c 0,13.282 10.766,24.048 24.048,24.048 H 56.114 c 13.282,0 24.048,-10.766 24.048,-24.048 V 80.162"
|
|
26
|
-
style="fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
|
27
|
-
id="path4284" /></g><g
|
|
28
|
-
id="g4286"
|
|
29
|
-
transform="translate(416.3228,280.0483)"><path
|
|
30
|
-
d="M 0,0 H 64.129 C 77.411,0 88.177,-10.767 88.177,-24.048 V -248.5 c 0,-13.282 -10.766,-24.048 -24.048,-24.048 h -224.452 c -13.281,0 -24.048,10.766 -24.048,24.048 v 224.452 c 0,13.281 10.767,24.048 24.048,24.048 h 128.26"
|
|
31
|
-
style="fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
|
32
|
-
id="path4288" /></g><g
|
|
33
|
-
id="g4290"
|
|
34
|
-
transform="translate(71.6289,424.3389)"><path
|
|
35
|
-
d="M 0,0 H 144.291"
|
|
36
|
-
style="fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
|
37
|
-
id="path4292" /></g><g
|
|
38
|
-
id="g4294"
|
|
39
|
-
transform="translate(106.7788,392.3105)"><path
|
|
40
|
-
d="M 0,0 C 12.426,-27.68 37.418,-67.625 85.092,-96.23"
|
|
41
|
-
style="fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
|
42
|
-
id="path4296" /></g><g
|
|
43
|
-
id="g4298"
|
|
44
|
-
transform="translate(191.8711,424.3389)"><path
|
|
45
|
-
d="M 0,0 C 0,0 -16.032,-80.162 -96.194,-128.258"
|
|
46
|
-
style="fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
|
47
|
-
id="path4300" /></g><g
|
|
48
|
-
id="g4302"
|
|
49
|
-
transform="translate(143.7744,424.3389)"><path
|
|
50
|
-
d="M 0,0 V 16.032"
|
|
51
|
-
style="fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
|
52
|
-
id="path4304" /></g><g
|
|
53
|
-
id="g4306"
|
|
54
|
-
transform="translate(311.2656,71.6289)"><path
|
|
55
|
-
d="m 0,0 54.181,142.258 c 1.107,2.707 4.939,2.711 6.051,0.006 L 113.92,0"
|
|
56
|
-
style="fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
|
57
|
-
id="path4308" /></g><g
|
|
58
|
-
id="g4310"
|
|
59
|
-
transform="translate(328.1631,107.0586)"><path
|
|
60
|
-
d="M 0,0 H 80.398"
|
|
61
|
-
style="fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
|
62
|
-
id="path4312" /></g><g
|
|
63
|
-
id="g4314"
|
|
64
|
-
transform="translate(183.8564,95.6772)"><path
|
|
65
|
-
d="m 0,0 h -32.066 c -30.991,0 -56.113,25.123 -56.113,56.113 v 48.094"
|
|
66
|
-
style="fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
|
67
|
-
id="path4316" /></g><g
|
|
68
|
-
id="g4318"
|
|
69
|
-
transform="translate(167.8228,119.7256)"><path
|
|
70
|
-
d="M 0,0 32.064,-24.048 0,-48.097"
|
|
71
|
-
style="fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
|
72
|
-
id="path4320" /></g><g
|
|
73
|
-
id="g4322"
|
|
74
|
-
transform="translate(328.1436,416.3228)"><path
|
|
75
|
-
d="m 0,0 h 32.066 c 30.991,0 56.113,-25.123 56.113,-56.113 v -48.094"
|
|
76
|
-
style="fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
|
77
|
-
id="path4324" /></g><g
|
|
78
|
-
id="g4326"
|
|
79
|
-
transform="translate(344.1772,392.2744)"><path
|
|
80
|
-
d="M 0,0 -32.064,24.048 0,48.097"
|
|
81
|
-
style="fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
|
82
|
-
id="path4328" /></g></g></g></g></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg height="512" viewBox="0 0 64 64" width="512" xmlns="http://www.w3.org/2000/svg"><g id="Flat"><path d="m12 37v-32a2 2 0 0 1 2-2h26l12 12v22" fill="#d6d6d4"/><path d="m52 57v2a2 2 0 0 1 -2 2h-36a2 2 0 0 1 -2-2v-2" fill="#d6d6d4"/><path d="m40 3v12h12" fill="#44546c"/><rect fill="#f35244" height="20" rx="2" width="46" x="9" y="37"/><path d="m46 26h-28a1 1 0 0 1 0-2h28a1 1 0 0 1 0 2z" fill="#44546c"/><path d="m46 32h-28a1 1 0 0 1 0-2h28a1 1 0 0 1 0 2z" fill="#44546c"/><g fill="#d6d6d4"><path d="m26.37 41.61a.61.61 0 0 1 .63.39 1.8 1.8 0 0 1 .17.76 1.55 1.55 0 0 1 -.19.8.61.61 0 0 1 -.56.34h-2.27v8.7a.61.61 0 0 1 -.4.58 2 2 0 0 1 -1.72 0 .62.62 0 0 1 -.39-.58v-8.74h-2.22a.62.62 0 0 1 -.57-.34 1.55 1.55 0 0 1 -.19-.8 1.67 1.67 0 0 1 .18-.76.6.6 0 0 1 .58-.35z"/><path d="m32 49.22-2.35 4a.42.42 0 0 1 -.24.19.86.86 0 0 1 -.36.07 1.65 1.65 0 0 1 -.55-.1 2.14 2.14 0 0 1 -.55-.26 2 2 0 0 1 -.41-.4.79.79 0 0 1 -.16-.48.86.86 0 0 1 .15-.45l2.78-4.3-2.67-4.29a.92.92 0 0 1 -.16-.5.8.8 0 0 1 .15-.47 1.41 1.41 0 0 1 .39-.38 2.14 2.14 0 0 1 .53-.25 1.81 1.81 0 0 1 .55-.09.79.79 0 0 1 .76.42l2.14 3.73 2.14-3.73a.79.79 0 0 1 .76-.42 1.79 1.79 0 0 1 .54.09 1.85 1.85 0 0 1 .53.25 1.33 1.33 0 0 1 .4.38.8.8 0 0 1 .15.47.92.92 0 0 1 -.16.5l-2.67 4.28 2.78 4.3a.78.78 0 0 1 0 .93 2 2 0 0 1 -.41.4 2.14 2.14 0 0 1 -.55.26 1.66 1.66 0 0 1 -.56.1.84.84 0 0 1 -.35-.07.42.42 0 0 1 -.24-.19z"/><path d="m44.58 41.61a.6.6 0 0 1 .58.35 1.67 1.67 0 0 1 .18.76 1.55 1.55 0 0 1 -.19.8.62.62 0 0 1 -.57.34h-2.22v8.74a.62.62 0 0 1 -.39.58 2 2 0 0 1 -1.72 0 .61.61 0 0 1 -.4-.58v-8.74h-2.22a.61.61 0 0 1 -.56-.34 1.55 1.55 0 0 1 -.19-.8 1.66 1.66 0 0 1 .17-.76.61.61 0 0 1 .58-.35z"/></g></g></svg>
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg height="512" viewBox="0 0 64 64" width="512" xmlns="http://www.w3.org/2000/svg"><g id="Flat"><path d="m12 37v-32a2 2 0 0 1 2-2h26l12 12v22" fill="#d6d6d4"/><path d="m52 57v2a2 2 0 0 1 -2 2h-36a2 2 0 0 1 -2-2v-2" fill="#d6d6d4"/><path d="m40 3v12h12" fill="#44546c"/><rect fill="#7eb457" height="20" rx="2" width="46" x="9" y="37"/><path d="m46 26h-28a1 1 0 0 1 0-2h28a1 1 0 0 1 0 2z" fill="#44546c"/><path d="m46 32h-28a1 1 0 0 1 0-2h28a1 1 0 0 1 0 2z" fill="#44546c"/><g fill="#d6d6d4"><path d="m23.75 49.22-2.35 4a.42.42 0 0 1 -.24.19.81.81 0 0 1 -.35.07 1.7 1.7 0 0 1 -.56-.1 1.93 1.93 0 0 1 -.54-.26 1.79 1.79 0 0 1 -.42-.4.78.78 0 0 1 0-.93l2.78-4.3-2.68-4.29a.92.92 0 0 1 -.16-.5.8.8 0 0 1 .15-.47 1.61 1.61 0 0 1 .4-.38 1.92 1.92 0 0 1 .52-.25 1.82 1.82 0 0 1 .56-.09.78.78 0 0 1 .75.42l2.14 3.73 2.14-3.73a.8.8 0 0 1 .76-.42 1.91 1.91 0 0 1 .55.09 2 2 0 0 1 .53.25 1.41 1.41 0 0 1 .39.38.8.8 0 0 1 .15.47.92.92 0 0 1 -.16.5l-2.67 4.28 2.79 4.3a.94.94 0 0 1 .14.45.79.79 0 0 1 -.16.48 1.74 1.74 0 0 1 -.41.4 2.14 2.14 0 0 1 -.55.26 1.65 1.65 0 0 1 -.55.1.86.86 0 0 1 -.36-.07.5.5 0 0 1 -.24-.19z"/><path d="m30.46 53.37a1.44 1.44 0 0 1 -.75-.19.62.62 0 0 1 -.34-.58v-10.24a.59.59 0 0 1 .39-.57 2.17 2.17 0 0 1 1.73 0 .59.59 0 0 1 .39.57v8.82h3.67a.58.58 0 0 1 .55.34 1.73 1.73 0 0 1 .17.76 1.66 1.66 0 0 1 -.17.75.58.58 0 0 1 -.55.34z"/><path d="m40.55 51.28a2.67 2.67 0 0 0 .56-.06 1.62 1.62 0 0 0 .51-.18 1.15 1.15 0 0 0 .36-.33.88.88 0 0 0 .13-.49 1.07 1.07 0 0 0 -.37-.82 5.2 5.2 0 0 0 -1-.61c-.37-.18-.78-.38-1.23-.58a5.87 5.87 0 0 1 -1.23-.73 3.83 3.83 0 0 1 -.94-1.06 3 3 0 0 1 -.34-1.58 3 3 0 0 1 1.31-2.56 3.77 3.77 0 0 1 1.32-.58 5.8 5.8 0 0 1 1.49-.19c.22 0 .5 0 .86.05a6.48 6.48 0 0 1 1.07.19 2.89 2.89 0 0 1 .9.43.9.9 0 0 1 .38.75 1.48 1.48 0 0 1 -.06.38 1.85 1.85 0 0 1 -.18.44 1 1 0 0 1 -.31.35.72.72 0 0 1 -.45.15.92.92 0 0 1 -.41-.1l-.42-.21a5.64 5.64 0 0 0 -.56-.21 3 3 0 0 0 -.82-.1 2 2 0 0 0 -1.24.3.87.87 0 0 0 -.37.67.83.83 0 0 0 .38.68 5.72 5.72 0 0 0 .94.53l1.23.55a5.47 5.47 0 0 1 1.24.77 4.22 4.22 0 0 1 .94 1.14 3.44 3.44 0 0 1 .39 1.73 3.74 3.74 0 0 1 -.3 1.54 3.21 3.21 0 0 1 -.84 1.12 3.83 3.83 0 0 1 -1.28.68 5.18 5.18 0 0 1 -1.61.23 6.69 6.69 0 0 1 -1.5-.17 5.35 5.35 0 0 1 -1.23-.47 2.64 2.64 0 0 1 -.84-.67 1.25 1.25 0 0 1 -.31-.78 1.19 1.19 0 0 1 .09-.44 2.3 2.3 0 0 1 .23-.44 1.56 1.56 0 0 1 .35-.33.69.69 0 0 1 .43-.14.92.92 0 0 1 .54.18l.54.41a3.59 3.59 0 0 0 .7.41 2.12 2.12 0 0 0 .95.15z"/></g></g></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg height="512" viewBox="0 0 64 64" width="512" xmlns="http://www.w3.org/2000/svg"><g id="Flat"><path d="m12 37v-32a2 2 0 0 1 2-2h26l12 12v22" fill="#d6d6d4"/><path d="m52 57v2a2 2 0 0 1 -2 2h-36a2 2 0 0 1 -2-2v-2" fill="#d6d6d4"/><path d="m40 3v12h12" fill="#44546c"/><rect fill="#348fd9" height="20" rx="2" width="46" x="9" y="37"/><path d="m46 26h-28a1 1 0 0 1 0-2h28a1 1 0 0 1 0 2z" fill="#44546c"/><path d="m46 32h-28a1 1 0 0 1 0-2h28a1 1 0 0 1 0 2z" fill="#44546c"/><g fill="#d6d6d4"><path d="m22.31 49.22-2.35 4a.42.42 0 0 1 -.24.19.81.81 0 0 1 -.35.07 1.7 1.7 0 0 1 -.56-.1 1.93 1.93 0 0 1 -.54-.26 1.79 1.79 0 0 1 -.42-.4.78.78 0 0 1 0-.93l2.78-4.3-2.63-4.29a.92.92 0 0 1 -.16-.5.8.8 0 0 1 .15-.47 1.46 1.46 0 0 1 .4-.38 1.92 1.92 0 0 1 .52-.25 1.82 1.82 0 0 1 .56-.09.78.78 0 0 1 .75.42l2.14 3.73 2.14-3.73a.79.79 0 0 1 .76-.42 1.91 1.91 0 0 1 .55.09 2 2 0 0 1 .53.25 1.41 1.41 0 0 1 .39.38.8.8 0 0 1 .15.47.92.92 0 0 1 -.16.5l-2.72 4.28 2.79 4.3a.94.94 0 0 1 .14.45.79.79 0 0 1 -.16.48 1.74 1.74 0 0 1 -.41.4 2.14 2.14 0 0 1 -.55.26 1.65 1.65 0 0 1 -.55.1.86.86 0 0 1 -.36-.07.5.5 0 0 1 -.24-.19z"/><path d="m33.59 49.2a.75.75 0 0 1 -.38.37 1 1 0 0 1 -.45.1 1 1 0 0 1 -.44-.1.71.71 0 0 1 -.32-.37l-1.53-2.8v6.2a.61.61 0 0 1 -.4.58 1.87 1.87 0 0 1 -.86.19 1.93 1.93 0 0 1 -.86-.19.62.62 0 0 1 -.39-.58v-9.74a1.47 1.47 0 0 1 .1-.58 1.15 1.15 0 0 1 .28-.39 1.09 1.09 0 0 1 .41-.22 1.76 1.76 0 0 1 .46-.06 5.21 5.21 0 0 1 .6 0 1.1 1.1 0 0 1 .47.16 1.66 1.66 0 0 1 .43.38 4.44 4.44 0 0 1 .45.68l1.66 2.9 1.66-2.9a4.44 4.44 0 0 1 .45-.68 1.8 1.8 0 0 1 .42-.38 1.19 1.19 0 0 1 .48-.16 5.15 5.15 0 0 1 .59 0 1.41 1.41 0 0 1 .87.28 1.12 1.12 0 0 1 .39 1v9.71a.61.61 0 0 1 -.4.58 1.9 1.9 0 0 1 -.86.19 1.93 1.93 0 0 1 -.86-.19.62.62 0 0 1 -.39-.58v-6z"/><path d="m40.48 53.37a1.51 1.51 0 0 1 -.76-.19.63.63 0 0 1 -.33-.58v-10.24a.59.59 0 0 1 .39-.57 2.14 2.14 0 0 1 1.72 0 .58.58 0 0 1 .4.57v8.82h3.67a.56.56 0 0 1 .54.34 1.61 1.61 0 0 1 .18.76 1.54 1.54 0 0 1 -.18.75.56.56 0 0 1 -.54.34z"/></g></g></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg height="512" viewBox="0 0 64 64" width="512" xmlns="http://www.w3.org/2000/svg"><g id="Flat"><path d="m12 37v-32a2 2 0 0 1 2-2h26l12 12v22" fill="#d6d6d4"/><path d="m52 57v2a2 2 0 0 1 -2 2h-36a2 2 0 0 1 -2-2v-2" fill="#d6d6d4"/><path d="m40 3v12h12" fill="#44546c"/><rect fill="#f35244" height="20" rx="2" width="46" x="9" y="37"/><path d="m46 26h-28a1 1 0 0 1 0-2h28a1 1 0 0 1 0 2z" fill="#44546c"/><path d="m46 32h-28a1 1 0 0 1 0-2h28a1 1 0 0 1 0 2z" fill="#44546c"/><g fill="#d6d6d4"><path d="m24.33 51.18h4.38a.6.6 0 0 1 .56.36 1.49 1.49 0 0 1 .2.74 1.55 1.55 0 0 1 -.2.74.61.61 0 0 1 -.56.35h-6.86a.62.62 0 0 1 -.72-.66 1.75 1.75 0 0 1 .27-.88l4.54-8h-3.73a.62.62 0 0 1 -.57-.33 1.65 1.65 0 0 1 0-1.52.6.6 0 0 1 .58-.34h6.21a.74.74 0 0 1 .55.18.7.7 0 0 1 .17.48 1.91 1.91 0 0 1 -.27.88z"/><path d="m30.48 42.36a.61.61 0 0 1 .39-.58 2.29 2.29 0 0 1 1.73 0 .61.61 0 0 1 .39.58v10.24a.62.62 0 0 1 -.39.58 2.06 2.06 0 0 1 -1.73 0 .62.62 0 0 1 -.39-.58z"/><path d="m34.73 42.36a.69.69 0 0 1 .25-.53 1 1 0 0 1 .68-.22h3.34a5.16 5.16 0 0 1 1.49.2 3.11 3.11 0 0 1 1.21.63 3 3 0 0 1 .8 1.15 4.38 4.38 0 0 1 .3 1.72v.08a4.2 4.2 0 0 1 -.31 1.72 3.11 3.11 0 0 1 -.83 1.16 3.22 3.22 0 0 1 -1.26.65 5.56 5.56 0 0 1 -1.56.2h-1.6v3.48a.61.61 0 0 1 -.4.58 2 2 0 0 1 -1.72 0 .62.62 0 0 1 -.39-.58zm2.51 1.44v3.39h1.59a1.41 1.41 0 0 0 1.06-.39 1.69 1.69 0 0 0 .39-1.22v-.17a1.67 1.67 0 0 0 -.39-1.22 1.41 1.41 0 0 0 -1.06-.39z"/></g></g></svg>
|
|
@@ -1,157 +0,0 @@
|
|
|
1
|
-
.modal-activity-log-default-profile {
|
|
2
|
-
svg {
|
|
3
|
-
width : 100px;
|
|
4
|
-
height: 100px;
|
|
5
|
-
}
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
#log_setting_form {
|
|
9
|
-
.ant-form-item-has-feedback .ant-switch {
|
|
10
|
-
margin: 0
|
|
11
|
-
}
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
.activity-log-button {
|
|
15
|
-
color: rgb(102, 0, 255);
|
|
16
|
-
|
|
17
|
-
&.ant-btn {
|
|
18
|
-
border: 1px solid rgb(102, 0, 255);
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
&.ant-btn:hover,
|
|
22
|
-
&.ant-btn:focus {
|
|
23
|
-
border: 1px solid rgb(102, 0, 255);
|
|
24
|
-
}
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
.ant-drawer.activity-log {
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
.ant-drawer-content-wrapper {
|
|
31
|
-
width: 450px !important;
|
|
32
|
-
|
|
33
|
-
.ant-drawer-wrapper-body {
|
|
34
|
-
.ant-drawer-title {
|
|
35
|
-
.refresh {
|
|
36
|
-
svg {
|
|
37
|
-
width : 16px;
|
|
38
|
-
height : 16px;
|
|
39
|
-
margin-right: 0px;
|
|
40
|
-
}
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
svg {
|
|
44
|
-
width : 16px;
|
|
45
|
-
height : 16px;
|
|
46
|
-
margin-right: 6px;
|
|
47
|
-
}
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
.ant-drawer-body {
|
|
51
|
-
padding: 24px 0px;
|
|
52
|
-
|
|
53
|
-
.ant-divider.ant-divider-horizontal:first-child {
|
|
54
|
-
display: none;
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
.title-date {
|
|
58
|
-
margin-bottom: 15px;
|
|
59
|
-
padding : 0px 24px;
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
.activity-contents {
|
|
63
|
-
margin-bottom: 3px;
|
|
64
|
-
padding : 8px 24px;
|
|
65
|
-
|
|
66
|
-
.left-section {
|
|
67
|
-
.image {
|
|
68
|
-
margin-right: 10px;
|
|
69
|
-
width : 55px;
|
|
70
|
-
|
|
71
|
-
.image-action {
|
|
72
|
-
text-align: center;
|
|
73
|
-
margin-top: 3px;
|
|
74
|
-
|
|
75
|
-
.ant-avatar-circle {
|
|
76
|
-
width : 38px;
|
|
77
|
-
height : 38px;
|
|
78
|
-
margin-bottom: 4px;
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
.anticon-user {
|
|
82
|
-
svg {
|
|
83
|
-
width : 36px;
|
|
84
|
-
height: 36px;
|
|
85
|
-
}
|
|
86
|
-
}
|
|
87
|
-
|
|
88
|
-
.action {
|
|
89
|
-
font-size: 13px;
|
|
90
|
-
}
|
|
91
|
-
}
|
|
92
|
-
}
|
|
93
|
-
|
|
94
|
-
.user-name {
|
|
95
|
-
font-weight: 500;
|
|
96
|
-
font-size : 13px;
|
|
97
|
-
}
|
|
98
|
-
|
|
99
|
-
.ip {
|
|
100
|
-
font-size: 10px;
|
|
101
|
-
}
|
|
102
|
-
}
|
|
103
|
-
|
|
104
|
-
.right-section {
|
|
105
|
-
position : relative;
|
|
106
|
-
text-align: right;
|
|
107
|
-
|
|
108
|
-
.time {
|
|
109
|
-
font-size: 12px;
|
|
110
|
-
}
|
|
111
|
-
|
|
112
|
-
.type-log {
|
|
113
|
-
position: absolute;
|
|
114
|
-
bottom : 0;
|
|
115
|
-
right : 0;
|
|
116
|
-
|
|
117
|
-
.ant-tag {
|
|
118
|
-
margin-right: 0;
|
|
119
|
-
}
|
|
120
|
-
}
|
|
121
|
-
}
|
|
122
|
-
|
|
123
|
-
&.failed {
|
|
124
|
-
background : #fff1f0 !important;
|
|
125
|
-
border-color: #ffa39e;
|
|
126
|
-
}
|
|
127
|
-
}
|
|
128
|
-
}
|
|
129
|
-
}
|
|
130
|
-
}
|
|
131
|
-
}
|
|
132
|
-
|
|
133
|
-
.ant-btn.activity-log {
|
|
134
|
-
svg {
|
|
135
|
-
width : 16px;
|
|
136
|
-
height: 16px;
|
|
137
|
-
}
|
|
138
|
-
}
|
|
139
|
-
|
|
140
|
-
.ant-list-split.activity-log-diff-list {
|
|
141
|
-
.ant-list-item {
|
|
142
|
-
border-bottom: none;
|
|
143
|
-
padding: 6px 0;
|
|
144
|
-
}
|
|
145
|
-
|
|
146
|
-
.list-item-container {
|
|
147
|
-
display: block;
|
|
148
|
-
}
|
|
149
|
-
}
|
|
150
|
-
|
|
151
|
-
@media (max-width: @screen-sm-max) {
|
|
152
|
-
.ant-drawer.activity-log {
|
|
153
|
-
.ant-drawer-content-wrapper {
|
|
154
|
-
width: 85% !important;
|
|
155
|
-
}
|
|
156
|
-
}
|
|
157
|
-
}
|
|
@@ -1,145 +0,0 @@
|
|
|
1
|
-
.rbc-rtl .rbc-btn-group > button:last-child:not(:first-child) {
|
|
2
|
-
z-index: 100;
|
|
3
|
-
border-radius: 4px;
|
|
4
|
-
border-top-right-radius: 0;
|
|
5
|
-
border-bottom-right-radius: 0;
|
|
6
|
-
}
|
|
7
|
-
.rbc-toolbar button {
|
|
8
|
-
color: @text-color;
|
|
9
|
-
display: inline-block;
|
|
10
|
-
margin: 0;
|
|
11
|
-
text-align: center;
|
|
12
|
-
vertical-align: middle;
|
|
13
|
-
background: none;
|
|
14
|
-
background-image: none;
|
|
15
|
-
border: 1px solid @btn-default-border;
|
|
16
|
-
padding: 0.375rem 1rem;
|
|
17
|
-
border-radius: 4px;
|
|
18
|
-
line-height: normal;
|
|
19
|
-
white-space: nowrap;
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
.rbc-toolbar button:active,
|
|
23
|
-
.rbc-toolbar button.rbc-active {
|
|
24
|
-
position: relative;
|
|
25
|
-
z-index: 1;
|
|
26
|
-
background-image: none;
|
|
27
|
-
box-shadow: @btn-primary-shadow;
|
|
28
|
-
background-color: @primary-color;
|
|
29
|
-
color: @primary-color;
|
|
30
|
-
background: @btn-default-bg;
|
|
31
|
-
border-color: @primary-color;
|
|
32
|
-
}
|
|
33
|
-
.rbc-toolbar button:active:hover,
|
|
34
|
-
.rbc-toolbar button:active:focus,
|
|
35
|
-
.rbc-toolbar button.rbc-active:hover,
|
|
36
|
-
.rbc-toolbar button.rbc-active:focus {
|
|
37
|
-
color: @radio-button-hover-color;
|
|
38
|
-
background: @radio-button-bg;
|
|
39
|
-
border-color: @radio-button-hover-color;
|
|
40
|
-
// border-color: #8c8c8c;
|
|
41
|
-
}
|
|
42
|
-
.rbc-toolbar button:focus {
|
|
43
|
-
color: #373a3c;
|
|
44
|
-
border-color: @btn-default-border;
|
|
45
|
-
}
|
|
46
|
-
.rbc-toolbar button:hover {
|
|
47
|
-
color: @radio-button-hover-color;
|
|
48
|
-
background-color: transparent;
|
|
49
|
-
border-color: @btn-default-border;
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
.rbc-header {
|
|
53
|
-
overflow: hidden;
|
|
54
|
-
-webkit-box-flex: 1;
|
|
55
|
-
-ms-flex: 1 0 0%;
|
|
56
|
-
flex: 1 0 0%;
|
|
57
|
-
text-overflow: ellipsis;
|
|
58
|
-
white-space: nowrap;
|
|
59
|
-
padding: 0 4px;
|
|
60
|
-
// text-align: right;
|
|
61
|
-
vertical-align: middle;
|
|
62
|
-
font-weight: bold;
|
|
63
|
-
font-size: 90%;
|
|
64
|
-
min-height: 0;
|
|
65
|
-
border-bottom: 1px solid #ddd;
|
|
66
|
-
}
|
|
67
|
-
.rbc-month-row {
|
|
68
|
-
display: -webkit-box;
|
|
69
|
-
display: -ms-flexbox;
|
|
70
|
-
display: flex;
|
|
71
|
-
position: relative;
|
|
72
|
-
-webkit-box-orient: vertical;
|
|
73
|
-
-webkit-box-direction: normal;
|
|
74
|
-
-ms-flex-direction: column;
|
|
75
|
-
flex-direction: column;
|
|
76
|
-
-webkit-box-flex: 1;
|
|
77
|
-
-ms-flex: 1 0 0px;
|
|
78
|
-
flex: 1 0 0;
|
|
79
|
-
-ms-flex-preferred-size: 0px;
|
|
80
|
-
flex-basis: 0px;
|
|
81
|
-
overflow: hidden;
|
|
82
|
-
height: 100%;
|
|
83
|
-
border-bottom: 1px solid #ddd;
|
|
84
|
-
}
|
|
85
|
-
.rbc-header + .rbc-header {
|
|
86
|
-
border-left: none;
|
|
87
|
-
}
|
|
88
|
-
|
|
89
|
-
.rbc-month-view {
|
|
90
|
-
position: relative;
|
|
91
|
-
display: -webkit-box;
|
|
92
|
-
display: -ms-flexbox;
|
|
93
|
-
display: flex;
|
|
94
|
-
-webkit-box-orient: vertical;
|
|
95
|
-
-webkit-box-direction: normal;
|
|
96
|
-
-ms-flex-direction: column;
|
|
97
|
-
flex-direction: column;
|
|
98
|
-
-webkit-box-flex: 1;
|
|
99
|
-
-ms-flex: 1 0 0px;
|
|
100
|
-
flex: 1 0 0;
|
|
101
|
-
width: 100%;
|
|
102
|
-
-moz-user-select: none;
|
|
103
|
-
-ms-user-select: none;
|
|
104
|
-
user-select: none;
|
|
105
|
-
-webkit-user-select: none;
|
|
106
|
-
height: 100%;
|
|
107
|
-
border: none;
|
|
108
|
-
}
|
|
109
|
-
|
|
110
|
-
.rbc-month-row {
|
|
111
|
-
display: -webkit-box;
|
|
112
|
-
display: -ms-flexbox;
|
|
113
|
-
display: flex;
|
|
114
|
-
position: relative;
|
|
115
|
-
-webkit-box-orient: vertical;
|
|
116
|
-
-webkit-box-direction: normal;
|
|
117
|
-
-ms-flex-direction: column;
|
|
118
|
-
flex-direction: column;
|
|
119
|
-
-webkit-box-flex: 1;
|
|
120
|
-
-ms-flex: 1 0 0px;
|
|
121
|
-
flex: 1 0 0;
|
|
122
|
-
-ms-flex-preferred-size: 0px;
|
|
123
|
-
flex-basis: 0px;
|
|
124
|
-
overflow: hidden;
|
|
125
|
-
height: 100%;
|
|
126
|
-
}
|
|
127
|
-
.rbc-day-bg + .rbc-day-bg {
|
|
128
|
-
border-left: none;
|
|
129
|
-
}
|
|
130
|
-
.rbc-agenda-date-cell {
|
|
131
|
-
border-right: 1px solid #ddd;
|
|
132
|
-
}
|
|
133
|
-
|
|
134
|
-
.my-rbc .rbc-time-view {
|
|
135
|
-
.rbc-label {
|
|
136
|
-
display: none;
|
|
137
|
-
}
|
|
138
|
-
.rbc-allday-cell {
|
|
139
|
-
height: calc(100vh - 98px);
|
|
140
|
-
max-height: unset;
|
|
141
|
-
}
|
|
142
|
-
.rbc-time-content {
|
|
143
|
-
display: none;
|
|
144
|
-
}
|
|
145
|
-
}
|
|
@@ -1,123 +0,0 @@
|
|
|
1
|
-
.file-collections-items {
|
|
2
|
-
padding : 12px;
|
|
3
|
-
border : 1px solid #d9d9d9;
|
|
4
|
-
border-radius: 4px;
|
|
5
|
-
cursor : pointer;
|
|
6
|
-
position : relative;
|
|
7
|
-
|
|
8
|
-
&.selected {
|
|
9
|
-
border-color: @primary-color !important;
|
|
10
|
-
|
|
11
|
-
.bulk-container {
|
|
12
|
-
display: block;
|
|
13
|
-
}
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
.bulk-container {
|
|
17
|
-
display : none;
|
|
18
|
-
position: absolute;
|
|
19
|
-
top : 10px;
|
|
20
|
-
left : 10px;
|
|
21
|
-
z-index : 2;
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
.file-items {
|
|
25
|
-
display : flex;
|
|
26
|
-
justify-content: center;
|
|
27
|
-
align-items : center;
|
|
28
|
-
width : 100%;
|
|
29
|
-
height : 120px;
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
.file-title-container {
|
|
33
|
-
display : flex;
|
|
34
|
-
flex-flow : row nowrap;
|
|
35
|
-
align-items: center;
|
|
36
|
-
|
|
37
|
-
.file-name {
|
|
38
|
-
flex-grow: 2;
|
|
39
|
-
width : 0px;
|
|
40
|
-
|
|
41
|
-
.name {
|
|
42
|
-
max-width: 100%;
|
|
43
|
-
}
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
.file-type {
|
|
47
|
-
margin-left : 10px;
|
|
48
|
-
padding : 2px 4px 2px 4px;
|
|
49
|
-
border-radius : 2px;
|
|
50
|
-
background-color: rgb(242, 243, 244);
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
.type {
|
|
54
|
-
max-width: 100%;
|
|
55
|
-
color : rgb(158, 167, 184);
|
|
56
|
-
}
|
|
57
|
-
}
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
.file-ext-size {
|
|
61
|
-
max-width: 100%;
|
|
62
|
-
color : #707070;
|
|
63
|
-
}
|
|
64
|
-
}
|
|
65
|
-
|
|
66
|
-
.file-collections-items:hover {
|
|
67
|
-
border-color: #afafaf;
|
|
68
|
-
|
|
69
|
-
.bulk-container {
|
|
70
|
-
display: block;
|
|
71
|
-
}
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
.file-detail-container {
|
|
75
|
-
.file-description-container {
|
|
76
|
-
padding : 10px 10px 4px;
|
|
77
|
-
background-color: #f7f7f7;
|
|
78
|
-
border-radius : 2px;
|
|
79
|
-
|
|
80
|
-
.ant-typography {
|
|
81
|
-
max-width: 100%;
|
|
82
|
-
font-size: 12px;
|
|
83
|
-
color : #707070;
|
|
84
|
-
}
|
|
85
|
-
}
|
|
86
|
-
}
|
|
87
|
-
|
|
88
|
-
.file-preview-container {
|
|
89
|
-
display : flex;
|
|
90
|
-
justify-content: center;
|
|
91
|
-
align-items : center;
|
|
92
|
-
border-radius : 2px;
|
|
93
|
-
border : 1px solid #d9d9d9;
|
|
94
|
-
padding : 8px;
|
|
95
|
-
width : 100%;
|
|
96
|
-
height : 100%;
|
|
97
|
-
max-height : 400px;
|
|
98
|
-
position : relative;
|
|
99
|
-
|
|
100
|
-
.file-actions {
|
|
101
|
-
position: absolute;
|
|
102
|
-
top : 10px;
|
|
103
|
-
right : 10px;
|
|
104
|
-
}
|
|
105
|
-
}
|
|
106
|
-
|
|
107
|
-
.image-preview-container {
|
|
108
|
-
display : flex;
|
|
109
|
-
justify-content: center;
|
|
110
|
-
align-items : center;
|
|
111
|
-
padding : 8px;
|
|
112
|
-
width : 100%;
|
|
113
|
-
height : 100%;
|
|
114
|
-
max-height : 400px;
|
|
115
|
-
position : relative;
|
|
116
|
-
min-height : 200px;
|
|
117
|
-
|
|
118
|
-
.file-actions {
|
|
119
|
-
position: absolute;
|
|
120
|
-
top : 10px;
|
|
121
|
-
right : 10px;
|
|
122
|
-
}
|
|
123
|
-
}
|