mirror of
https://github.com/Combodo/iTop.git
synced 2026-03-30 06:14:12 +02:00
Compare commits
24 Commits
feature/at
...
form_depen
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
9200883bc3 | ||
|
|
51a97ad28f | ||
|
|
adc8b47945 | ||
|
|
5e6d96019d | ||
|
|
06cc64f6d6 | ||
|
|
a5c14c3a48 | ||
|
|
8f6f243716 | ||
|
|
3c574819b2 | ||
|
|
5b1ea20407 | ||
|
|
4d88ef6ed4 | ||
|
|
5cb1102e6e | ||
|
|
bf23e4d98d | ||
|
|
8645b28baa | ||
|
|
eff6fcff49 | ||
|
|
994b08f94a | ||
|
|
19495d8acf | ||
|
|
48a3ea1945 | ||
|
|
a11b2845f7 | ||
|
|
ee72325451 | ||
|
|
ebb59d3ddc | ||
|
|
0193db609d | ||
|
|
ea2caed98a | ||
|
|
09c092782c | ||
|
|
a4166f874e |
2
.gitignore
vendored
2
.gitignore
vendored
@@ -33,7 +33,7 @@ tests/*/vendor/*
|
||||
!/data/index.php
|
||||
!/data/web.config
|
||||
!/data/exclude.txt
|
||||
!/data/.compilation-symlinks
|
||||
|
||||
|
||||
# iTop extensions
|
||||
/extensions/**
|
||||
|
||||
@@ -25,7 +25,7 @@ if (false === file_exists($sTcPdfRootFolder)) {
|
||||
echo $sCurrentScriptFileName.": No TCPDF lib detected, exiting !\n";
|
||||
return;
|
||||
}
|
||||
$sTcPdfFontsFolder = $sTcPdfRootFolder.'/Fonts/';
|
||||
$sTcPdfFontsFolder = $sTcPdfRootFolder.'/fonts/';
|
||||
|
||||
|
||||
/**
|
||||
|
||||
@@ -1,5 +1,9 @@
|
||||
<p align="center"><a href="https://www.combodo.com/itop-193" target="_blank">
|
||||
<img src="https://www.combodo.com/logos/logo-itop-baseline.svg" width=350>
|
||||
<picture>
|
||||
<source media="(prefers-color-scheme: dark)" srcset="/images/logos/logo-itop-baseline-light.svg">
|
||||
<source media="(prefers-color-scheme: light)" srcset="/images/logos/logo-itop-baseline-dark.svg">
|
||||
<img src="/images/logos/logo-itop-baseline-light.svg" width="350" alt="Logo iTop with baseline" />
|
||||
</picture>
|
||||
</a></p>
|
||||
|
||||
|
||||
@@ -90,7 +94,6 @@ We would like to give a special thank you 🤗 to the people from the community
|
||||
- Dejin, Bie (a.k.a [@bdejin](https://github.com/bdejin))
|
||||
- Dvořák, Lukáš
|
||||
- Goethals, Stefan
|
||||
- Giuva, Vincenzo Katriel (a.k.a [@DarkNight97boss](https://github.com/DarkNight97boss))
|
||||
- Gumble, David
|
||||
- Ji, Leeb (冀利斌) (a.k.a [@chileeb](https://github.com/chileeb))
|
||||
- Kaltefleiter, Lars (a.k.a [@larhip](https://www.github.com/larhip))
|
||||
|
||||
@@ -11,7 +11,7 @@ define('APPCONF', APPROOT.'conf/');
|
||||
*
|
||||
* @see ITOP_CORE_VERSION to get full iTop core version
|
||||
*/
|
||||
define('ITOP_DESIGN_LATEST_VERSION', '3.3');
|
||||
define('ITOP_DESIGN_LATEST_VERSION', '3.2');
|
||||
|
||||
/**
|
||||
* Constant containing the iTop core version, whatever application was built
|
||||
@@ -23,7 +23,7 @@ define('ITOP_DESIGN_LATEST_VERSION', '3.3');
|
||||
* @used-by utils::GetItopVersionWikiSyntax()
|
||||
* @used-by iTopModulesPhpVersionIntegrationTest
|
||||
*/
|
||||
define('ITOP_CORE_VERSION', '3.3.0');
|
||||
define('ITOP_CORE_VERSION', '3.2.1');
|
||||
|
||||
/**
|
||||
* @var string
|
||||
|
||||
@@ -133,6 +133,7 @@ if (!defined('PORTAL_ID'))
|
||||
|
||||
// Env. vars to be used in templates and others
|
||||
$_ENV['COMBODO_CURRENT_ENVIRONMENT'] = utils::GetCurrentEnvironment();
|
||||
$_ENV['COMBODO_APPROOT'] = APPROOT;
|
||||
$_ENV['COMBODO_ABSOLUTE_URL'] = utils::GetAbsoluteUrlAppRoot();
|
||||
$_ENV['COMBODO_CONF_APP_ICON_URL'] = MetaModel::GetConfig()->Get('app_icon_url');
|
||||
$_ENV['COMBODO_MODULES_ABSOLUTE_URL'] = utils::GetAbsoluteUrlModulesRoot();
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
twig:
|
||||
default_path: '%combodo.modules.absolute_path%'
|
||||
paths:
|
||||
'%combodo.approot%images/': ~
|
||||
debug: '%kernel.debug%'
|
||||
strict_variables: '%kernel.debug%'
|
||||
|
||||
|
||||
@@ -0,0 +1,21 @@
|
||||
# Copyright (C) 2010-2024 Combodo SAS
|
||||
#
|
||||
# This file is part of iTop.
|
||||
#
|
||||
# iTop is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU Affero General Public License as published by
|
||||
# the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# iTop is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU Affero General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Affero General Public License
|
||||
# along with iTop. If not, see <http://www.gnu.org/licenses/>
|
||||
|
||||
p_preferences_set_preference:
|
||||
path: '/preferences/setPreference'
|
||||
defaults:
|
||||
_controller: 'Combodo\iTop\Portal\Controller\PreferencesController::SetPreferenceAction'
|
||||
@@ -27,6 +27,7 @@ parameters:
|
||||
|
||||
# Used in templates
|
||||
combodo.current_environment: '%env(string:COMBODO_CURRENT_ENVIRONMENT)%'
|
||||
combodo.approot: '%env(string:COMBODO_APPROOT)%'
|
||||
combodo.absolute_url: '%env(string:COMBODO_ABSOLUTE_URL)%'
|
||||
combodo.conf.app_icon_url: '%env(string:COMBODO_CONF_APP_ICON_URL)%'
|
||||
combodo.modules.absolute_url: '%env(string:COMBODO_MODULES_ABSOLUTE_URL)%'
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -1,4 +1 @@
|
||||
@import '../../../../../css/common/main.scss';
|
||||
@import "utils/all";
|
||||
@import "pages/base";
|
||||
@import "themes/all";
|
||||
@import "themes/all";
|
||||
@@ -5,4 +5,5 @@
|
||||
@import "modal";
|
||||
@import "form";
|
||||
@import "input";
|
||||
@import "caselog";
|
||||
@import "caselog";
|
||||
@import "progress-bar";
|
||||
@@ -1,298 +1,21 @@
|
||||
/*
|
||||
* @copyright Copyright (C) 2010-2025 Combodo SAS
|
||||
* @license http://opensource.org/licenses/AGPL-3.0
|
||||
*/
|
||||
|
||||
/* SCSS variables (can be overloaded) */
|
||||
$ipb-button--padding-y: 6px !default;
|
||||
$ipb-button--padding-x: 9px !default;
|
||||
$ipb-button-colors: (
|
||||
'' : (
|
||||
'primary': (
|
||||
'': (
|
||||
$common-color-blue-800,
|
||||
$common-color-white-100,
|
||||
$common-color-blue-900
|
||||
),
|
||||
':hover': (
|
||||
$common-color-blue-700,
|
||||
$common-color-white-100,
|
||||
$common-color-blue-800
|
||||
),
|
||||
':active': (
|
||||
$common-color-blue-900,
|
||||
$common-color-white-100,
|
||||
$common-color-blue-950
|
||||
),
|
||||
':disabled': (
|
||||
$common-color-blue-200,
|
||||
$common-color-blue-600,
|
||||
$common-color-blue-300
|
||||
),
|
||||
),
|
||||
'default': (
|
||||
'': (
|
||||
$common-color-white-100,
|
||||
$common-color-grey-800,
|
||||
$common-color-grey-600
|
||||
),
|
||||
':hover': (
|
||||
$common-color-grey-100,
|
||||
$common-color-grey-900,
|
||||
$common-color-grey-700
|
||||
),
|
||||
':active': (
|
||||
$common-color-grey-200,
|
||||
$common-color-grey-900,
|
||||
$common-color-grey-700
|
||||
),
|
||||
':disabled': (
|
||||
$common-color-grey-200,
|
||||
$common-color-grey-700,
|
||||
$common-color-grey-300
|
||||
),
|
||||
),
|
||||
'success': (
|
||||
'': (
|
||||
$common-color-success-900,
|
||||
$common-color-white-100,
|
||||
$common-color-success-900
|
||||
),
|
||||
':hover': (
|
||||
$common-color-success-800,
|
||||
$common-color-green-100,
|
||||
$common-color-success-900
|
||||
),
|
||||
':active': (
|
||||
$common-color-success-950,
|
||||
$common-color-green-100,
|
||||
$common-color-success-950
|
||||
),
|
||||
':disabled': (
|
||||
$common-color-grey-200,
|
||||
$common-color-grey-700,
|
||||
$common-color-grey-300
|
||||
),
|
||||
),
|
||||
'warning': (
|
||||
'': (
|
||||
$common-color-warning-700,
|
||||
$common-color-white-100,
|
||||
$common-color-warning-900
|
||||
),
|
||||
':hover': (
|
||||
$common-color-warning-600,
|
||||
$common-color-warning-100,
|
||||
$common-color-warning-700
|
||||
),
|
||||
':active': (
|
||||
$common-color-warning-800,
|
||||
$common-color-warning-100,
|
||||
$common-color-warning-900
|
||||
),
|
||||
':disabled': (
|
||||
$common-color-grey-200,
|
||||
$common-color-grey-700,
|
||||
$common-color-grey-300
|
||||
),
|
||||
),
|
||||
'danger': (
|
||||
'': (
|
||||
$common-color-danger-800,
|
||||
$common-color-white-100,
|
||||
$common-color-danger-900
|
||||
),
|
||||
':hover': (
|
||||
$common-color-danger-700,
|
||||
$common-color-danger-100,
|
||||
$common-color-danger-800
|
||||
),
|
||||
':active': (
|
||||
$common-color-danger-900,
|
||||
$common-color-danger-100,
|
||||
$common-color-danger-950
|
||||
),
|
||||
':disabled': (
|
||||
$common-color-grey-200,
|
||||
$common-color-grey-700,
|
||||
$common-color-grey-300
|
||||
),
|
||||
),
|
||||
'info': (
|
||||
'': (
|
||||
$common-color-information-800,
|
||||
$common-color-white-100,
|
||||
$common-color-information-900
|
||||
),
|
||||
':hover': (
|
||||
$common-color-information-700,
|
||||
$common-color-information-100,
|
||||
$common-color-information-800
|
||||
),
|
||||
':active': (
|
||||
$common-color-information-900,
|
||||
$common-color-information-100,
|
||||
$common-color-information-950
|
||||
),
|
||||
':disabled': (
|
||||
$common-color-grey-200,
|
||||
$common-color-grey-700,
|
||||
$common-color-grey-300
|
||||
),
|
||||
),
|
||||
),
|
||||
'alternative' : (
|
||||
'primary': (
|
||||
'': (
|
||||
$common-color-transparent,
|
||||
$common-color-blue-800,
|
||||
$common-color-transparent
|
||||
),
|
||||
':hover': (
|
||||
$common-color-blue-100,
|
||||
$common-color-blue-900,
|
||||
$common-color-blue-100
|
||||
),
|
||||
':active': (
|
||||
$common-color-blue-200,
|
||||
$common-color-blue-900,
|
||||
$common-color-blue-200
|
||||
),
|
||||
':disabled': (
|
||||
$common-color-blue-200,
|
||||
$common-color-blue-600,
|
||||
$common-color-blue-300
|
||||
),
|
||||
),
|
||||
'default': (
|
||||
'': (
|
||||
$common-color-transparent,
|
||||
$common-color-grey-800,
|
||||
$common-color-transparent
|
||||
),
|
||||
':hover': (
|
||||
$common-color-grey-200,
|
||||
$common-color-grey-900,
|
||||
$common-color-grey-200
|
||||
),
|
||||
':active': (
|
||||
$common-color-grey-300,
|
||||
$common-color-grey-900,
|
||||
$common-color-grey-300
|
||||
),
|
||||
':disabled': (
|
||||
$common-color-transparent,
|
||||
$common-color-grey-500,
|
||||
$common-color-transparent
|
||||
),
|
||||
),
|
||||
'success': (
|
||||
'': (
|
||||
$common-color-transparent,
|
||||
$common-color-success-900,
|
||||
$common-color-transparent
|
||||
),
|
||||
':hover': (
|
||||
$common-color-success-100,
|
||||
$common-color-success-900,
|
||||
$common-color-success-100
|
||||
),
|
||||
':active': (
|
||||
$common-color-success-200,
|
||||
$common-color-success-900,
|
||||
$common-color-success-200
|
||||
),
|
||||
':disabled': (
|
||||
$common-color-grey-200,
|
||||
$common-color-grey-700,
|
||||
$common-color-grey-300
|
||||
),
|
||||
),
|
||||
'warning': (
|
||||
'': (
|
||||
$common-color-transparent,
|
||||
$common-color-warning-800,
|
||||
$common-color-transparent
|
||||
),
|
||||
':hover': (
|
||||
$common-color-warning-100,
|
||||
$common-color-warning-900,
|
||||
$common-color-warning-100
|
||||
),
|
||||
':active': (
|
||||
$common-color-warning-200,
|
||||
$common-color-warning-900,
|
||||
$common-color-warning-200
|
||||
),
|
||||
':disabled': (
|
||||
$common-color-grey-200,
|
||||
$common-color-grey-700,
|
||||
$common-color-grey-300
|
||||
),
|
||||
),
|
||||
'danger': (
|
||||
'': (
|
||||
$common-color-transparent,
|
||||
$common-color-danger-800,
|
||||
$common-color-transparent
|
||||
),
|
||||
':hover': (
|
||||
$common-color-danger-100,
|
||||
$common-color-danger-800,
|
||||
$common-color-danger-100
|
||||
),
|
||||
':active': (
|
||||
$common-color-danger-200,
|
||||
$common-color-danger-800,
|
||||
$common-color-danger-200
|
||||
),
|
||||
':disabled': (
|
||||
$common-color-grey-200,
|
||||
$common-color-grey-700,
|
||||
$common-color-grey-300
|
||||
),
|
||||
),
|
||||
'info': (
|
||||
'': (
|
||||
$common-color-transparent,
|
||||
$common-color-information-800,
|
||||
$common-color-transparent
|
||||
),
|
||||
':hover': (
|
||||
$common-color-information-100,
|
||||
$common-color-information-800,
|
||||
$common-color-information-100
|
||||
),
|
||||
':active': (
|
||||
$common-color-information-200,
|
||||
$common-color-information-800,
|
||||
$common-color-information-200
|
||||
),
|
||||
':disabled': (
|
||||
$common-color-grey-200,
|
||||
$common-color-grey-700,
|
||||
$common-color-grey-300
|
||||
),
|
||||
),
|
||||
),
|
||||
) !default;
|
||||
|
||||
|
||||
.ipb-button, .btn{
|
||||
--ibp-button-border-radius-top-left: 4px;
|
||||
--ibp-button-border-radius-top-right: 4px;
|
||||
--ibp-button-border-radius-bottom-right: 4px;
|
||||
--ibp-button-border-radius-bottom-left: 4px;
|
||||
background-color: $common-color-white-100 !important;
|
||||
border-radius: var(--ibp-button-border-radius-top-left) var(--ibp-button-border-radius-top-right) var(--ibp-button-border-radius-bottom-right) var(--ibp-button-border-radius-bottom-left);
|
||||
border: solid 1px $common-color-blue-700;
|
||||
padding: $ipb-button--padding-y $ipb-button--padding-x;
|
||||
color: $common-color-blue-800 !important;
|
||||
cursor: pointer;
|
||||
@each $sType, $aColors in $ipb-button-colors {
|
||||
@each $sColor, $sPseudoClasses in $aColors {
|
||||
@each $sPseudoClass, $sAttributes in $sPseudoClasses {
|
||||
&.ipb-is-#{$sColor}#{if($sType != '', ".ipb-is-#{$sType}", '')}#{$sPseudoClass}, &.btn-#{$sColor}#{if($sType != '', ".#{$sType}", '')}#{$sPseudoClass} {
|
||||
background-color: nth($sAttributes, 1) !important;
|
||||
color: nth($sAttributes, 2) !important;
|
||||
border-color: nth($sAttributes, 3) !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@extend %common-font-size-150;
|
||||
}
|
||||
|
||||
@@ -1,27 +1,13 @@
|
||||
/*
|
||||
* @copyright Copyright (C) 2010-2025 Combodo SAS
|
||||
* @license http://opensource.org/licenses/AGPL-3.0
|
||||
*/
|
||||
|
||||
$messaging-self-primary-color: $common-color-blue-100 !default;
|
||||
$messaging-self-secondary-color: $common-color-blue-800 !default;
|
||||
$messaging-1st-peer-primary-color: $white !default;
|
||||
$messaging-1st-peer-secondary-color: $common-color-grey-400 !default;
|
||||
$messaging-2nd-peer-primary-color: $white !default;
|
||||
$messaging-2nd-peer-secondary-color: $common-color-grey-400 !default;
|
||||
$messaging-3rd-peer-primary-color: $white !default;
|
||||
$messaging-3rd-peer-secondary-color: $common-color-grey-300 !default;
|
||||
$messaging-4th-peer-primary-color: $white !default;
|
||||
$messaging-4th-peer-secondary-color: $common-color-grey-400 !default;
|
||||
$messaging-5th-peer-primary-color: $white !default;
|
||||
$messaging-5th-peer-secondary-color: $common-color-grey-400 !default;
|
||||
|
||||
$ipb-caselog-thread--border: 1px solid $common-color-grey-400 !default;
|
||||
/* SCSS variables (can be overloaded) */
|
||||
$ipb-caselog-thread--border-top: none !default;
|
||||
|
||||
$ipb-caselog-thread--header--padding: 12px !default;
|
||||
$ipb-caselog-thread--header--background-color: $common-color-white-100 !default;
|
||||
$ipb-caselog-thread--header--span--color: $common-color-grey-800 !default;
|
||||
|
||||
$ipb-caselog-thread--header-toggler--color: inherit !default;
|
||||
|
||||
$ipb-caselog-thread--header-toggler--hover--active-focus--color: inherit !default;
|
||||
|
||||
$ipb-caselog-thread--header-toggler--not-first-child--margin: 0 0.4em 0 0.2em !default;
|
||||
|
||||
@@ -30,33 +16,24 @@ $ipb-caselog-thread--header-info--first-child--margin-left: 0 !default;
|
||||
$ipb-caselog-thread--header-info--span--span--margin-left: $ipb-caselog-thread--header-info--span--margin-left !default;
|
||||
|
||||
$ipb-caselog-thread--content--padding: 12px !default;
|
||||
$ipb-caselog-thread--content--background-color: $common-color-grey-100 !default;
|
||||
|
||||
$ipb-caselog-thread--date--margin-bottom: 10px !default;
|
||||
$ipb-caselog-thread--date--color: $common-color-grey-800 !default;
|
||||
|
||||
$ipb-caselog-thread--block--min-height: 40px !default;
|
||||
$ipb-caselog-thread--block--margin-bottom: 15px !default;
|
||||
$ipb-caselog-thread--block--last-child--margin-bottom: 0 !default;
|
||||
|
||||
$ipb-caselog-thread--block-medallion--block-entries--border: 1px solid $common-color-grey-200 !default;
|
||||
|
||||
$ipb-caselog-thread--block-medallion--width: 40px !default;
|
||||
$ipb-caselog-thread--block-medallion--height: $ipb-caselog-thread--block-medallion--width !default;
|
||||
$ipb-caselog-thread--block-medallion--color: $common-color-blue-800 !default;
|
||||
$ipb-caselog-thread--block-medallion--background-color: $common-color-blue-100 !default;
|
||||
|
||||
$ipb-caselog-thread--block-user--margin-left: 54px !default;
|
||||
$ipb-caselog-thread--block-user--color: $ipb-caselog-thread--block-medallion--color !default;
|
||||
|
||||
$ipb-caselog-thread--block-entries--margin-x: 60px !default;
|
||||
$ipb-caselog-thread--block-entries--border-radius: $common-border-radius-500 !default;
|
||||
$ipb-caselog-thread--block-entries--background-color: $ipb-caselog-thread--block-medallion--background-color !default;
|
||||
$ipb-caselog-thread--block-entries--color: $ipb-caselog-thread--block-medallion--color !default;
|
||||
|
||||
$ipb-caselog-thread--block-entry--padding-y: 8px !default;
|
||||
$ipb-caselog-thread--block-entry--padding-x: 10px !default;
|
||||
$ipb-caselog-thread--block-entry--border-bottom: 1px solid $common-color-grey-200 !default;
|
||||
|
||||
$ipb-caselog-thread--block-entry-content--height: 0px !default;
|
||||
|
||||
@@ -68,24 +45,10 @@ $ipb-caselog-thread--block-entry-toggler--top: 2px !default;
|
||||
$ipb-caselog-thread--block-entry-toggler--right: 5px !default;
|
||||
$ipb-caselog-thread--block-entry-toggler--padding-y: 2px !default;
|
||||
$ipb-caselog-thread--block-entry-toggler--padding-x: 5px !default;
|
||||
$ipb-caselog-thread--block-entry-toggler--background-color: $ipb-caselog-thread--block-medallion--background-color !default;
|
||||
|
||||
$ipb-caselog-thread--block-me--block-user--margin-right: 54px !default;
|
||||
$ipb-caselog-thread--block-me--block-entries--margin-left: initial !default;
|
||||
$ipb-caselog-thread--block-me--block-entries--margin-right: $ipb-caselog-thread--block-entries--margin-x !default;
|
||||
$ipb-caselog-thread--block-me--block-entry--first--content--border-left-color: transparent !default;
|
||||
$ipb-caselog-thread--block-me--block-entry--first--content--border-right-color: $ipb-caselog-thread--block-medallion--background-color !default;
|
||||
|
||||
|
||||
|
||||
$ipb-caselog-thread--block-colors: (
|
||||
1: ($common-color-white-100, $common-color-grey-700),
|
||||
2: ($common-color-white-100, $common-color-grey-700),
|
||||
3: ($common-color-white-100, $common-color-grey-700),
|
||||
4: ($common-color-white-100, $common-color-grey-700),
|
||||
5: ($common-color-white-100, $common-color-grey-700)
|
||||
);
|
||||
|
||||
|
||||
$messaging-block-medallion-size: 40px !default;
|
||||
$messaging-block-entries-margin-x: 60px !default;
|
||||
@@ -93,28 +56,22 @@ $messaging-block-entries-margin-x: 60px !default;
|
||||
|
||||
.ipb-caselog-thread {
|
||||
position: relative;
|
||||
border: $ipb-caselog-thread--border;
|
||||
border-top: $ipb-caselog-thread--border-top;
|
||||
}
|
||||
.ipb-caselog-thread--header{
|
||||
padding: $ipb-caselog-thread--header--padding;
|
||||
background-color: $ipb-caselog-thread--header--background-color;
|
||||
border-bottom: none;
|
||||
|
||||
@extend %common-font-size-100;
|
||||
span{
|
||||
color: $ipb-caselog-thread--header--span--color;
|
||||
}
|
||||
|
||||
}
|
||||
.ipb-caselog-thread--header-toggler{
|
||||
cursor: pointer;
|
||||
color: $ipb-caselog-thread--header-toggler--color;
|
||||
text-decoration: none;
|
||||
|
||||
&:hover,
|
||||
&:active,
|
||||
&:focus{
|
||||
color: $ipb-caselog-thread--header-toggler--hover--active-focus--color;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
@@ -142,13 +99,11 @@ $messaging-block-entries-margin-x: 60px !default;
|
||||
|
||||
.ipb-caselog-thread--content{
|
||||
padding: $ipb-caselog-thread--content--padding;
|
||||
background-color: $ipb-caselog-thread--content--background-color;
|
||||
}
|
||||
|
||||
.ipb-caselog-thread--date{
|
||||
margin-bottom: $ipb-caselog-thread--date--margin-bottom;
|
||||
text-align: center;
|
||||
color: $ipb-caselog-thread--date--color;
|
||||
|
||||
@extend %common-font-size-150;
|
||||
&:first-child{
|
||||
@@ -165,10 +120,7 @@ $messaging-block-entries-margin-x: 60px !default;
|
||||
margin-bottom: $ipb-caselog-thread--block--last-child--margin-bottom;
|
||||
}
|
||||
}
|
||||
.ipb-caselog-thread--block-medallion,
|
||||
.ipb-caselog-thread--block-entries{
|
||||
border: $ipb-caselog-thread--block-medallion--block-entries--border;
|
||||
}
|
||||
|
||||
|
||||
.ipb-caselog-thread--block-medallion{
|
||||
position: absolute;
|
||||
@@ -177,13 +129,11 @@ $messaging-block-entries-margin-x: 60px !default;
|
||||
width: $ipb-caselog-thread--block-medallion--width;
|
||||
height: $ipb-caselog-thread--block-medallion--height;
|
||||
line-height: $ipb-caselog-thread--block-medallion--height;
|
||||
color: $ipb-caselog-thread--block-medallion--color; /* .ipb-caselog-thread--block-entries color */
|
||||
text-align: center;
|
||||
@extend %common-font-size-250;
|
||||
|
||||
background-size: 100%; /* Full size is necessary for images with filled background to fit nicely in the medallion, even if this means that images with a transparent background might appear cropped */
|
||||
background-position: center center;
|
||||
background-color: $ipb-caselog-thread--block-medallion--background-color; /* .ipb-caselog-thread--block-entries background-color */
|
||||
background-repeat: no-repeat;
|
||||
border-radius: 100%;
|
||||
}
|
||||
@@ -191,7 +141,6 @@ $messaging-block-entries-margin-x: 60px !default;
|
||||
.ipb-caselog-thread--block-user{
|
||||
display: none;
|
||||
margin-left: $ipb-caselog-thread--block-user--margin-left;
|
||||
color: $ipb-caselog-thread--block-user--color; /* .ipb-caselog-thread--block-entries background-color */
|
||||
|
||||
@extend %common-font-ral-bol-100;
|
||||
}
|
||||
@@ -202,14 +151,11 @@ $messaging-block-entries-margin-x: 60px !default;
|
||||
margin-left: $ipb-caselog-thread--block-entries--margin-x;
|
||||
max-width: calc(100% - #{$ipb-caselog-thread--block-entries--margin-x});
|
||||
border-radius: $ipb-caselog-thread--block-entries--border-radius;
|
||||
background-color: $ipb-caselog-thread--block-entries--background-color;
|
||||
color: $ipb-caselog-thread--block-entries--color;
|
||||
}
|
||||
|
||||
.ipb-caselog-thread--block-entry{
|
||||
position: relative;
|
||||
padding: $ipb-caselog-thread--block-entry--padding-y $ipb-caselog-thread--block-entry--padding-x;
|
||||
border-bottom: $ipb-caselog-thread--block-entry--border-bottom;
|
||||
|
||||
img{
|
||||
max-width: 100%;
|
||||
@@ -264,9 +210,13 @@ $messaging-block-entries-margin-x: 60px !default;
|
||||
padding: $ipb-caselog-thread--block-entry-toggler--padding-y $ipb-caselog-thread--block-entry-toggler--padding-x;
|
||||
opacity: 0;
|
||||
cursor: pointer;
|
||||
background-color: $ipb-caselog-thread--block-entry-toggler--background-color; /* .ipb-caselog-thread--block-entries background-color */
|
||||
transition: all 0.2s linear;
|
||||
}
|
||||
.ipb-caselog-thread--block-entry:not(.closed):hover{
|
||||
.ipb-caselog-thread--block-entry-toggler{
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
.ipb-caselog-thread--block-me{
|
||||
text-align: right;
|
||||
@@ -297,166 +247,9 @@ $messaging-block-entries-margin-x: 60px !default;
|
||||
.ipb-caselog-thread--block-entry-content:before{
|
||||
left: initial;
|
||||
right: -15px;
|
||||
border-right-color: transparent;
|
||||
border-left-color: $ipb-caselog-thread--block-me--block-entry--first--content--border-right-color; /* .ipb-caselog-thread--block-entries background-color */
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.ipb-caselog-thread--block-color-1{
|
||||
.ipb-caselog-thread--block-medallion{
|
||||
color: $messaging-1st-peer-secondary-color;
|
||||
background-color: $messaging-1st-peer-primary-color;
|
||||
}
|
||||
.ipb-caselog-thread--block-user{
|
||||
color: $messaging-1st-peer-primary-color;
|
||||
}
|
||||
.ipb-caselog-thread--block-entries{
|
||||
color: $messaging-1st-peer-secondary-color;
|
||||
background-color: $messaging-1st-peer-primary-color;
|
||||
|
||||
.ipb-caselog-thread--block-entry{
|
||||
.ipb-caselog-thread--block-entry-toggler{
|
||||
background-color: $messaging-1st-peer-primary-color;
|
||||
}
|
||||
}
|
||||
.ipb-caselog-thread--block-entry:first-child{
|
||||
.ipb-caselog-thread--block-entry-content:before{
|
||||
border-top-color: $messaging-1st-peer-primary-color;
|
||||
border-right-color: $messaging-1st-peer-primary-color;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.ipb-caselog-thread--block-color-2{
|
||||
.ipb-caselog-thread--block-medallion{
|
||||
color: $messaging-2nd-peer-secondary-color;
|
||||
background-color: $messaging-2nd-peer-primary-color;
|
||||
}
|
||||
.ipb-caselog-thread--block-user{
|
||||
color: $messaging-2nd-peer-primary-color;
|
||||
}
|
||||
.ipb-caselog-thread--block-entries{
|
||||
color: $messaging-2nd-peer-secondary-color;
|
||||
background-color: $messaging-2nd-peer-primary-color;
|
||||
|
||||
.ipb-caselog-thread--block-entry{
|
||||
.ipb-caselog-thread--block-entry-toggler{
|
||||
background-color: $messaging-2nd-peer-primary-color;
|
||||
}
|
||||
}
|
||||
.ipb-caselog-thread--block-entry:first-child{
|
||||
.ipb-caselog-thread--block-entry-content:before{
|
||||
border-top-color: $messaging-2nd-peer-primary-color;
|
||||
border-right-color: $messaging-2nd-peer-primary-color;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.ipb-caselog-thread--block-color-3{
|
||||
.ipb-caselog-thread--block-medallion{
|
||||
color: $messaging-3rd-peer-secondary-color;
|
||||
background-color: $messaging-3rd-peer-primary-color;
|
||||
}
|
||||
.ipb-caselog-thread--block-user{
|
||||
color: $messaging-3rd-peer-primary-color;
|
||||
}
|
||||
.ipb-caselog-thread--block-entries{
|
||||
color: $messaging-3rd-peer-secondary-color;
|
||||
background-color: $messaging-3rd-peer-primary-color;
|
||||
|
||||
.ipb-caselog-thread--block-entry{
|
||||
.ipb-caselog-thread--block-entry-toggler{
|
||||
background-color: $messaging-3rd-peer-primary-color;
|
||||
}
|
||||
}
|
||||
.ipb-caselog-thread--block-entry:first-child{
|
||||
.ipb-caselog-thread--block-entry-content:before{
|
||||
border-top-color: $messaging-3rd-peer-primary-color;
|
||||
border-right-color: $messaging-3rd-peer-primary-color;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.ipb-caselog-thread--block-color-4{
|
||||
.ipb-caselog-thread--block-medallion{
|
||||
color: $messaging-4th-peer-secondary-color;
|
||||
background-color: $messaging-4th-peer-primary-color;
|
||||
}
|
||||
.ipb-caselog-thread--block-user{
|
||||
color: $messaging-4th-peer-primary-color;
|
||||
}
|
||||
.ipb-caselog-thread--block-entries{
|
||||
color: $messaging-4th-peer-secondary-color;
|
||||
background-color: $messaging-4th-peer-primary-color;
|
||||
|
||||
.ipb-caselog-thread--block-entry{
|
||||
.ipb-caselog-thread--block-entry-toggler{
|
||||
background-color: $messaging-4th-peer-primary-color;
|
||||
}
|
||||
}
|
||||
.ipb-caselog-thread--block-entry:first-child{
|
||||
.ipb-caselog-thread--block-entry-content:before{
|
||||
border-top-color: $messaging-4th-peer-primary-color;
|
||||
border-right-color: $messaging-4th-peer-primary-color;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.ipb-caselog-thread--block-color-5{
|
||||
.ipb-caselog-thread--block-medallion{
|
||||
color: $messaging-5th-peer-secondary-color;
|
||||
background-color: $messaging-5th-peer-primary-color;
|
||||
}
|
||||
.ipb-caselog-thread--block-user{
|
||||
color: $messaging-5th-peer-primary-color;
|
||||
}
|
||||
.ipb-caselog-thread--block-entries{
|
||||
color: $messaging-5th-peer-secondary-color;
|
||||
background-color: $messaging-5th-peer-primary-color;
|
||||
|
||||
|
||||
.ipb-caselog-thread--block-entry{
|
||||
.ipb-caselog-thread--block-entry-toggler{
|
||||
background-color: $messaging-5th-peer-primary-color;
|
||||
}
|
||||
}
|
||||
.ipb-caselog-thread--block-entry:first-child{
|
||||
.ipb-caselog-thread--block-entry-content:before{
|
||||
border-top-color: $messaging-5th-peer-primary-color;
|
||||
border-right-color: $messaging-5th-peer-primary-color;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@each $index, $colors in $ipb-caselog-thread--block-colors {
|
||||
.ipb-caselog-thread--block-color-#{$index} {
|
||||
.ipb-caselog-thread--block-medallion {
|
||||
color: nth($colors, 2);
|
||||
background-color: nth($colors, 1);
|
||||
}
|
||||
.ipb-caselog-thread--block-user {
|
||||
color: nth($colors, 1);
|
||||
}
|
||||
.ipb-caselog-thread--block-entries {
|
||||
color: nth($colors, 2);
|
||||
background-color: nth($colors, 1);
|
||||
|
||||
.ipb-caselog-thread--block-entry {
|
||||
.ipb-caselog-thread--block-entry-toggler {
|
||||
background-color: nth($colors, 1);
|
||||
}
|
||||
}
|
||||
.ipb-caselog-thread--block-entry:first-child {
|
||||
.ipb-caselog-thread--block-entry-content:before {
|
||||
border-top-color: nth($colors, 1);
|
||||
border-right-color: nth($colors, 1);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -1,16 +1,14 @@
|
||||
$ipb-dropdown--background-color: $ipb-color-white-100 !default;
|
||||
$ipb-dropdown--border: 1px solid $ipb-color-grey-300 !default;
|
||||
$ipb-dropdown--border-radius: $common-border-radius-400 !default;
|
||||
/*
|
||||
* @copyright Copyright (C) 2010-2025 Combodo SAS
|
||||
* @license http://opensource.org/licenses/AGPL-3.0
|
||||
*/
|
||||
|
||||
$ipb-dropdown--li--background-color: $ipb-dropdown--background-color !default;
|
||||
/* SCSS variables (can be overloaded) */
|
||||
$ipb-dropdown--border-radius: $common-border-radius-400 !default;
|
||||
|
||||
$ipb-dropdown--a--padding-y: $common-spacing-400 !default;
|
||||
$ipb-dropdown--a--padding-x: $common-spacing-500 !default;
|
||||
$ipb-dropdown--a--border-radius: $ipb-dropdown--border-radius !default;
|
||||
$ipb-dropdown--a--color: $ipb-color-grey-900 !default;
|
||||
|
||||
$ipb-dropdown--li--hover--background-color: $ipb-color-grey-200 !default;
|
||||
$ipb-dropdown--li--hover--a--color: $ipb-color-grey-800 !default;
|
||||
|
||||
$ipb-dropdown--icon--margin-right: $common-spacing-300 !default;
|
||||
|
||||
@@ -18,12 +16,9 @@ ipb-dropdown {
|
||||
display: none;
|
||||
position: absolute;
|
||||
width: max-content;
|
||||
background: $ipb-dropdown--background-color;
|
||||
border: $ipb-dropdown--border;
|
||||
border-radius: $ipb-dropdown--border-radius;
|
||||
list-style: none;
|
||||
li {
|
||||
background-color: $ipb-dropdown--li--background-color;
|
||||
a {
|
||||
display: inline-block;
|
||||
width: 100%;
|
||||
@@ -31,13 +26,6 @@ ipb-dropdown {
|
||||
border-radius: $ipb-dropdown--a--border-radius;
|
||||
cursor: pointer;
|
||||
text-decoration: none;
|
||||
color: $ipb-dropdown--a--color;
|
||||
}
|
||||
&:hover {
|
||||
background: $ipb-dropdown--li--hover--background-color;
|
||||
a {
|
||||
color: $ipb-dropdown--li--hover--a--color;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,7 +1,11 @@
|
||||
$ipb--fieldset--background-color: $common-color-grey-50 !default;
|
||||
/*
|
||||
* @copyright Copyright (C) 2010-2025 Combodo SAS
|
||||
* @license http://opensource.org/licenses/AGPL-3.0
|
||||
*/
|
||||
|
||||
/* SCSS variables (can be overloaded) */
|
||||
$ipb--fieldset--padding-y: 10px !default;
|
||||
$ipb--fieldset--padding-x: 7px !default;
|
||||
$ipb--fieldset--border: 1px solid $common-color-grey-200 !default;
|
||||
$ipb--fieldset--border-radius: $common-border-radius-500 !default;
|
||||
|
||||
$ipb--fieldset--legend--padding-y: $common-spacing-0 !default;
|
||||
@@ -10,19 +14,12 @@ $ipb--fieldset--legend--padding-x: 13px !default;
|
||||
$ipb-field--has-tooltip-or-is-mandatory--vertical-align: top !default;
|
||||
$ipb-field--has-tooltip-or-is-mandatory--left: $common-spacing-200 !default;
|
||||
|
||||
$ipb-field--has-tooltip--content: "\f05a" !default;
|
||||
$ipb-field--has-tooltip--color: $common-color-grey-700 !default;
|
||||
|
||||
$ipb-field--is-mandatory--content: "\f069" !default;
|
||||
$ipb-field--is-mandatory--color: $common-color-orange-700 !default;
|
||||
$ipb-field--is-mandatory--font-size: 0.6rem !default;
|
||||
|
||||
.form_fields {
|
||||
fieldset {
|
||||
background-color: $common-color-grey-50;
|
||||
padding: $ipb--fieldset--padding-y $ipb--fieldset--padding-x;
|
||||
border-radius: $ipb--fieldset--border-radius;
|
||||
border: $ipb--fieldset--border;
|
||||
legend {
|
||||
padding: $ipb--fieldset--legend--padding-y $ipb--fieldset--legend--padding-x;
|
||||
}
|
||||
@@ -38,14 +35,10 @@ $ipb-field--is-mandatory--font-size: 0.6rem !default;
|
||||
}
|
||||
|
||||
.form_field_label > .control-label[data-tooltip-instantiated="true"]:after {
|
||||
content: $ipb-field--has-tooltip--content;
|
||||
color: $ipb-field--has-tooltip--color;
|
||||
cursor: pointer;
|
||||
@extend %common-font-size-50;
|
||||
}
|
||||
|
||||
.form_field .form_mandatory .control-label:after{
|
||||
content: $ipb-field--is-mandatory--content;
|
||||
color: $ipb-field--is-mandatory--color;
|
||||
font-size: $common-font-size-20;
|
||||
};
|
||||
@@ -1,18 +1,37 @@
|
||||
$ipb-form-control--color: $common-color-grey-800 !default;
|
||||
$ipb-form-control--border-radius: $common-border-radius-500 !default;
|
||||
$ipb-form-control--box-shadow: none !default;
|
||||
/*
|
||||
* @copyright Copyright (C) 2010-2025 Combodo SAS
|
||||
* @license http://opensource.org/licenses/AGPL-3.0
|
||||
*/
|
||||
|
||||
/* SCSS variables (can be overloaded) */
|
||||
$ipb-form-control--border-radius: $common-border-radius-300 !default;
|
||||
$ipb-form-control--box-shadow: none !default;
|
||||
$ipb-form-control--input-group-addon--border-top-right-radius: 0 !default;
|
||||
$ipb-form-control--input-group-addon--border-bottom-right-radius: 0 !default;
|
||||
|
||||
$ipb-input-group-addon--border-radius: $ipb-form-control--border-radius !default;
|
||||
|
||||
$ipb-input-group-addon--form-control--border-top-left-radius: 0 !default;
|
||||
$ipb-input-group-addon--form-control--border-bottom-left-radius: 0 !default;
|
||||
|
||||
$ipb-form-control--is-focused--border-color: $common-color-primary-700 !default;
|
||||
$ipb-form-control--is-focused--box-shadow: none !default;
|
||||
|
||||
.form-control {
|
||||
color: $ipb-form-control--color;
|
||||
border-radius: $common-border-radius-500 !important;
|
||||
border-radius: $ipb-form-control--border-radius;
|
||||
-webkit-box-shadow: $ipb-form-control--box-shadow;
|
||||
box-shadow: $ipb-form-control--box-shadow;
|
||||
&:focus {
|
||||
border-color: $ipb-form-control--is-focused--border-color;
|
||||
box-shadow: $ipb-form-control--is-focused--box-shadow;
|
||||
-webkit-box-shadow: $ipb-form-control--is-focused--box-shadow;
|
||||
}
|
||||
}
|
||||
|
||||
.form-control:has(+ .input-group-addon) {
|
||||
border-top-right-radius: $ipb-form-control--input-group-addon--border-top-right-radius;
|
||||
border-bottom-right-radius: $ipb-form-control--input-group-addon--border-bottom-right-radius;
|
||||
}
|
||||
|
||||
.form-control + .input-group-addon {
|
||||
border-top-left-radius: $ipb-input-group-addon--form-control--border-top-left-radius;
|
||||
border-bottom-left-radius: $ipb-input-group-addon--form-control--border-bottom-left-radius;
|
||||
}
|
||||
@@ -1,36 +1,28 @@
|
||||
/*
|
||||
* @copyright Copyright (C) 2010-2024 Combodo SAS
|
||||
* @copyright Copyright (C) 2010-2025 Combodo SAS
|
||||
* @license http://opensource.org/licenses/AGPL-3.0
|
||||
*/
|
||||
|
||||
/* SCSS variables */
|
||||
/* SCSS variables (can be overloaded) */
|
||||
$ipb-modal--max-height: 90vh !default;
|
||||
$ipb-modal--max-width: 90vw !default;
|
||||
$ipb-modal--border-radius: $common-border-radius-500 !default;
|
||||
|
||||
$ipb-modal--header--background-color: $common-color-white-100 !default;
|
||||
$ipb-modal--header--color: $common-color-grey-900 !default;
|
||||
$ipb-modal--header--padding: $common-spacing-500 !default;
|
||||
$ipb-modal--header--border-radius: $ipb-modal--border-radius $ipb-modal--border-radius 0 0 !default;
|
||||
|
||||
$ipb-modal--header--close--color: $common-color-grey-900 !default;
|
||||
$ipb-modal--header--close--opacity: 1 !default;
|
||||
$ipb-modal--header--close--hover--color: $common-color-grey-700 !default;
|
||||
$ipb-modal--footer-padding: $ipb-modal--header--padding !default;
|
||||
|
||||
$ipb-modal--backdrop--opacity: 0.6 !default;
|
||||
$ipb-modal--backdrop--background-color: $common-color-blue-grey-800 !default;
|
||||
$ipb-modal--backdrop--backdrop-filter: blur(2px) !default;
|
||||
|
||||
$ipb-modal--content--border-radius: $ipb-modal--border-radius !default;
|
||||
$ipb-modal--content--border: 1px solid $common-color-grey-400 !default;
|
||||
|
||||
$ipb-modal--title--color: $ipb-modal--header--color !default;
|
||||
$ipb-modal--title--to-clipboard--margin: $common-spacing-200 !default;
|
||||
$ipb-modal--title--span--margin-left: 5px !default;
|
||||
$ipb-modal--title--span--separator--margin-right: $common-spacing-200 !default;
|
||||
$ipb-modal--title--span--separator--width: $common-size-100 !default;
|
||||
$ipb-modal--title--span--separator--height: $ipb-modal--title--span--separator--width !default;
|
||||
$ipb-modal--title--span--separator--margin-right: $common-spacing-200 !default;
|
||||
$ipb-modal--title--span--separator--margin-top: calc(-1 * #{$ipb-modal--title--span--separator--height} / 2) !default;
|
||||
$ipb-modal--title--span--separator--border-radius: $common-border-radius-full !default;
|
||||
$ipb-modal--title--span--separator--background-color: $common-color-grey-800 !default;
|
||||
|
||||
|
||||
|
||||
@@ -40,40 +32,28 @@ $ipb-modal--title--span--separator--background-color: $common-color-grey-800 !de
|
||||
max-height: $ipb-modal--max-height !important;
|
||||
max-width: $ipb-modal--max-width !important;
|
||||
border-radius: $ipb-modal--border-radius;
|
||||
.modal-header {
|
||||
background-color: $ipb-modal--header--background-color;
|
||||
color: $ipb-modal--header--color;
|
||||
}
|
||||
}
|
||||
|
||||
.modal-backdrop.in {
|
||||
opacity: $ipb-modal--backdrop--opacity;
|
||||
background-color: $ipb-modal--backdrop--background-color;
|
||||
backdrop-filter: $ipb-modal--backdrop--backdrop-filter;
|
||||
}
|
||||
|
||||
.modal-content {
|
||||
border-radius: $ipb-modal--content--border-radius !important;
|
||||
border: $ipb-modal--content--border;
|
||||
box-shadow: none !important;
|
||||
-webkit-box-shadow: none !important;
|
||||
}
|
||||
|
||||
.modal-header {
|
||||
padding: $ipb-modal--header--padding;
|
||||
border-radius:$ipb-modal--header--border-radius !important;
|
||||
.close {
|
||||
color: $ipb-modal--header--close--color;
|
||||
opacity: $ipb-modal--header--close--opacity;
|
||||
|
||||
@extend %common-font-size-400;
|
||||
&:hover {
|
||||
color: $ipb-modal--header--close--hover--color;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.modal-footer {
|
||||
padding: $ipb-modal--footer-padding;
|
||||
}
|
||||
|
||||
.modal-title {
|
||||
color: $ipb-modal--title--color !important;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
|
||||
@@ -84,10 +64,10 @@ $ipb-modal--title--span--separator--background-color: $common-color-grey-800 !de
|
||||
display: inline-block;
|
||||
vertical-align: middle;
|
||||
margin-right: $ipb-modal--title--span--separator--margin-right;
|
||||
margin-top: $ipb-modal--title--span--separator--margin-top;
|
||||
width: $ipb-modal--title--span--separator--width;
|
||||
height: $ipb-modal--title--span--separator--height;
|
||||
border-radius: $ipb-modal--title--span--separator--border-radius;
|
||||
background-color: $ipb-modal--title--span--separator--background-color;
|
||||
}
|
||||
}
|
||||
.url-to-clipboard.url-to-clipboard-icon {
|
||||
|
||||
@@ -1,8 +1,12 @@
|
||||
/*
|
||||
* @copyright Copyright (C) 2010-2025 Combodo SAS
|
||||
* @license http://opensource.org/licenses/AGPL-3.0
|
||||
*/
|
||||
|
||||
/* SCSS variables (can be overloaded) */
|
||||
$ipb-panel--border-radius: $common-border-radius-300!default;
|
||||
|
||||
|
||||
.ipb-panel {
|
||||
border: 1px solid $common-color-grey-400;
|
||||
border-radius: 0 $common-border-radius-500 $common-border-radius-500 $common-border-radius-500;
|
||||
box-shadow: none;
|
||||
-webkit-box-shadow: none;
|
||||
|
||||
@@ -0,0 +1,19 @@
|
||||
$ipb-progress--height: $common-size-350 !default;
|
||||
$ipb-progress--border-radius: $common-border-radius-500 !default;
|
||||
|
||||
$ipb-progress--bar--line-height: $ipb-progress--height !default;
|
||||
$ipb-progress--bar--border-radius: $ipb-progress--border-radius !default;
|
||||
|
||||
.ipb-progress, .progress {
|
||||
height: $ipb-progress--height;
|
||||
border-radius: $ipb-progress--border-radius;
|
||||
}
|
||||
|
||||
.ipb-progress--bar, .progress-bar {
|
||||
background-color: $ipb-color-primary-600;
|
||||
color: #ffffff;
|
||||
line-height: $ipb-progress--bar--line-height;
|
||||
border-radius: $ipb-progress--bar--border-radius;
|
||||
|
||||
@extend %common-font-ral-med-150;
|
||||
}
|
||||
@@ -1,23 +1,29 @@
|
||||
@import "../../../../../../node_modules/bulma-scss/utilities/mixins";
|
||||
/*
|
||||
* @copyright Copyright (C) 2010-2025 Combodo SAS
|
||||
* @license http://opensource.org/licenses/AGPL-3.0
|
||||
*/
|
||||
|
||||
/* SCSS variables (can be overloaded) */
|
||||
@import "../node_modules/bulma-scss/utilities/mixins";
|
||||
|
||||
/* SCSS variables */
|
||||
$ipb-tile--width: 450px !default;
|
||||
$ipb-tile--min-width: 150px !default;
|
||||
$ipb-tile--padding: $common-spacing-500 !default;
|
||||
$ipb-tile--margin: $common-spacing-400 !default;
|
||||
$ipb-tile--border-color: $common-color-grey-200 !default;
|
||||
$ipb-tile--border-width: 1px !default;
|
||||
$ipb-tile--border-radius: $common-border-radius-500 !default;
|
||||
$ipb-tile--background-color: $common-color-white-100 !default;
|
||||
|
||||
$ipb-tile--decoration--size: 44px !default;
|
||||
$ipb-tile--decoration--padding: $common-spacing-400 !default;
|
||||
$ipb-tile--decoration--hover--background: common-adjust-alpha($common-color-blue-700, .1) !default;
|
||||
$ipb-tile--decoration--background: common-adjust-lightness($ipb-tile--decoration--hover--background, 38%) !default;
|
||||
$ipb-tile--decoration--icon--color: $common-color-blue-700 !default;
|
||||
$ipb-tile--decoration--icon--font-size: $common-font-size-250 !default;
|
||||
$ipb-tile--title--color: $common-base-variable--text-color !default;
|
||||
|
||||
$ipb-tile--title--font-size: $common-font-size-400 !default;
|
||||
$ipb-tile--description--color: $common-base-variable--text-color !default;
|
||||
|
||||
$ipb-tile--manage-brick--chart--margin-top: $common-spacing-500 !default;
|
||||
$ipb-tile--manage-brick--badge--margin-top: $common-font-size-400 !default;
|
||||
$ipb-tile--manage-brick--badge--count--padding: 0 $common-spacing-300 !default;
|
||||
$ipb-tile--manage-brick--badge--count--font-size: $common-font-size-300 !default;
|
||||
$ipb-tile--manage-brick--badge--label--font-size: $common-font-size-100 !default;
|
||||
$ipb-tile--manage-brick--top-list--margin-top: $common-spacing-500 !default;
|
||||
|
||||
.ipb-tile{
|
||||
position: relative;
|
||||
@@ -26,15 +32,12 @@ $ipb-tile--description--color: $common-base-variable--text-color !default;
|
||||
min-width: $ipb-tile--min-width;
|
||||
margin: $ipb-tile--margin;
|
||||
padding: $ipb-tile--padding;
|
||||
background-color: $ipb-tile--background-color;
|
||||
border: $ipb-tile--border-width solid $ipb-tile--border-color;
|
||||
border-radius: $ipb-tile--border-radius;
|
||||
white-space: normal;
|
||||
flex-grow: 1;
|
||||
|
||||
&[data-role="navigation-trigger"] {
|
||||
cursor: pointer;
|
||||
@include ipb-heavy-animated-border;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -68,7 +71,6 @@ $ipb-tile--description--color: $common-base-variable--text-color !default;
|
||||
width: $ipb-tile--decoration--size;
|
||||
height: $ipb-tile--decoration--size;
|
||||
padding: $ipb-tile--decoration--padding;
|
||||
background-color: $ipb-tile--decoration--background;
|
||||
border-radius: $ipb-tile--border-radius;
|
||||
text-align: center;
|
||||
transition: background-color 1s ease;
|
||||
@@ -81,15 +83,9 @@ $ipb-tile--description--color: $common-base-variable--text-color !default;
|
||||
}
|
||||
}
|
||||
}
|
||||
.ipb-tile:hover{
|
||||
.ipb-tile--decoration{
|
||||
background-color: $ipb-tile--decoration--hover--background;
|
||||
}
|
||||
}
|
||||
|
||||
.ipb-tile--decoration--icon {
|
||||
&.icon {
|
||||
color: $ipb-tile--decoration--icon--color;
|
||||
font-size: $ipb-tile--decoration--icon--font-size;
|
||||
}
|
||||
|
||||
@@ -102,7 +98,6 @@ $ipb-tile--description--color: $common-base-variable--text-color !default;
|
||||
|
||||
.ipb-tile--title{
|
||||
flex-grow: 1;
|
||||
color: $ipb-tile--title--color;
|
||||
font-size: $ipb-tile--title--font-size;
|
||||
font-weight: bold;
|
||||
@include ipb-text-overflow-ellipsis;
|
||||
@@ -126,8 +121,6 @@ $ipb-tile--description--color: $common-base-variable--text-color !default;
|
||||
/* description */
|
||||
|
||||
.ipb-tile--description{
|
||||
color: $ipb-tile--description--color;
|
||||
|
||||
@extend %common-font-ral-nor-150;
|
||||
}
|
||||
|
||||
@@ -144,36 +137,19 @@ $ipb-tile--description--color: $common-base-variable--text-color !default;
|
||||
/* ManageBrick tile display */
|
||||
/****************************/
|
||||
|
||||
$ipb-tile--manage-brick--chart--margin-top: $common-spacing-500 !default;
|
||||
$ipb-tile--manage-brick--badge--margin-top: $common-font-size-400 !default;
|
||||
$ipb-tile--manage-brick--badge--count--padding: 0 $common-spacing-300 !default;
|
||||
$ipb-tile--manage-brick--badge--count--font-size: $common-font-size-300 !default;
|
||||
$ipb-tile--manage-brick--badge--label--font-size: $common-font-size-100 !default;
|
||||
$ipb-tile--manage-brick--badge--hover--item--background: common-adjust-alpha($common-base-variable--text-color, .1) !default;
|
||||
$ipb-tile--manage-brick--top-list--margin-top: $common-spacing-500 !default;
|
||||
|
||||
/* title */
|
||||
|
||||
.ipb-tile--manage .ipb-tile--title {
|
||||
|
||||
display: flex;
|
||||
align-items: center;
|
||||
|
||||
> span:first-child {
|
||||
@include ipb-text-overflow-ellipsis;
|
||||
}
|
||||
|
||||
> span:nth-child(2) {
|
||||
@include ipb-following-dot;
|
||||
|
||||
> .class-icon {
|
||||
width: 20px;
|
||||
margin-left: 5px;
|
||||
vertical-align: baseline;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
/* chart */
|
||||
@@ -205,10 +181,6 @@ $ipb-tile--manage-brick--top-list--margin-top: $common-spacing-500 !default;
|
||||
font-size: $ipb-tile--manage-brick--badge--label--font-size;
|
||||
}
|
||||
|
||||
/* top list */
|
||||
|
||||
.ipb-tile--manage-brick--top-list {
|
||||
}
|
||||
|
||||
|
||||
/***********************/
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
@import "navigation-menu";
|
||||
@import "page";
|
||||
@import "home";
|
||||
@import "home";
|
||||
@import "tabs";
|
||||
@@ -1,4 +1,7 @@
|
||||
/* SCSS variables */
|
||||
/*
|
||||
* @copyright Copyright (C) 2010-2025 Combodo SAS
|
||||
* @license http://opensource.org/licenses/AGPL-3.0
|
||||
*/
|
||||
|
||||
.ipb-home .ipb-page--main-wrapper:before{
|
||||
content: '';
|
||||
@@ -8,8 +11,6 @@
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-image: url("../img/backgrounds/dots-left-top.svg");
|
||||
background-size: 30%;
|
||||
background-position-y: top;
|
||||
background-position-x: left;
|
||||
background-repeat: no-repeat;
|
||||
@@ -24,8 +25,6 @@
|
||||
right: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-image: url("../img/backgrounds/dots-right-bottom.svg");
|
||||
background-size: 30%;
|
||||
background-position-y: bottom;
|
||||
background-position-x: right;
|
||||
background-repeat: no-repeat;
|
||||
|
||||
@@ -1,7 +1,12 @@
|
||||
@import "../../../../../../node_modules/bulma-scss/utilities/mixins";
|
||||
/*
|
||||
* @copyright Copyright (C) 2010-2025 Combodo SAS
|
||||
* @license http://opensource.org/licenses/AGPL-3.0
|
||||
*/
|
||||
|
||||
/* SCSS variables (can be overloaded) */
|
||||
@import "../node_modules/bulma-scss/utilities/mixins";
|
||||
|
||||
$ipb-navigation-menu--flex-column-gap: $common-spacing-300 !default;
|
||||
$ipb-navigation-menu--background-color: $common-color-blue-grey-900 !default;
|
||||
$ipb-navigation-menu--nav-vertical--width: 60px !default;
|
||||
$ipb-navigation-menu--nav-vertical--is-expanded--width: 280px !default;
|
||||
$ipb-navigation-menu--nav-horizontal--height: 56px !default;
|
||||
@@ -14,16 +19,11 @@ $ipb-navigation-menu--menu-entry--wrapper--flex-column-gap: $common-spacing-500
|
||||
$ipb-navigation-menu--menu-entry--size: 44px !default;
|
||||
$ipb-navigation-menu--menu-entry--border-radius: $common-border-radius-500 !default;
|
||||
$ipb-navigation-menu--menu-entry--padding: $common-spacing-300 !default;
|
||||
$ipb-navigation-menu--menu-entry--active--icon--color: $common-color-orange-600 !default;
|
||||
$ipb-navigation-menu--menu-entry--active--color: $common-color-grey-800 !default;
|
||||
$ipb-navigation-menu--menu-entry--active--background-color: $common-color-white-100 !default;
|
||||
$ipb-navigation-menu--menu-entry--icon-size: 28px !default;
|
||||
$ipb-navigation-menu--menu-entry--font-size: 2rem !default;
|
||||
$ipb-navigation-menu--separator--width: $common-spacing-400 !default;
|
||||
$ipb-navigation-menu--menu-entry--more--background-color: #455a6447 !default;
|
||||
$ipb-navigation-menu--user-part--flex-column-gap: $common-spacing-300 !default;
|
||||
$ipb-navigation-menu--user-card--flex-column-gap: $common-spacing-300;
|
||||
$ipb-navigation-menu--user-card--photo--background-color: #585653 !default;
|
||||
$ipb-navigation-menu--user-card--photo--size: 36px !default;
|
||||
$dropdown-menu--items-remainder--padding: $common-spacing-300 !default;
|
||||
$dropdown-menu--items-remainder--border-radius: $common-border-radius-700 !default;
|
||||
@@ -36,18 +36,12 @@ $dropdown-menu--items-remainder--border-radius: $common-border-radius-700 !defau
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
border-radius: 0 $ipb-navigation-menu--border-radius $ipb-navigation-menu--border-radius 0;
|
||||
background-color: $ipb-navigation-menu--background-color;
|
||||
column-gap: $ipb-navigation-menu--flex-column-gap;
|
||||
|
||||
// in expanded state
|
||||
&.ipb-is-expanded {
|
||||
width: $ipb-navigation-menu--nav-vertical--is-expanded--width;
|
||||
|
||||
// expand menu toggle animation
|
||||
.ipb-navigation-menu--top-part--toggle--expand-menu {
|
||||
@include ipb-toggle-nav-animated-chevron-right;
|
||||
}
|
||||
|
||||
// make menu entry fill available space
|
||||
.ipb-navigation-menu--menu-entry--brick-item {
|
||||
width: 100%;
|
||||
@@ -83,11 +77,6 @@ $dropdown-menu--items-remainder--border-radius: $common-border-radius-700 !defau
|
||||
|
||||
}
|
||||
|
||||
// expand toggle menu
|
||||
.ipb-navigation-menu--top-part--toggle--expand-menu {
|
||||
@include ipb-toggle-nav;
|
||||
}
|
||||
|
||||
// SEPARATOR ////////////////////////////////////////////
|
||||
|
||||
.ipb-navigation-menu--separator {
|
||||
@@ -102,7 +91,6 @@ $dropdown-menu--items-remainder--border-radius: $common-border-radius-700 !defau
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
padding: 0 $ipb-navigation-menu--middle-part--is-vertical--padding;
|
||||
@include ipb-scrollbar;
|
||||
}
|
||||
|
||||
// menu entries
|
||||
@@ -119,22 +107,10 @@ $dropdown-menu--items-remainder--border-radius: $common-border-radius-700 !defau
|
||||
|
||||
// entry wrapper
|
||||
.ipb-navigation-menu--menu-entry--wrapper {
|
||||
|
||||
// entry title
|
||||
.ipb-navigation-menu--menu-entry--title {
|
||||
@include ipb-text-overflow-ellipsis;
|
||||
@extend %common-font-ral-nor-200;
|
||||
}
|
||||
|
||||
&.active .ipb-navigation-menu--menu-entry {
|
||||
background-color: $ipb-navigation-menu--menu-entry--active--background-color;
|
||||
color: $ipb-navigation-menu--menu-entry--active--color;
|
||||
|
||||
.ipb-navigation-menu--menu-entry--icon {
|
||||
color: $ipb-navigation-menu--menu-entry--active--icon--color;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
// menu entry
|
||||
@@ -151,8 +127,6 @@ $dropdown-menu--items-remainder--border-radius: $common-border-radius-700 !defau
|
||||
align-items: center;
|
||||
column-gap: $ipb-navigation-menu--menu-entry--wrapper--flex-column-gap;
|
||||
border-radius: $ipb-navigation-menu--menu-entry--border-radius;
|
||||
color: whitesmoke;
|
||||
@include ipb-transition(#{"background-color, color"});
|
||||
|
||||
// entry icon
|
||||
.ipb-navigation-menu--menu-entry--icon {
|
||||
@@ -161,13 +135,6 @@ $dropdown-menu--items-remainder--border-radius: $common-border-radius-700 !defau
|
||||
font-size: $ipb-navigation-menu--menu-entry--font-size;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
// hover and focus effect
|
||||
&:hover, &:focus:not(.ipb-not-focusable) {
|
||||
color: white;
|
||||
background-color: $common-color-blue-grey-700;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
// drop down items remainder
|
||||
@@ -178,7 +145,6 @@ $dropdown-menu--items-remainder--border-radius: $common-border-radius-700 !defau
|
||||
// drop down menu items remainder
|
||||
.ipb-dropdown-menu--items-remainder {
|
||||
padding: $dropdown-menu--items-remainder--padding;
|
||||
background-color: $ipb-navigation-menu--background-color;
|
||||
border-bottom-left-radius: $dropdown-menu--items-remainder--border-radius;
|
||||
border-bottom-right-radius: $dropdown-menu--items-remainder--border-radius;
|
||||
-webkit-box-shadow: none;
|
||||
@@ -195,7 +161,6 @@ $dropdown-menu--items-remainder--border-radius: $common-border-radius-700 !defau
|
||||
display: flex;
|
||||
align-items: center;
|
||||
column-gap: $ipb-navigation-menu--user-part--flex-column-gap;
|
||||
background-color: $common-color-grey-800;
|
||||
border-radius: 0 0 $ipb-navigation-menu--border-radius 0;
|
||||
|
||||
// toggle mobile menu
|
||||
@@ -213,7 +178,6 @@ $dropdown-menu--items-remainder--border-radius: $common-border-radius-700 !defau
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
@extend %common-font-ral-nor-150;
|
||||
color: white !important;
|
||||
text-decoration: none;
|
||||
overflow-x: hidden;
|
||||
|
||||
@@ -226,7 +190,6 @@ $dropdown-menu--items-remainder--border-radius: $common-border-radius-700 !defau
|
||||
background-size: 100%;
|
||||
background-position: center center;
|
||||
background-repeat: no-repeat;
|
||||
background-color: $ipb-navigation-menu--user-card--photo--background-color;
|
||||
border-radius: 100%;
|
||||
}
|
||||
|
||||
@@ -242,23 +205,12 @@ $dropdown-menu--items-remainder--border-radius: $common-border-radius-700 !defau
|
||||
.ipb-navigation-menu--user-card--name {
|
||||
flex-grow: 1;
|
||||
overflow-x: hidden;
|
||||
|
||||
> div {
|
||||
@include ipb-text-overflow-ellipsis;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
// MOBILE MENU ////////////////////////////////////////////
|
||||
|
||||
// mobile open toggle menu
|
||||
.ipb-navigation-menu--user-part--toggle--open-mobile-menu {
|
||||
@include ipb-toggle-nav;
|
||||
}
|
||||
|
||||
// mobile menu overlay
|
||||
.ipb-navigation-menu-overlay {
|
||||
display: none;
|
||||
@@ -267,7 +219,6 @@ $dropdown-menu--items-remainder--border-radius: $common-border-radius-700 !defau
|
||||
top: $ipb-navigation-menu--nav-horizontal--height;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
background-color: rgba(0, 0, 0, 0.28);
|
||||
z-index: 9998;
|
||||
}
|
||||
|
||||
@@ -405,9 +356,7 @@ $dropdown-menu--items-remainder--border-radius: $common-border-radius-700 !defau
|
||||
width: 100%;
|
||||
max-height: 0;
|
||||
padding: 0 12px;
|
||||
background-color: $ipb-navigation-menu--background-color;
|
||||
z-index: 9999;
|
||||
@include ipb-transition(max-height, ease, 0.5s);
|
||||
|
||||
.ipb-navigation-menu--menu-entries {
|
||||
margin: 15px 0;
|
||||
@@ -457,15 +406,7 @@ $dropdown-menu--items-remainder--border-radius: $common-border-radius-700 !defau
|
||||
.ipb-navigation-menu--middle-part {
|
||||
max-height: 100%;
|
||||
}
|
||||
|
||||
// toggle animation
|
||||
.ipb-navigation-menu--user-part--toggle--open-mobile-menu {
|
||||
@include ipb-toggle-nav-animated-cross;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -1,13 +1,16 @@
|
||||
@import "../../../../../../node_modules/bulma-scss/utilities/mixins";
|
||||
/*
|
||||
* @copyright Copyright (C) 2010-2025 Combodo SAS
|
||||
* @license http://opensource.org/licenses/AGPL-3.0
|
||||
*/
|
||||
|
||||
/* SCSS variables (can be overloaded) */
|
||||
@import "../node_modules/bulma-scss/utilities/mixins";
|
||||
|
||||
/* SCSS variables */
|
||||
$ipb-page--main-wrapper--padding: $common-spacing-600 $common-spacing-700 !default;
|
||||
$ipb-page--main-header--margin-bottom: $common-size-250 !default;
|
||||
$ipb-page--main-header--information--title--font-size: $common-font-size-450 !default;
|
||||
$ipb-page--main-header--information--title--color: $common-base-variable--text-color !default;
|
||||
$ipb-page--main-header--information--subtitle--padding: $common-spacing-200 !default;
|
||||
$ipb-page--main-header--information--subtitle--font-size: $common-font-size-250 !default;
|
||||
$ipb-page--main-header--information--subtitle--color: $common-base-variable--text-color !default;
|
||||
|
||||
html {
|
||||
font-size: 12px;
|
||||
@@ -48,16 +51,10 @@ body{
|
||||
.ipb-page--main-header--information--title{
|
||||
font-size: $ipb-page--main-header--information--title--font-size;
|
||||
font-weight: bold;
|
||||
color: $ipb-page--main-header--information--title--color;
|
||||
|
||||
> span ~ span {
|
||||
@include ipb-following-dot;
|
||||
}
|
||||
}
|
||||
|
||||
.ipb-page--main-header--information--subtitle{
|
||||
font-size: $ipb-page--main-header--information--subtitle--font-size;
|
||||
color: $ipb-page--main-header--information--subtitle--color;
|
||||
padding: $ipb-page--main-header--information--subtitle--padding;
|
||||
max-width: 1400px;
|
||||
}
|
||||
@@ -76,7 +73,6 @@ body{
|
||||
|
||||
.ipb-copyright {
|
||||
text-decoration: none !important;
|
||||
color: $common-color-secondary-800;
|
||||
}
|
||||
|
||||
@include mobile {
|
||||
@@ -97,6 +93,5 @@ body{
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -0,0 +1,42 @@
|
||||
/*
|
||||
* @copyright Copyright (C) 2010-2025 Combodo SAS
|
||||
* @license http://opensource.org/licenses/AGPL-3.0
|
||||
*/
|
||||
|
||||
/* SCSS variables (can be overloaded) */
|
||||
$ipb-tabs--tab--badge--border-radius: $common-border-radius-500 !default;
|
||||
$ipb-tabs--tab--badge--padding-y: 3px !default;
|
||||
$ipb-tabs--tab--badge--padding-x: 5px !default;
|
||||
$ipb-tabs--tab--badge--margin-left: $common-spacing-200 !default;
|
||||
|
||||
|
||||
$ipb-tabs--tab--active--indicator--width: $common-size-150 !default;
|
||||
$ipb-tabs--tab--active--indicator--height: $ipb-tabs--tab--active--indicator--width !default;
|
||||
$ipb-tabs--tab--active--indicator--margin-right: $common-spacing-300 !default;
|
||||
$ipb-tabs--tab--active--indicator--border-radius: $common-border-radius-full !default;
|
||||
|
||||
.ipb-tabs.nav-pills > li{
|
||||
> a {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
|
||||
@extend %common-font-ral-med-150;
|
||||
|
||||
> .badge {
|
||||
border-radius: $ipb-tabs--tab--badge--border-radius;
|
||||
padding: $ipb-tabs--tab--badge--padding-y $ipb-tabs--tab--badge--padding-x;
|
||||
margin-left: $ipb-tabs--tab--badge--margin-left;
|
||||
}
|
||||
}
|
||||
|
||||
&.active > a {
|
||||
&:before {
|
||||
content: " ";
|
||||
display: inline-block;
|
||||
width: $ipb-tabs--tab--active--indicator--width;
|
||||
height: $ipb-tabs--tab--active--indicator--height;
|
||||
margin-right: $ipb-tabs--tab--active--indicator--margin-right;
|
||||
border-radius: $ipb-tabs--tab--active--indicator--border-radius;
|
||||
}
|
||||
}
|
||||
}
|
||||
File diff suppressed because one or more lines are too long
@@ -1,7 +1,6 @@
|
||||
@import "utils/variables/path";
|
||||
@import 'common/main.scss';
|
||||
@import "utils/all";
|
||||
@import "mixins";
|
||||
@import "components/all";
|
||||
@import "vendors/all";
|
||||
@import "pages/all";
|
||||
|
||||
@@ -1,8 +0,0 @@
|
||||
/*
|
||||
* @copyright Copyright (C) 2010-2024 Combodo SAS
|
||||
* @license http://opensource.org/licenses/AGPL-3.0
|
||||
*/
|
||||
|
||||
/* SCSS variables (can be overloaded) */
|
||||
$ipb-body-text-color: $ipb-color-grey-900 !default;
|
||||
$ipb-body-background-color: $ipb-color-white-200 !default;
|
||||
@@ -1,14 +1,16 @@
|
||||
@import "../../../../../../../node_modules/bulma-scss/utilities/mixins";
|
||||
/*
|
||||
* @copyright Copyright (C) 2010-2025 Combodo SAS
|
||||
* @license http://opensource.org/licenses/AGPL-3.0
|
||||
*/
|
||||
|
||||
$ipb-browse-brick--mosaic-item--highlight-color: $common-color-blue-800, $common-color-orange-800, $common-color-green-800, $common-color-pink-800, $common-color-cyan-800, $common-color-yellow-800, $common-color-purple-800;
|
||||
/* SCSS variables (can be overloaded) */
|
||||
@import "../node_modules/bulma-scss/utilities/mixins";
|
||||
|
||||
$ipb-browse-brick-panel--row--margin: $common-spacing-0 !default;
|
||||
$ipb-browse-brick-panel--brick-content-toolbar--padding: $common-spacing-400 !default;
|
||||
|
||||
$ipb-content-mosaic--padding: $common-spacing-0 !default;
|
||||
$ipb-browse-brick--mosaic-breadcrumb--padding: $common-spacing-200 !default;
|
||||
$ipb-browse-brick--mosaic-breadcrumb--active--color: $common-color-grey-800 !default;
|
||||
$ipb-browse-brick--mosaic-breadcrumb--a--color: $common-color-primary-800 !default;
|
||||
|
||||
$ipb-browse-brick--mosaic--gap: $common-spacing-300 !default;
|
||||
$ipb-browse-brick--mosaic--small--grid-template-columns: 1fr !default;
|
||||
@@ -20,10 +22,7 @@ $ipb-browse-brick--mosaic-group-item--min-height: $common-size-550 !default;
|
||||
$ipb-browse-brick--mosaic-group-item--height: auto !default;
|
||||
$ipb-browse-brick--mosaic-group-item--width: 100% !default;
|
||||
$ipb-browse-brick--mosaic-group-item--margin: $common-spacing-0 !default;
|
||||
$ipb-browse-brick--mosaic-group-item--color: $common-base-variable--text-color !default;
|
||||
$ipb-browse-brick--mosaic-group-item--border: 1px solid $common-color-grey-300 !default;
|
||||
$ipb-browse-brick--mosaic-group-item--border-radius: $common-border-radius-300 !default;
|
||||
$ipb-browse-brick--mosaic-group-item--background-color: $common-color-white-100 !default;
|
||||
$ipb-browse-brick--mosaic-group-item--animation--transform-x: -20px !default;
|
||||
|
||||
$ipb-browse-brick--mosaic-group-item--actions--top: $common-spacing-500 !default;
|
||||
@@ -32,49 +31,30 @@ $ipb-browse-brick--mosaic-item--height: 100% !default;
|
||||
$ipb-browse-brick--mosaic-item--padding: $common-spacing-600 !default;
|
||||
$ipb-browse-brick--mosaic-item--margin: $common-spacing-0 !default;
|
||||
$ipb-browse-brick--mosaic-item--border-radius: $ipb-browse-brick--mosaic-group-item--border-radius !default;
|
||||
$ipb-browse-brick--mosaic-item--background-color: $common-color-white-100 !default;
|
||||
$ipb-browse-brick--mosaic-item--color: $common-base-variable--text-color !default;
|
||||
$ipb-browse-brick--mosaic-item--hover--color: inherit !default;
|
||||
$ipb-browse-brick--mosaic-item--hover--background-color--alpha: 0.05 !default;
|
||||
|
||||
$ipb-browse-brick--mosaic-item-description--color: $common-color-grey-800 !default;
|
||||
|
||||
$ipb-browse-brick--mosaic-item-image--height: 44px !default;
|
||||
$ipb-browse-brick--mosaic-item-image--width: 44px !default;
|
||||
$ipb-browse-brick--mosaic-item-image--border-radius: $common-border-radius-700 !default;
|
||||
$ipb-browse-brick--mosaic-item-image--padding: $common-spacing-0 !default;
|
||||
$ipb-browse-brick--mosaic-item-image--margin-bottom: $common-spacing-500 !default;
|
||||
$ipb-browse-brick--mosaic-item-image--background-color: common-adjust-alpha($common-color-blue-700, .1) !default;
|
||||
$ipb-browse-brick--mosaic-item-image--background-color--alpha: 0.1 !default;
|
||||
$ipb-browse-brick--mosaic-item-image--color: $common-color-blue-700 !default;
|
||||
|
||||
|
||||
$ipb-browse-brick--mosaic-item-image--img--height: $common-size-300 !default;
|
||||
|
||||
$ipb-browse-brick--mosaic-item-description--margin-top: $common-spacing-300 !default;
|
||||
|
||||
$ipb-browse-brick-panel--mosaic--background-color: transparent !default;
|
||||
$ipb-browse-brick-panel--mosaic--border: none !default;
|
||||
|
||||
$ipb-browse-brick-panel--dataTables_wrapper--padding-x: $common-spacing-0 !default;
|
||||
$ipb-browse-brick-panel--dataTables_wrapper--padding-y: $common-size-200 !default;
|
||||
$ipb-browse-brick-panel--dataTables_wrapper--row--div--padding-x: $common-size-200 !default;
|
||||
$ipb-browse-brick-panel--dataTables_wrapper--row--div--padding-y: $common-size-0 !default;
|
||||
|
||||
|
||||
$ipb-browse-brick--tree-item--color: $common-color-grey-900 !default;
|
||||
$ipb-browse-brick--tree-item--hyperlink--color: $common-hyperlink-color !default;
|
||||
|
||||
|
||||
$ipb-browse-brick--tree-item-filter-data--color: $common-color-grey-800 !default;
|
||||
$ipb-browse-brick--tree-item-filter-data--margin-top: $common-spacing-300 !default;
|
||||
$ipb-browse-brick--tree-item-filter-data--item--margin-y: $common-spacing-0 !default;
|
||||
$ipb-browse-brick--tree-item-filter-data--item--margin-x: $common-spacing-300 !default;
|
||||
|
||||
$ipb-browse-brick--tree-item--description--margin-top: $common-spacing-200 !default;
|
||||
$ipb-browse-brick--tree-item--description--color: $common-color-grey-800 !default;
|
||||
|
||||
$ipb-browse-brick--tree-item--wrapper--padding-top: $common-spacing-500 !default;
|
||||
$ipb-browse-brick--tree-item--wrapper--color: inherit !default;
|
||||
|
||||
$ipb-browse-brick--tree-item-image--height: $common-size-350 !default;
|
||||
$ipb-browse-brick--tree-item-image--width: $common-size-350 !default;
|
||||
@@ -90,18 +70,20 @@ $ipb-browse-brick--tree-item-image--has-glyphicon--margin-right: $common-spacing
|
||||
$ipb-browse-brick--tree-item--has-glyphicon--description--margin-left: 19px !default;
|
||||
|
||||
|
||||
$ipb-browse-brick--list-group-item--padding-y: $common-spacing-0 !default;
|
||||
$ipb-browse-brick--list-group-item--padding-x: $common-spacing-500 !default;
|
||||
$ipb-browse-brick--list-group-item--padding: $common-spacing-0 !default;
|
||||
$ipb-browse-brick--list-group-item--padding-left: $common-spacing-500 !default;
|
||||
$ipb-browse-brick--list-group-item--margin-bottom: -1px !default;
|
||||
$ipb-browse-brick--list-group-item--background-color: $common-color-white-100 !default;
|
||||
$ipb-browse-brick--list-group-item--border: 1px solid $common-color-grey-400 !default;
|
||||
|
||||
$ipb-browse-brick--list-group--margin-bottom: $common-spacing-0 !default;
|
||||
$ipb-browse-brick--list-group-item--tree-item-wrapper--padding-bottom: $common-spacing-500 !default;
|
||||
|
||||
|
||||
$ipb-browse-brick--list-group--tree--margin: $common-spacing-0 !default;
|
||||
$ipb-browse-brick--list-group--tree--background-color: $common-color-white-100 !default;
|
||||
|
||||
$ipb-browse-brick--no-item--illustration--max-width: 100% !default;
|
||||
$ipb-browse-brick--no-item--illustration--padding-y: $common-spacing-600 !default;
|
||||
$ipb-browse-brick--no-item--illustration--padding-x: $common-spacing-500 !default;
|
||||
$ipb-browse-brick--no-item--illustration--svg--max-width: $common-size-700 !default;
|
||||
|
||||
|
||||
// Common
|
||||
.ipb-browse-brick-panel {
|
||||
@@ -123,23 +105,13 @@ $ipb-browse-brick--list-group--tree--background-color: $common-color-white-100 !
|
||||
width: 100% !important;
|
||||
}
|
||||
|
||||
// Mosaic view
|
||||
.page_browse_brick_as_mosaic .ipb-browse-brick-panel{
|
||||
background-color: $ipb-browse-brick-panel--mosaic--background-color !important;
|
||||
border: $ipb-browse-brick-panel--mosaic--border !important;
|
||||
}
|
||||
// Mosaic view
|
||||
|
||||
#brick_content_mosaic{
|
||||
padding: $ipb-content-mosaic--padding;
|
||||
}
|
||||
#mosaic-breadcrumb {
|
||||
padding: $ipb-browse-brick--mosaic-breadcrumb--padding;
|
||||
a {
|
||||
color: $ipb-browse-brick--mosaic-breadcrumb--a--color;
|
||||
}
|
||||
.active {
|
||||
color: $ipb-browse-brick--mosaic-breadcrumb--active--color;
|
||||
}
|
||||
}
|
||||
|
||||
.mosaic-group {
|
||||
@@ -173,23 +145,7 @@ $ipb-browse-brick--list-group--tree--background-color: $common-color-white-100 !
|
||||
height: $ipb-browse-brick--mosaic-group-item--height;
|
||||
width: $ipb-browse-brick--mosaic-group-item--width;
|
||||
margin: $ipb-browse-brick--mosaic-group-item--margin;
|
||||
color: $ipb-browse-brick--mosaic-group-item--color;
|
||||
border: $ipb-browse-brick--mosaic-group-item--border;
|
||||
border-radius: $ipb-browse-brick--mosaic-group-item--border-radius;
|
||||
background-color: $ipb-browse-brick--mosaic-group-item--background-color;
|
||||
|
||||
@for $i from 1 through length($ipb-browse-brick--mosaic-item--highlight-color) {
|
||||
&:nth-child(#{length($ipb-browse-brick--mosaic-item--highlight-color)}n + #{$i}){
|
||||
.mosaic-item:hover{
|
||||
background-color: common-adjust-alpha(nth($ipb-browse-brick--mosaic-item--highlight-color, $i), $ipb-browse-brick--mosaic-item--hover--background-color--alpha);
|
||||
}
|
||||
.mosaic-item-image {
|
||||
background-color: common-adjust-alpha(nth($ipb-browse-brick--mosaic-item--highlight-color, $i), $ipb-browse-brick--mosaic-item-image--background-color--alpha);
|
||||
color: nth($ipb-browse-brick--mosaic-item--highlight-color, $i);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
> .mosaic-group-item-actions {
|
||||
position: absolute;
|
||||
@@ -206,15 +162,7 @@ $ipb-browse-brick--list-group--tree--background-color: $common-color-white-100 !
|
||||
padding: $ipb-browse-brick--mosaic-item--padding;
|
||||
margin: $ipb-browse-brick--mosaic-item--margin;
|
||||
border-radius: $ipb-browse-brick--mosaic-item--border-radius;
|
||||
|
||||
background-color: $ipb-browse-brick--mosaic-item--background-color;
|
||||
color: $ipb-browse-brick--mosaic-item--color;
|
||||
transition: background-color 0.3s linear;
|
||||
|
||||
|
||||
&:hover {
|
||||
color: $ipb-browse-brick--mosaic-item--hover--color;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -229,7 +177,6 @@ $ipb-browse-brick--list-group--tree--background-color: $common-color-white-100 !
|
||||
|
||||
.mosaic-item-description {
|
||||
@extend %common-font-ral-nor-150;
|
||||
color: $ipb-browse-brick--mosaic-item-description--color;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -240,8 +187,6 @@ $ipb-browse-brick--list-group--tree--background-color: $common-color-white-100 !
|
||||
padding: $ipb-browse-brick--mosaic-item-image--padding;
|
||||
margin-bottom: $ipb-browse-brick--mosaic-item-image--margin-bottom;
|
||||
border-radius: $ipb-browse-brick--mosaic-item-image--border-radius;
|
||||
background-color: $ipb-browse-brick--mosaic-item-image--background-color;
|
||||
color: $ipb-browse-brick--mosaic-item-image--color;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
text-transform: capitalize;
|
||||
@@ -273,26 +218,22 @@ $ipb-browse-brick--list-group--tree--background-color: $common-color-white-100 !
|
||||
}
|
||||
|
||||
.list-group-item .list-group-item-text, .tree-item {
|
||||
color: $ipb-browse-brick--tree-item--color;
|
||||
|
||||
@extend %common-font-ral-bol-150;
|
||||
|
||||
& a {
|
||||
@extend %common-font-size-150;
|
||||
color: $ipb-browse-brick--tree-item--hyperlink--color;
|
||||
}
|
||||
}
|
||||
|
||||
.list-group.tree .list-group-item .list-group-item-description {
|
||||
display: block;
|
||||
margin-top: $ipb-browse-brick--tree-item--description--margin-top;
|
||||
color: $ipb-browse-brick--tree-item--description--color;
|
||||
|
||||
@extend %common-font-ral-nor-100;
|
||||
}
|
||||
|
||||
.list-group-item .tree-item-wrapper .tree-item-filter-data {
|
||||
margin-top: $ipb-browse-brick--tree-item-filter-data--margin-top;
|
||||
color: $ipb-browse-brick--tree-item-filter-data--color;
|
||||
@extend %common-font-ral-med-100;
|
||||
|
||||
> span:not(:last-child):after {
|
||||
@@ -300,7 +241,6 @@ $ipb-browse-brick--list-group--tree--background-color: $common-color-white-100 !
|
||||
margin: $ipb-browse-brick--tree-item-filter-data--item--margin-y $ipb-browse-brick--tree-item-filter-data--item--margin-x;
|
||||
}
|
||||
a {
|
||||
color: $ipb-browse-brick--tree-item-filter-data--color;
|
||||
font-size: $common-font-size-100 !important;
|
||||
}
|
||||
}
|
||||
@@ -308,32 +248,15 @@ $ipb-browse-brick--list-group--tree--background-color: $common-color-white-100 !
|
||||
#brick_content_tree .list-group-item>.tree-item-wrapper {
|
||||
display: flex;
|
||||
padding-top: $ipb-browse-brick--tree-item--wrapper--padding-top;
|
||||
color: $ipb-browse-brick--tree-item--wrapper--color;
|
||||
text-decoration: inherit;
|
||||
cursor: pointer
|
||||
}
|
||||
|
||||
.list-group-item {
|
||||
#brick_content_tree .list-group-item {
|
||||
display: block;
|
||||
position: relative;
|
||||
padding: $ipb-browse-brick--list-group-item--padding-y $ipb-browse-brick--list-group-item--padding-x;
|
||||
padding: $ipb-browse-brick--list-group-item--padding $ipb-browse-brick--list-group-item--padding $ipb-browse-brick--list-group-item--padding $ipb-browse-brick--list-group-item--padding-left;
|
||||
margin-bottom: $ipb-browse-brick--list-group-item--margin-bottom;
|
||||
background-color: $ipb-browse-brick--list-group-item--background-color;
|
||||
border: $ipb-browse-brick--list-group-item--border;
|
||||
border-bottom: none;
|
||||
|
||||
|
||||
@for $i from 1 through length($ipb-browse-brick--mosaic-item--highlight-color) {
|
||||
&:nth-child(#{length($ipb-browse-brick--mosaic-item--highlight-color)}n + #{$i - 1}) {
|
||||
&:hover {
|
||||
background-color: common-adjust-alpha(nth($ipb-browse-brick--mosaic-item--highlight-color, $i), $ipb-browse-brick--mosaic-item--hover--background-color--alpha);
|
||||
}
|
||||
> .tree-item-wrapper .tree-item-image {
|
||||
background-color: common-adjust-alpha(nth($ipb-browse-brick--mosaic-item--highlight-color, $i), $ipb-browse-brick--mosaic-item-image--background-color--alpha);
|
||||
color: nth($ipb-browse-brick--mosaic-item--highlight-color, $i);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -379,5 +302,20 @@ $ipb-browse-brick--list-group--tree--background-color: $common-color-white-100 !
|
||||
|
||||
.list-group.tree {
|
||||
margin: $ipb-browse-brick--list-group--tree--margin;
|
||||
background-color: $ipb-browse-brick--list-group--tree--background-color;
|
||||
}
|
||||
|
||||
.ipb-browse-brick--no-item--illustration {
|
||||
width: $ipb-browse-brick--no-item--illustration--max-width;
|
||||
display: flex;
|
||||
flex-direction: column;;
|
||||
padding: $ipb-browse-brick--no-item--illustration--padding-y $ipb-browse-brick--no-item--illustration--padding-x;
|
||||
> svg {
|
||||
max-width: $ipb-browse-brick--no-item--illustration--svg--max-width;
|
||||
height: inherit;
|
||||
align-self: center;
|
||||
}
|
||||
}
|
||||
|
||||
.ipb-browse-brick--no-item--text {
|
||||
@extend %common-font-ral-med-300;
|
||||
}
|
||||
@@ -1,3 +1,9 @@
|
||||
/*
|
||||
* @copyright Copyright (C) 2010-2025 Combodo SAS
|
||||
* @license http://opensource.org/licenses/AGPL-3.0
|
||||
*/
|
||||
|
||||
/* SCSS variables (can be overloaded) */
|
||||
$ipb-manage-brick--panel--body--padding-y: $common-spacing-500 !default;
|
||||
$ipb-manage-brick--panel--body--padding-x: $common-spacing-0 !default;
|
||||
|
||||
@@ -7,24 +13,15 @@ $ipb-manage-brick--panel--body--datatable--row--margin: $common-spacing-0 !defau
|
||||
$ipb-manage-brick--panel--body--datatable--row--padding-y: $common-spacing-0 !default;
|
||||
$ipb-manage-brick--panel--body--datatable--row--padding-x: $common-spacing-400 !default;
|
||||
|
||||
$ipb-manage-brick--tabs--tab--border: solid 1px $common-color-grey-400 !default;
|
||||
$ipb-manage-brick--tabs--tab--badge--border-radius: $common-border-radius-500 !default;
|
||||
$ipb-manage-brick--tabs--tab--badge--padding-y: 3px !default;
|
||||
$ipb-manage-brick--tabs--tab--badge--padding-x: 5px !default;
|
||||
$ipb-manage-brick--tabs--tab--badge--margin-left: $common-spacing-200 !default;
|
||||
|
||||
$ipb-manage-brick--tabs--tab--background-color: $common-color-grey-100 !default;
|
||||
$ipb-manage-brick--tabs--tab--color: $common-color-grey-900 !default;
|
||||
$ipb-manage-brick--tabs--tab--active--background-color: $common-color-white-100 !default;
|
||||
$ipb-manage-brick--tabs--tab--active--badge--background-color: $common-color-grey-200 !default;
|
||||
$ipb-manage-brick--tabs--tab--active--indicator--background-color: $common-color-primary-600 !default;
|
||||
$ipb-manage-brick--tabs--tab--active--indicator--width: $common-size-150 !default;
|
||||
$ipb-manage-brick--tabs--tab--active--indicator--height: $ipb-manage-brick--tabs--tab--active--indicator--width !default;
|
||||
$ipb-manage-brick--tabs--tab--active--indicator--margin-right: $common-spacing-300 !default;
|
||||
$ipb-manage-brick--tabs--tab--active--indicator--border-radius: $common-border-radius-full !default;
|
||||
|
||||
$ipb-manage-brick--panel--body--table--margin-top: $common-spacing-500 !default;
|
||||
|
||||
$ipb-manage-brick--no-result--illustration--width: 100% !default;
|
||||
$ipb-manage-brick--no-result--illustration--padding-y: $common-spacing-600 !default;
|
||||
$ipb-manage-brick--no-result--illustration--padding-x: $common-spacing-500 !default;
|
||||
$ipb-manage-brick--no-result--illustration--svg--max-width: $common-size-700 !default;
|
||||
|
||||
|
||||
.ipb-manage-brick--panel--body {
|
||||
padding: $ipb-manage-brick--panel--body--padding-y $ipb-manage-brick--panel--body--padding-x 0 $ipb-manage-brick--panel--body--padding-x;
|
||||
|
||||
@@ -40,79 +37,51 @@ $ipb-manage-brick--panel--body--table--margin-top: $common-spacing-500 !default;
|
||||
|
||||
|
||||
}
|
||||
.ipb-manage-brick--tabs.grouping_tabs.nav-pills > li{
|
||||
> a {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
background-color: $ipb-manage-brick--tabs--tab--background-color;
|
||||
color: $ipb-manage-brick--tabs--tab--color;
|
||||
|
||||
@extend %common-font-ral-med-150;
|
||||
|
||||
> .badge {
|
||||
color: $common-color-grey-900;
|
||||
background-color: transparent;
|
||||
border-radius: $ipb-manage-brick--tabs--tab--badge--border-radius;
|
||||
padding: $ipb-manage-brick--tabs--tab--badge--padding-y $ipb-manage-brick--tabs--tab--badge--padding-x;
|
||||
margin-left: $ipb-manage-brick--tabs--tab--badge--margin-left;
|
||||
}
|
||||
|
||||
border: $ipb-manage-brick--tabs--tab--border;
|
||||
border-bottom: none;
|
||||
}
|
||||
|
||||
&.active > a {
|
||||
background-color: $ipb-manage-brick--tabs--tab--active--background-color;
|
||||
|
||||
&:before {
|
||||
content: " ";
|
||||
display: inline-block;
|
||||
width: $ipb-manage-brick--tabs--tab--active--indicator--width;
|
||||
height: $ipb-manage-brick--tabs--tab--active--indicator--height;
|
||||
margin-right: $ipb-manage-brick--tabs--tab--active--indicator--margin-right;
|
||||
border-radius: $ipb-manage-brick--tabs--tab--active--indicator--border-radius;
|
||||
background-color: $ipb-manage-brick--tabs--tab--active--indicator--background-color;
|
||||
}
|
||||
|
||||
> .badge {
|
||||
background-color: $ipb-manage-brick--tabs--tab--active--badge--background-color;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.ipb-manage-brick--panel--body--table {
|
||||
margin-top: $ipb-manage-brick--panel--body--table--margin-top !important;
|
||||
}
|
||||
|
||||
.ipb-manage-brick--export-action {
|
||||
color: $common-color-grey-800;
|
||||
}
|
||||
|
||||
|
||||
.ipb-manage-brick--export-action--icon {
|
||||
float: right;
|
||||
}
|
||||
|
||||
$ipb-manage-brick--pie-chart--colors:
|
||||
$common-color-blue-400 $common-color-blue-950 "rgb(44, 160, 44)",
|
||||
$common-color-blue-500 $common-color-blue-950 "rgb(214, 39, 40)",
|
||||
$common-color-blue-600 $common-color-blue-100 "rgb(148, 103, 189)",
|
||||
$common-color-blue-700 $common-color-blue-100 "rgb(140, 86, 75)",
|
||||
$common-color-blue-800 $common-color-blue-100 "rgb(227, 119, 194)",
|
||||
$common-color-blue-900 $common-color-blue-100 "rgb(127, 127, 127)",
|
||||
$common-color-blue-950 $common-color-blue-100 "rgb(188, 189, 34)",
|
||||
$common-color-blue-100 $common-color-blue-950 "rgb(23, 190, 207)",
|
||||
$common-color-blue-200 $common-color-blue-950 "rgb(31, 119, 180)",
|
||||
$common-color-blue-300 $common-color-blue-950 "rgb(255, 127, 14)"
|
||||
!default;
|
||||
.ipb-export--feedback {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
@each $background, $text, $originalColor in $ipb-manage-brick--pie-chart--colors {
|
||||
.c3-chart-arc path[style="fill: #{$originalColor}; cursor: pointer; opacity: 1;"] {
|
||||
fill: $background !important;
|
||||
.ipb-export-message {
|
||||
@extend %common-font-ral-med-150;
|
||||
margin: $common-spacing-300 $common-spacing-0;
|
||||
}
|
||||
.c3-legend-item-tile[style="stroke: #{$originalColor}; pointer-events: none;"] {
|
||||
stroke: $background !important;
|
||||
|
||||
.ipb-export--illustration {
|
||||
align-self: center;
|
||||
margin: 24px 0;
|
||||
max-width: $common-size-650;
|
||||
max-height: $common-size-650;
|
||||
> svg {
|
||||
max-width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
}
|
||||
.c3-chart-arc:has(path[style="fill: #{$originalColor}; cursor: pointer; opacity: 1;"]) text {
|
||||
fill: $text !important;
|
||||
|
||||
.ipb-manage-brick--no-result--illustration {
|
||||
width: $ipb-manage-brick--no-result--illustration--width;
|
||||
display: flex;
|
||||
flex-direction: column;;
|
||||
padding: $ipb-manage-brick--no-result--illustration--padding-y $ipb-manage-brick--no-result--illustration--padding-x;
|
||||
> svg {
|
||||
max-width: $ipb-manage-brick--no-result--illustration--svg--max-width;
|
||||
height: inherit;
|
||||
align-self: center;
|
||||
}
|
||||
}
|
||||
|
||||
.ipb-manage-brick--no-result--text {
|
||||
@extend %common-font-ral-med-300;
|
||||
}
|
||||
@@ -1,5 +1,10 @@
|
||||
/*
|
||||
* @copyright Copyright (C) 2010-2025 Combodo SAS
|
||||
* @license http://opensource.org/licenses/AGPL-3.0
|
||||
*/
|
||||
|
||||
/* SCSS variables (can be overloaded) */
|
||||
$ipb-object-brick--url-to-clipboard--opacity: 0.5 !default;
|
||||
$ipb-object-brick--url-to-clipboard-tooltip-copied--color: $common-color-green-500!default;
|
||||
$ipb-object-brick--url-to-clipboard-tooltip-copied--margin-right: $common-spacing-200!default;
|
||||
|
||||
|
||||
@@ -15,6 +20,5 @@ $ipb-object-brick--url-to-clipboard-tooltip-copied--margin-right: $common-spacin
|
||||
}
|
||||
// Used for clipboard's tooltip, which is not part of .url-to-clipboard element
|
||||
.url-to-clipboard-tooltip-copied {
|
||||
color: $ipb-object-brick--url-to-clipboard-tooltip-copied--color;
|
||||
margin-right: $ipb-object-brick--url-to-clipboard-tooltip-copied--margin-right;
|
||||
}
|
||||
File diff suppressed because one or more lines are too long
@@ -15,10 +15,10 @@
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
*/
|
||||
@import '../../../../../css/common/main.scss';
|
||||
@import 'common/main.scss';
|
||||
@import 'variables.scss';
|
||||
@import "utils/all";
|
||||
@import '../../../../../node_modules/ckeditor5-itop-build/build/styles/compiled-theme';
|
||||
@import '../node_modules/ckeditor5-itop-build/build/styles/compiled-theme';
|
||||
|
||||
/*!
|
||||
* Combodo portal template v1.0.0
|
||||
@@ -275,201 +275,6 @@ footer{
|
||||
padding-top: 15px;
|
||||
}
|
||||
|
||||
//.home .tile{
|
||||
// display: block;
|
||||
// margin-bottom: 8px;
|
||||
// padding: 0em 1em;
|
||||
// min-height: 4em;
|
||||
// background-color: $white;
|
||||
// background-image: none;
|
||||
// border: none;
|
||||
// border-radius: 0px;
|
||||
// text-align: center;
|
||||
// text-decoration: none;
|
||||
// white-space: normal;
|
||||
// line-height: 4em;
|
||||
// box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
|
||||
//}
|
||||
//.home .tile .tile_decoration{
|
||||
// position: absolute;
|
||||
// top: 0.3em;
|
||||
// left: 2.5em;
|
||||
//}
|
||||
//.home .tile .tile_title{
|
||||
// font-weight: bold;
|
||||
// color: $gray;
|
||||
//}
|
||||
//
|
||||
//.home .tile .tile_title > span.icon {
|
||||
// color: $combodo-orange;
|
||||
//}
|
||||
//
|
||||
//.home .tile .tile_description{
|
||||
// display: none;
|
||||
// color: #555555;
|
||||
//}
|
||||
//
|
||||
//
|
||||
///**********************************/
|
||||
///* ManageBrick badge tile display */
|
||||
///**********************************/
|
||||
//.home a.tile.tile_badge > div {
|
||||
// display: table;
|
||||
// width: 100%;
|
||||
//}
|
||||
//
|
||||
//.home a.tile.tile_badge > div > div {
|
||||
// display: table-row;
|
||||
//}
|
||||
//
|
||||
//.home a.tile.tile_badge > div > div > div {
|
||||
// display: table-cell;
|
||||
//}
|
||||
//
|
||||
//@media (max-width: 768px) {
|
||||
// .home a.tile.tile_badge > div > div > div.tile_body div.tile_count {
|
||||
// position: absolute;
|
||||
// top: 0em;
|
||||
// right: 2em;
|
||||
// text-align: right;
|
||||
// font-size: 1.2em;
|
||||
// }
|
||||
// .home a.tile.tile_badge > div.tile_description {
|
||||
// display: none;
|
||||
// }
|
||||
//}
|
||||
//@media (min-width: 768px) {
|
||||
// .home .tile{
|
||||
// display: block;
|
||||
// margin-bottom: 25px;
|
||||
// padding: 40px 40px 30px 40px;
|
||||
// min-height: 10em;
|
||||
// text-align: left;
|
||||
// transition: all 0.2s linear;
|
||||
// }
|
||||
// .home .tile:hover{
|
||||
// box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.10);
|
||||
// }
|
||||
// .home .tile .tile_decoration{
|
||||
// display: block;
|
||||
// position: relative;
|
||||
// float: left;
|
||||
// top: 1.5em;
|
||||
// left: initial;
|
||||
// margin: 0px 30px 15px 0px;
|
||||
// }
|
||||
// .home .tile .tile_body{
|
||||
// display: block;
|
||||
// padding-left: 4.3em;
|
||||
// text-align: left;
|
||||
// line-height: 1.5em;
|
||||
// }
|
||||
// .home .tile .tile_title{
|
||||
// margin-bottom: 1em;
|
||||
// font-size: 1.0em;
|
||||
// }
|
||||
// .home .tile .tile_description{
|
||||
// display: block;
|
||||
// text-align: left;
|
||||
// }
|
||||
//
|
||||
// .home a.tile.tile_badge{
|
||||
// height: 10em;
|
||||
// overflow: hidden;
|
||||
// }
|
||||
// .home a.tile.tile_badge > div > div > div.tile_decoration{
|
||||
// top: unset;
|
||||
// vertical-align: middle;
|
||||
// }
|
||||
// .home a.tile.tile_badge > div > div > div.tile_decoration > span.icon {
|
||||
// font-size: 4em;
|
||||
// }
|
||||
// .home a.tile.tile_badge > div > div > div.tile_body{
|
||||
// position: relative;
|
||||
// padding: 0;
|
||||
// margin: 0;
|
||||
// vertical-align: middle;
|
||||
// text-align: right;
|
||||
// }
|
||||
// .home a.tile.tile_badge > div > div > div.tile_body .tile_title{
|
||||
// margin-top: 1em;
|
||||
// margin-bottom: 0;
|
||||
// font-size: 1em;
|
||||
// font-weight: normal;
|
||||
// }
|
||||
// .home a.tile.tile_badge > div > div > div.tile_body .tile_count{
|
||||
// position: absolute;
|
||||
// top: 0;
|
||||
// right: 0;
|
||||
// font-size: 2em;
|
||||
// font-weight: bold;
|
||||
// color: $gray;
|
||||
// }
|
||||
// .home a.tile.tile_badge .tile_description{
|
||||
// display: none;
|
||||
// }
|
||||
//}
|
||||
//@media (min-width: 992px) {
|
||||
// .home .tile{
|
||||
// min-height: 14em;
|
||||
// padding: 30px 40px 30px 40px;
|
||||
// }
|
||||
// .home .tile .tile_decoration > span.icon{
|
||||
// font-size: 4em;
|
||||
// }
|
||||
// .home .tile .tile_body{
|
||||
// padding-left: 6.3em;
|
||||
// }
|
||||
// .home .tile .tile_title{
|
||||
// font-size: 1.4em;
|
||||
// }
|
||||
// .home .tile .tile_description{
|
||||
// font-size: 1.2em;
|
||||
// }
|
||||
//
|
||||
// .home a.tile.tile_badge > div > div > div.tile_body .tile_title{
|
||||
// font-size: 1.2em;
|
||||
// }
|
||||
// .home a.tile.tile_badge > div > div > div.tile_body .tile_count{
|
||||
// font-size: 3em;
|
||||
// }
|
||||
// .home a.tile.tile_badge > div > div > div.tile_decoration > span.icon {
|
||||
// font-size: 4em;
|
||||
// }
|
||||
// .home a.tile.tile_badge .tile_description{
|
||||
// display: block;
|
||||
// font-size: 1em;
|
||||
// text-align: center;
|
||||
// }
|
||||
//}
|
||||
//@media (min-width: 1200px) {
|
||||
// .home .tile{
|
||||
// margin-bottom: 40px;
|
||||
// min-height: 15em;
|
||||
// padding: 40px 50px 30px 50px;
|
||||
// }
|
||||
// .home .tile .tile_decoration{
|
||||
// margin: 0px 40px 15px 0px;
|
||||
// top: 1.5em;
|
||||
// }
|
||||
// .home .tile .tile_decoration > span.icon{
|
||||
// font-size: 6em;
|
||||
// }
|
||||
// .home .tile .tile_body{
|
||||
// padding-left: 9.1em;
|
||||
// }
|
||||
// .home .tile .tile_title{
|
||||
// font-size: 1.5em;
|
||||
// }
|
||||
// .home .tile .tile_description{
|
||||
// font-size: 1.2em;
|
||||
// }
|
||||
//
|
||||
// .home a.tile.tile_badge > div > div > div.tile_decoration > span.icon {
|
||||
// font-size: 6em;
|
||||
// }
|
||||
//}
|
||||
|
||||
/********************/
|
||||
/* Modules settings */
|
||||
/********************/
|
||||
@@ -489,13 +294,7 @@ footer{
|
||||
#main-header-actions{
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
/* This is no longer necessary but we keep it just in case */
|
||||
/*#main-header-actions .btn-group .btn{
|
||||
padding: 0em 1.5em;
|
||||
line-height: 2.4em;
|
||||
font-size: 14px;
|
||||
background-image: none;
|
||||
}*/
|
||||
|
||||
@media (min-width: 768px) {
|
||||
#main-header:after{
|
||||
clear: both;
|
||||
|
||||
@@ -1,3 +1,9 @@
|
||||
@import 'common/main.scss';
|
||||
/* Import shame first as we want to override some of its styles */
|
||||
@import "shame";
|
||||
@import "../utils/all";
|
||||
@import "utils/all";
|
||||
@import "pages/all";
|
||||
@import "components/all";
|
||||
@import "vendors/all";
|
||||
@import "layout/all";
|
||||
@import "shame";
|
||||
@@ -1,35 +1,22 @@
|
||||
/*!
|
||||
* Copyright (C) 2013-2024 Combodo SAS
|
||||
*
|
||||
* This file is part of iTop.
|
||||
*
|
||||
* iTop is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* iTop is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
/*
|
||||
* @copyright Copyright (C) 2010-2025 Combodo SAS
|
||||
* @license http://opensource.org/licenses/AGPL-3.0
|
||||
*/
|
||||
|
||||
@import 'variables.scss';
|
||||
|
||||
/*!
|
||||
/*
|
||||
* Combodo portal theme v2.7.0
|
||||
* Based on Bootswatch Simplex
|
||||
*/
|
||||
/*!
|
||||
/*
|
||||
* bootswatch v3.3.5
|
||||
* Homepage: http://bootswatch.com
|
||||
* Copyright 2012-2015 Thomas Park
|
||||
* Licensed under MIT
|
||||
* Based on Bootstrap
|
||||
*/
|
||||
/*!
|
||||
/*
|
||||
* Bootstrap v3.3.5 (http://getbootstrap.com)
|
||||
* Copyright 2011-2015 Twitter, Inc.
|
||||
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
||||
@@ -49,10 +36,6 @@
|
||||
html {
|
||||
-webkit-tap-highlight-color: rgba(0, 0, 0, 0)
|
||||
}
|
||||
body {
|
||||
color: $text-color;
|
||||
background-color: $body-bg;
|
||||
}
|
||||
input,
|
||||
button,
|
||||
select,
|
||||
@@ -1374,15 +1357,6 @@ th {
|
||||
.table-bordered>thead>tr>td {
|
||||
border-bottom-width: 2px
|
||||
}
|
||||
.table-striped>tbody>tr:nth-of-type(odd) {
|
||||
background-color: $table-bg-accent;
|
||||
}
|
||||
.table-striped>tbody>tr:hover {
|
||||
background-color: $table-bg-hover;
|
||||
}
|
||||
.table-hover>tbody>tr:hover {
|
||||
background-color: $table-bg-hover;
|
||||
}
|
||||
table col[class*="col-"] {
|
||||
position: static;
|
||||
float: none;
|
||||
@@ -1394,111 +1368,6 @@ table th[class*="col-"] {
|
||||
float: none;
|
||||
display: table-cell
|
||||
}
|
||||
.table>thead>tr>td.active,
|
||||
.table>tbody>tr>td.active,
|
||||
.table>tfoot>tr>td.active,
|
||||
.table>thead>tr>th.active,
|
||||
.table>tbody>tr>th.active,
|
||||
.table>tfoot>tr>th.active,
|
||||
.table>thead>tr.active>td,
|
||||
.table>tbody>tr.active>td,
|
||||
.table>tfoot>tr.active>td,
|
||||
.table>thead>tr.active>th,
|
||||
.table>tbody>tr.active>th,
|
||||
.table>tfoot>tr.active>th {
|
||||
background-color: #f5f5f5
|
||||
}
|
||||
.table-hover>tbody>tr>td.active:hover,
|
||||
.table-hover>tbody>tr>th.active:hover,
|
||||
.table-hover>tbody>tr.active:hover>td,
|
||||
.table-hover>tbody>tr:hover>.active,
|
||||
.table-hover>tbody>tr.active:hover>th {
|
||||
background-color: #e8e8e8
|
||||
}
|
||||
.table>thead>tr>td.success,
|
||||
.table>tbody>tr>td.success,
|
||||
.table>tfoot>tr>td.success,
|
||||
.table>thead>tr>th.success,
|
||||
.table>tbody>tr>th.success,
|
||||
.table>tfoot>tr>th.success,
|
||||
.table>thead>tr.success>td,
|
||||
.table>tbody>tr.success>td,
|
||||
.table>tfoot>tr.success>td,
|
||||
.table>thead>tr.success>th,
|
||||
.table>tbody>tr.success>th,
|
||||
.table>tfoot>tr.success>th {
|
||||
background-color: $state-success-bg
|
||||
}
|
||||
.table-hover>tbody>tr>td.success:hover,
|
||||
.table-hover>tbody>tr>th.success:hover,
|
||||
.table-hover>tbody>tr.success:hover>td,
|
||||
.table-hover>tbody>tr:hover>.success,
|
||||
.table-hover>tbody>tr.success:hover>th {
|
||||
background-color: #d0e9c6
|
||||
}
|
||||
.table>thead>tr>td.info,
|
||||
.table>tbody>tr>td.info,
|
||||
.table>tfoot>tr>td.info,
|
||||
.table>thead>tr>th.info,
|
||||
.table>tbody>tr>th.info,
|
||||
.table>tfoot>tr>th.info,
|
||||
.table>thead>tr.info>td,
|
||||
.table>tbody>tr.info>td,
|
||||
.table>tfoot>tr.info>td,
|
||||
.table>thead>tr.info>th,
|
||||
.table>tbody>tr.info>th,
|
||||
.table>tfoot>tr.info>th {
|
||||
background-color: $state-info-bg
|
||||
}
|
||||
.table-hover>tbody>tr>td.info:hover,
|
||||
.table-hover>tbody>tr>th.info:hover,
|
||||
.table-hover>tbody>tr.info:hover>td,
|
||||
.table-hover>tbody>tr:hover>.info,
|
||||
.table-hover>tbody>tr.info:hover>th {
|
||||
background-color: #c4e3f3
|
||||
}
|
||||
.table>thead>tr>td.warning,
|
||||
.table>tbody>tr>td.warning,
|
||||
.table>tfoot>tr>td.warning,
|
||||
.table>thead>tr>th.warning,
|
||||
.table>tbody>tr>th.warning,
|
||||
.table>tfoot>tr>th.warning,
|
||||
.table>thead>tr.warning>td,
|
||||
.table>tbody>tr.warning>td,
|
||||
.table>tfoot>tr.warning>td,
|
||||
.table>thead>tr.warning>th,
|
||||
.table>tbody>tr.warning>th,
|
||||
.table>tfoot>tr.warning>th {
|
||||
background-color: $state-warning-bg
|
||||
}
|
||||
.table-hover>tbody>tr>td.warning:hover,
|
||||
.table-hover>tbody>tr>th.warning:hover,
|
||||
.table-hover>tbody>tr.warning:hover>td,
|
||||
.table-hover>tbody>tr:hover>.warning,
|
||||
.table-hover>tbody>tr.warning:hover>th {
|
||||
background-color: #faf2cc
|
||||
}
|
||||
.table>thead>tr>td.danger,
|
||||
.table>tbody>tr>td.danger,
|
||||
.table>tfoot>tr>td.danger,
|
||||
.table>thead>tr>th.danger,
|
||||
.table>tbody>tr>th.danger,
|
||||
.table>tfoot>tr>th.danger,
|
||||
.table>thead>tr.danger>td,
|
||||
.table>tbody>tr.danger>td,
|
||||
.table>tfoot>tr.danger>td,
|
||||
.table>thead>tr.danger>th,
|
||||
.table>tbody>tr.danger>th,
|
||||
.table>tfoot>tr.danger>th {
|
||||
background-color: $state-danger-bg
|
||||
}
|
||||
.table-hover>tbody>tr>td.danger:hover,
|
||||
.table-hover>tbody>tr>th.danger:hover,
|
||||
.table-hover>tbody>tr.danger:hover>td,
|
||||
.table-hover>tbody>tr:hover>.danger,
|
||||
.table-hover>tbody>tr.danger:hover>th {
|
||||
background-color: #ebcccc
|
||||
}
|
||||
.table-responsive {
|
||||
overflow-x: auto;
|
||||
min-height: 0.01%
|
||||
@@ -3165,31 +3034,16 @@ select[multiple].input-group-sm>.input-group-btn>.btn {
|
||||
border: 1px solid #dddddd
|
||||
}
|
||||
@media (min-width: 768px) {
|
||||
.nav-tabs.nav-justified>li>a {
|
||||
.nav-tabs.nav-justified > li > a {
|
||||
border-bottom: 1px solid #dddddd;
|
||||
border-radius: $border-radius-base $border-radius-base 0 0
|
||||
}
|
||||
.nav-tabs.nav-justified>.active>a,
|
||||
.nav-tabs.nav-justified>.active>a:hover,
|
||||
.nav-tabs.nav-justified>.active>a:focus {
|
||||
.nav-tabs.nav-justified > .active > a,
|
||||
.nav-tabs.nav-justified > .active > a:hover,
|
||||
.nav-tabs.nav-justified > .active > a:focus {
|
||||
border-bottom-color: #fcfcfc
|
||||
}
|
||||
}
|
||||
.nav-pills>li {
|
||||
float: left
|
||||
}
|
||||
.nav-pills>li>a {
|
||||
border-radius: $border-radius-base
|
||||
}
|
||||
.nav-pills>li+li {
|
||||
margin-left: 2px
|
||||
}
|
||||
.nav-pills>li.active>a,
|
||||
.nav-pills>li.active>a:hover,
|
||||
.nav-pills>li.active>a:focus {
|
||||
color: #ffffff;
|
||||
background-color: $brand-primary
|
||||
}
|
||||
.nav-stacked>li {
|
||||
float: none
|
||||
}
|
||||
@@ -6082,37 +5936,6 @@ table.dataTable{
|
||||
}
|
||||
}
|
||||
}
|
||||
/* ManageBrick grouping tabs. Should be placed somewhere else? */
|
||||
.grouping_tabs{
|
||||
&.nav-pills > li > a{
|
||||
color: #444;
|
||||
background-color: #F5F5F5;
|
||||
|
||||
&:hover,
|
||||
&:focus{
|
||||
text-decoration: none;
|
||||
background-color: #DDDDDD;
|
||||
}
|
||||
|
||||
> .badge{
|
||||
color: #ea7d1e;;
|
||||
background-color: transparent;
|
||||
}
|
||||
}
|
||||
&.nav-pills > li.active{
|
||||
> a,
|
||||
> a:hover,
|
||||
> a:focus{
|
||||
color: #444;
|
||||
background-color: #FCFCFC;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/* Temp */
|
||||
.label{
|
||||
|
||||
@@ -1,4 +1,9 @@
|
||||
/* SCSS variables */
|
||||
/*
|
||||
* @copyright Copyright (C) 2010-2025 Combodo SAS
|
||||
* @license http://opensource.org/licenses/AGPL-3.0
|
||||
*/
|
||||
|
||||
/* SCSS variables (can be overloaded) */
|
||||
$ipb-alert--message--color: $ipb-body-text-color !default;
|
||||
$ipb-alert--icon--font-size: $common-font-size-300 !default;
|
||||
$ipb-alert--icon--width: 24px !default;
|
||||
@@ -61,8 +66,8 @@ $ipb-alerts-colors: (
|
||||
$icon: map-get($alert-color, "icon");
|
||||
$background-color: common-adjust-alpha($color, .1);
|
||||
|
||||
.ipb-alert.alert-#{$name} {
|
||||
background: linear-gradient(113deg, $background-color 0px, $background-color 60px, transparent 60px), white;
|
||||
.ipb-alert.alert-#{$name}, .ipb-alert.ipb-is-#{$name} {
|
||||
background: linear-gradient(113deg, $background-color 0px, $background-color 60px, transparent 60px), $ipb-alert--background-color;
|
||||
border-left-color: $color;
|
||||
|
||||
&:before {
|
||||
|
||||
@@ -1,7 +1,13 @@
|
||||
@import "alert";
|
||||
@import "button";
|
||||
@import "caselog";
|
||||
@import "datatables";
|
||||
@import "dropdown";
|
||||
@import "form";
|
||||
@import "illustration";
|
||||
@import "input";
|
||||
@import "modal";
|
||||
@import "nav";
|
||||
@import "navigation-menu";
|
||||
@import "panel";
|
||||
@import "progress-bar";
|
||||
@import "tile";
|
||||
|
||||
@@ -1,33 +1,299 @@
|
||||
/* SCSS variables */
|
||||
$btn--border-radius: $common-border-radius-300 !default;
|
||||
$btn--active--color: $common-color-white-100 !default;
|
||||
$btn--active--background-color: $common-color-blue-grey-900 !default;
|
||||
/*
|
||||
* @copyright Copyright (C) 2010-2025 Combodo SAS
|
||||
* @license http://opensource.org/licenses/AGPL-3.0
|
||||
*/
|
||||
|
||||
.btn{
|
||||
border-radius: $btn--border-radius !important;
|
||||
}
|
||||
|
||||
.btn.active{
|
||||
background-color: #263238 !important;
|
||||
color: $btn--active--color !important;
|
||||
}
|
||||
|
||||
.btn-group .btn:first-child{
|
||||
border-top-right-radius: 0 !important;
|
||||
border-bottom-right-radius: 0 !important;
|
||||
}
|
||||
|
||||
.btn-group .btn:last-child{
|
||||
border-top-left-radius: 0 !important;
|
||||
border-bottom-left-radius: 0 !important;
|
||||
}
|
||||
|
||||
// todo
|
||||
.btn.btn-secondary:hover {
|
||||
color: unset;
|
||||
}
|
||||
|
||||
.btn.btn-secondary:active {
|
||||
color: unset;
|
||||
/* SCSS variables (can be overloaded) */
|
||||
$ipb-button-colors: (
|
||||
'' : (
|
||||
'primary': (
|
||||
'': (
|
||||
$ipb-color-blue-800,
|
||||
$ipb-color-white-100,
|
||||
$ipb-color-blue-900
|
||||
),
|
||||
':hover': (
|
||||
$ipb-color-blue-700,
|
||||
$ipb-color-white-100,
|
||||
$ipb-color-blue-800
|
||||
),
|
||||
':active': (
|
||||
$ipb-color-blue-900,
|
||||
$ipb-color-white-100,
|
||||
$ipb-color-blue-950
|
||||
),
|
||||
':disabled': (
|
||||
$ipb-color-blue-200,
|
||||
$ipb-color-blue-600,
|
||||
$ipb-color-blue-300
|
||||
),
|
||||
),
|
||||
'default': (
|
||||
'': (
|
||||
$ipb-color-white-100,
|
||||
$ipb-color-grey-800,
|
||||
$ipb-color-grey-600
|
||||
),
|
||||
':hover': (
|
||||
$ipb-color-grey-100,
|
||||
$ipb-color-grey-900,
|
||||
$ipb-color-grey-700
|
||||
),
|
||||
':active': (
|
||||
$ipb-color-grey-200,
|
||||
$ipb-color-grey-900,
|
||||
$ipb-color-grey-700
|
||||
),
|
||||
':disabled': (
|
||||
$ipb-color-grey-200,
|
||||
$ipb-color-grey-700,
|
||||
$ipb-color-grey-300
|
||||
),
|
||||
),
|
||||
'success': (
|
||||
'': (
|
||||
$ipb-color-success-900,
|
||||
$ipb-color-white-100,
|
||||
$ipb-color-success-900
|
||||
),
|
||||
':hover': (
|
||||
$ipb-color-success-800,
|
||||
$ipb-color-green-100,
|
||||
$ipb-color-success-900
|
||||
),
|
||||
':active': (
|
||||
$ipb-color-success-950,
|
||||
$ipb-color-green-100,
|
||||
$ipb-color-success-950
|
||||
),
|
||||
':disabled': (
|
||||
$ipb-color-grey-200,
|
||||
$ipb-color-grey-700,
|
||||
$ipb-color-grey-300
|
||||
),
|
||||
),
|
||||
'warning': (
|
||||
'': (
|
||||
$ipb-color-warning-700,
|
||||
$ipb-color-white-100,
|
||||
$ipb-color-warning-900
|
||||
),
|
||||
':hover': (
|
||||
$ipb-color-warning-600,
|
||||
$ipb-color-warning-100,
|
||||
$ipb-color-warning-700
|
||||
),
|
||||
':active': (
|
||||
$ipb-color-warning-800,
|
||||
$ipb-color-warning-100,
|
||||
$ipb-color-warning-900
|
||||
),
|
||||
':disabled': (
|
||||
$ipb-color-grey-200,
|
||||
$ipb-color-grey-700,
|
||||
$ipb-color-grey-300
|
||||
),
|
||||
),
|
||||
'danger': (
|
||||
'': (
|
||||
$ipb-color-danger-800,
|
||||
$ipb-color-white-100,
|
||||
$ipb-color-danger-900
|
||||
),
|
||||
':hover': (
|
||||
$ipb-color-danger-700,
|
||||
$ipb-color-danger-100,
|
||||
$ipb-color-danger-800
|
||||
),
|
||||
':active': (
|
||||
$ipb-color-danger-900,
|
||||
$ipb-color-danger-100,
|
||||
$ipb-color-danger-950
|
||||
),
|
||||
':disabled': (
|
||||
$ipb-color-grey-200,
|
||||
$ipb-color-grey-700,
|
||||
$ipb-color-grey-300
|
||||
),
|
||||
),
|
||||
'info': (
|
||||
'': (
|
||||
$ipb-color-information-800,
|
||||
$ipb-color-white-100,
|
||||
$ipb-color-information-900
|
||||
),
|
||||
':hover': (
|
||||
$ipb-color-information-700,
|
||||
$ipb-color-information-100,
|
||||
$ipb-color-information-800
|
||||
),
|
||||
':active': (
|
||||
$ipb-color-information-900,
|
||||
$ipb-color-information-100,
|
||||
$ipb-color-information-950
|
||||
),
|
||||
':disabled': (
|
||||
$ipb-color-grey-200,
|
||||
$ipb-color-grey-700,
|
||||
$ipb-color-grey-300
|
||||
),
|
||||
),
|
||||
),
|
||||
'alternative' : (
|
||||
'primary': (
|
||||
'': (
|
||||
$ipb-color-transparent,
|
||||
$ipb-color-blue-800,
|
||||
$ipb-color-transparent
|
||||
),
|
||||
':hover': (
|
||||
$ipb-color-blue-100,
|
||||
$ipb-color-blue-900,
|
||||
$ipb-color-blue-100
|
||||
),
|
||||
':active': (
|
||||
$ipb-color-blue-200,
|
||||
$ipb-color-blue-900,
|
||||
$ipb-color-blue-200
|
||||
),
|
||||
':disabled': (
|
||||
$ipb-color-blue-200,
|
||||
$ipb-color-blue-600,
|
||||
$ipb-color-blue-300
|
||||
),
|
||||
),
|
||||
'default': (
|
||||
'': (
|
||||
$ipb-color-transparent,
|
||||
$ipb-color-grey-800,
|
||||
$ipb-color-transparent
|
||||
),
|
||||
':hover': (
|
||||
$ipb-color-grey-200,
|
||||
$ipb-color-grey-900,
|
||||
$ipb-color-grey-200
|
||||
),
|
||||
':active': (
|
||||
$ipb-color-grey-300,
|
||||
$ipb-color-grey-900,
|
||||
$ipb-color-grey-300
|
||||
),
|
||||
':disabled': (
|
||||
$ipb-color-transparent,
|
||||
$ipb-color-grey-500,
|
||||
$ipb-color-transparent
|
||||
),
|
||||
),
|
||||
'success': (
|
||||
'': (
|
||||
$ipb-color-transparent,
|
||||
$ipb-color-success-900,
|
||||
$ipb-color-transparent
|
||||
),
|
||||
':hover': (
|
||||
$ipb-color-success-100,
|
||||
$ipb-color-success-900,
|
||||
$ipb-color-success-100
|
||||
),
|
||||
':active': (
|
||||
$ipb-color-success-200,
|
||||
$ipb-color-success-900,
|
||||
$ipb-color-success-200
|
||||
),
|
||||
':disabled': (
|
||||
$ipb-color-grey-200,
|
||||
$ipb-color-grey-700,
|
||||
$ipb-color-grey-300
|
||||
),
|
||||
),
|
||||
'warning': (
|
||||
'': (
|
||||
$ipb-color-transparent,
|
||||
$ipb-color-warning-800,
|
||||
$ipb-color-transparent
|
||||
),
|
||||
':hover': (
|
||||
$ipb-color-warning-100,
|
||||
$ipb-color-warning-900,
|
||||
$ipb-color-warning-100
|
||||
),
|
||||
':active': (
|
||||
$ipb-color-warning-200,
|
||||
$ipb-color-warning-900,
|
||||
$ipb-color-warning-200
|
||||
),
|
||||
':disabled': (
|
||||
$ipb-color-grey-200,
|
||||
$ipb-color-grey-700,
|
||||
$ipb-color-grey-300
|
||||
),
|
||||
),
|
||||
'danger': (
|
||||
'': (
|
||||
$ipb-color-transparent,
|
||||
$ipb-color-danger-800,
|
||||
$ipb-color-transparent
|
||||
),
|
||||
':hover': (
|
||||
$ipb-color-danger-100,
|
||||
$ipb-color-danger-800,
|
||||
$ipb-color-danger-100
|
||||
),
|
||||
':active': (
|
||||
$ipb-color-danger-200,
|
||||
$ipb-color-danger-800,
|
||||
$ipb-color-danger-200
|
||||
),
|
||||
':disabled': (
|
||||
$ipb-color-grey-200,
|
||||
$ipb-color-grey-700,
|
||||
$ipb-color-grey-300
|
||||
),
|
||||
),
|
||||
'info': (
|
||||
'': (
|
||||
$ipb-color-transparent,
|
||||
$ipb-color-information-800,
|
||||
$ipb-color-transparent
|
||||
),
|
||||
':hover': (
|
||||
$ipb-color-information-100,
|
||||
$ipb-color-information-800,
|
||||
$ipb-color-information-100
|
||||
),
|
||||
':active': (
|
||||
$ipb-color-information-200,
|
||||
$ipb-color-information-800,
|
||||
$ipb-color-information-200
|
||||
),
|
||||
':disabled': (
|
||||
$ipb-color-grey-200,
|
||||
$ipb-color-grey-700,
|
||||
$ipb-color-grey-300
|
||||
),
|
||||
),
|
||||
),
|
||||
) !default;
|
||||
$ipb-button--background-color: $ipb-color-white-100 !default;
|
||||
$ipb-button--color: $ipb-color-blue-800 !default;
|
||||
$ipb-button--border-color:$ipb-color-blue-700 !default;
|
||||
$ipb-button--border: solid 1px $ipb-button--border-color !default;
|
||||
|
||||
.ipb-button, .btn{
|
||||
background-color: $ipb-button--background-color !important;
|
||||
color: $ipb-button--color !important;
|
||||
border: $ipb-button--border;
|
||||
|
||||
@each $sType, $aColors in $ipb-button-colors {
|
||||
@each $sColor, $sPseudoClasses in $aColors {
|
||||
@each $sPseudoClass, $sAttributes in $sPseudoClasses {
|
||||
&.ipb-is-#{$sColor}#{if($sType != '', ".ipb-is-#{$sType}", '')}#{$sPseudoClass}, &.btn-#{$sColor}#{if($sType != '', ".#{$sType}", '')}#{$sPseudoClass} {
|
||||
background-color: nth($sAttributes, 1) !important;
|
||||
color: nth($sAttributes, 2) !important;
|
||||
border-color: nth($sAttributes, 3) !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -0,0 +1,285 @@
|
||||
/*
|
||||
* @copyright Copyright (C) 2010-2025 Combodo SAS
|
||||
* @license http://opensource.org/licenses/AGPL-3.0
|
||||
*/
|
||||
|
||||
/* SCSS variables (can be overloaded) */
|
||||
$messaging-self-primary-color: $ipb-color-blue-100 !default;
|
||||
$messaging-self-secondary-color: $ipb-color-blue-800 !default;
|
||||
$messaging-1st-peer-primary-color: $ipb-color-white-100 !default;
|
||||
$messaging-1st-peer-secondary-color: $ipb-color-grey-400 !default;
|
||||
$messaging-2nd-peer-primary-color: $ipb-color-white-100 !default;
|
||||
$messaging-2nd-peer-secondary-color: $ipb-color-grey-400 !default;
|
||||
$messaging-2nd-peer-secondary-color: $ipb-color-grey-400 !default;
|
||||
$messaging-3rd-peer-primary-color: $ipb-color-white-100 !default;
|
||||
$messaging-3rd-peer-secondary-color: $ipb-color-grey-300 !default;
|
||||
$messaging-4th-peer-primary-color: $ipb-color-white-100 !default;
|
||||
$messaging-4th-peer-secondary-color: $ipb-color-grey-400 !default;
|
||||
$messaging-5th-peer-primary-color: $ipb-color-white-100 !default;
|
||||
$messaging-5th-peer-secondary-color: $ipb-color-grey-400 !default;
|
||||
|
||||
$ipb-caselog-thread--border-color: $ipb-color-grey-400 !default;
|
||||
$ipb-caselog-thread--border: 1px solid $ipb-caselog-thread--border-color !default;
|
||||
|
||||
$ipb-caselog-thread--header--background-color: $ipb-color-white-100 !default;
|
||||
$ipb-caselog-thread--header--span--color: $ipb-color-grey-800 !default;
|
||||
|
||||
$ipb-caselog-thread--header-toggler--color: inherit !default;
|
||||
|
||||
$ipb-caselog-thread--header-toggler--hover--active-focus--color: inherit !default;
|
||||
|
||||
$ipb-caselog-thread--content--background-color: $ipb-color-grey-100 !default;
|
||||
|
||||
$ipb-caselog-thread--date--color: $ipb-color-grey-800 !default;
|
||||
|
||||
$ipb-caselog-thread--block-medallion--block-entries--border-color: $ipb-color-grey-200 !default;
|
||||
$ipb-caselog-thread--block-medallion--block-entries--border: 1px solid $ipb-caselog-thread--block-medallion--block-entries--border-color !default;
|
||||
|
||||
$ipb-caselog-thread--block-medallion--color: $ipb-color-blue-800 !default;
|
||||
$ipb-caselog-thread--block-medallion--background-color: $ipb-color-blue-100 !default;
|
||||
|
||||
$ipb-caselog-thread--block-user--color: $ipb-caselog-thread--block-medallion--color !default;
|
||||
|
||||
$ipb-caselog-thread--block-entries--background-color: $ipb-caselog-thread--block-medallion--background-color !default;
|
||||
$ipb-caselog-thread--block-entries--color: $ipb-caselog-thread--block-medallion--color !default;
|
||||
|
||||
$ipb-caselog-thread--block-entry--border-bottom-color: $ipb-color-grey-200 !default;
|
||||
$ipb-caselog-thread--block-entry--border-bottom: 1px solid $ipb-caselog-thread--block-entry--border-bottom-color !default;
|
||||
|
||||
$ipb-caselog-thread--block-entry-toggler--background-color: $ipb-caselog-thread--block-medallion--background-color !default;
|
||||
|
||||
$ipb-caselog-thread--block-me--block-entry--first--content--border-left-color: transparent !default;
|
||||
$ipb-caselog-thread--block-me--block-entry--first--content--border-right-color: $ipb-caselog-thread--block-medallion--background-color !default;
|
||||
|
||||
$ipb-caselog-thread--block-colors: (
|
||||
1: ($ipb-color-white-100, $ipb-color-grey-700),
|
||||
2: ($ipb-color-white-100, $ipb-color-grey-700),
|
||||
3: ($ipb-color-white-100, $ipb-color-grey-700),
|
||||
4: ($ipb-color-white-100, $ipb-color-grey-700),
|
||||
5: ($ipb-color-white-100, $ipb-color-grey-700)
|
||||
);
|
||||
|
||||
.ipb-caselog-thread {
|
||||
border: $ipb-caselog-thread--border;
|
||||
}
|
||||
|
||||
.ipb-caselog-thread--header{
|
||||
background-color: $ipb-caselog-thread--header--background-color;
|
||||
span{
|
||||
color: $ipb-caselog-thread--header--span--color;
|
||||
}
|
||||
}
|
||||
|
||||
.ipb-caselog-thread--header-toggler{
|
||||
color: $ipb-caselog-thread--header-toggler--color;
|
||||
|
||||
&:hover,
|
||||
&:active,
|
||||
&:focus{
|
||||
color: $ipb-caselog-thread--header-toggler--hover--active-focus--color;
|
||||
}
|
||||
}
|
||||
|
||||
.ipb-caselog-thread--block-medallion,
|
||||
.ipb-caselog-thread--block-entries{
|
||||
border: $ipb-caselog-thread--block-medallion--block-entries--border;
|
||||
}
|
||||
|
||||
.ipb-caselog-thread--content{
|
||||
background-color: $ipb-caselog-thread--content--background-color;
|
||||
}
|
||||
|
||||
.ipb-caselog-thread--date {
|
||||
color: $ipb-caselog-thread--date--color;
|
||||
}
|
||||
|
||||
.ipb-caselog-thread--block-medallion{
|
||||
color: $ipb-caselog-thread--block-medallion--color; /* .ipb-caselog-thread--block-entries color */
|
||||
background-color: $ipb-caselog-thread--block-medallion--background-color; /* .ipb-caselog-thread--block-entries background-color */
|
||||
}
|
||||
|
||||
.ipb-caselog-thread--block-user{
|
||||
color: $ipb-caselog-thread--block-user--color; /* .ipb-caselog-thread--block-entries background-color */
|
||||
}
|
||||
|
||||
.ipb-caselog-thread--block-entries{
|
||||
background-color: $ipb-caselog-thread--block-entries--background-color;
|
||||
color: $ipb-caselog-thread--block-entries--color;
|
||||
}
|
||||
|
||||
.ipb-caselog-thread--block-entry {
|
||||
border-bottom: $ipb-caselog-thread--block-entry--border-bottom;
|
||||
}
|
||||
|
||||
.ipb-caselog-thread--block-entry-toggler{
|
||||
background-color: $ipb-caselog-thread--block-entry-toggler--background-color; /* .ipb-caselog-thread--block-entries background-color */
|
||||
}
|
||||
|
||||
|
||||
.ipb-caselog-thread--block-me{
|
||||
.ipb-caselog-thread--block-entries{
|
||||
.ipb-caselog-thread--block-entry:first-child{
|
||||
.ipb-caselog-thread--block-entry-content:before{
|
||||
border-right-color: $ipb-caselog-thread--block-me--block-entry--first--content--border-left-color;
|
||||
border-left-color: $ipb-caselog-thread--block-me--block-entry--first--content--border-right-color; /* .ipb-caselog-thread--block-entries background-color */
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.ipb-caselog-thread--block-color-1{
|
||||
.ipb-caselog-thread--block-medallion{
|
||||
color: $messaging-1st-peer-secondary-color;
|
||||
background-color: $messaging-1st-peer-primary-color;
|
||||
}
|
||||
.ipb-caselog-thread--block-user{
|
||||
color: $messaging-1st-peer-primary-color;
|
||||
}
|
||||
.ipb-caselog-thread--block-entries{
|
||||
color: $messaging-1st-peer-secondary-color;
|
||||
background-color: $messaging-1st-peer-primary-color;
|
||||
|
||||
.ipb-caselog-thread--block-entry{
|
||||
.ipb-caselog-thread--block-entry-toggler{
|
||||
background-color: $messaging-1st-peer-primary-color;
|
||||
}
|
||||
}
|
||||
.ipb-caselog-thread--block-entry:first-child{
|
||||
.ipb-caselog-thread--block-entry-content:before{
|
||||
border-top-color: $messaging-1st-peer-primary-color;
|
||||
border-right-color: $messaging-1st-peer-primary-color;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.ipb-caselog-thread--block-color-2{
|
||||
.ipb-caselog-thread--block-medallion{
|
||||
color: $messaging-2nd-peer-secondary-color;
|
||||
background-color: $messaging-2nd-peer-primary-color;
|
||||
}
|
||||
.ipb-caselog-thread--block-user{
|
||||
color: $messaging-2nd-peer-primary-color;
|
||||
}
|
||||
.ipb-caselog-thread--block-entries{
|
||||
color: $messaging-2nd-peer-secondary-color;
|
||||
background-color: $messaging-2nd-peer-primary-color;
|
||||
|
||||
.ipb-caselog-thread--block-entry{
|
||||
.ipb-caselog-thread--block-entry-toggler{
|
||||
background-color: $messaging-2nd-peer-primary-color;
|
||||
}
|
||||
}
|
||||
.ipb-caselog-thread--block-entry:first-child{
|
||||
.ipb-caselog-thread--block-entry-content:before{
|
||||
border-top-color: $messaging-2nd-peer-primary-color;
|
||||
border-right-color: $messaging-2nd-peer-primary-color;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.ipb-caselog-thread--block-color-3{
|
||||
.ipb-caselog-thread--block-medallion{
|
||||
color: $messaging-3rd-peer-secondary-color;
|
||||
background-color: $messaging-3rd-peer-primary-color;
|
||||
}
|
||||
.ipb-caselog-thread--block-user{
|
||||
color: $messaging-3rd-peer-primary-color;
|
||||
}
|
||||
.ipb-caselog-thread--block-entries{
|
||||
color: $messaging-3rd-peer-secondary-color;
|
||||
background-color: $messaging-3rd-peer-primary-color;
|
||||
|
||||
.ipb-caselog-thread--block-entry{
|
||||
.ipb-caselog-thread--block-entry-toggler{
|
||||
background-color: $messaging-3rd-peer-primary-color;
|
||||
}
|
||||
}
|
||||
.ipb-caselog-thread--block-entry:first-child{
|
||||
.ipb-caselog-thread--block-entry-content:before{
|
||||
border-top-color: $messaging-3rd-peer-primary-color;
|
||||
border-right-color: $messaging-3rd-peer-primary-color;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.ipb-caselog-thread--block-color-4{
|
||||
.ipb-caselog-thread--block-medallion{
|
||||
color: $messaging-4th-peer-secondary-color;
|
||||
background-color: $messaging-4th-peer-primary-color;
|
||||
}
|
||||
.ipb-caselog-thread--block-user{
|
||||
color: $messaging-4th-peer-primary-color;
|
||||
}
|
||||
.ipb-caselog-thread--block-entries{
|
||||
color: $messaging-4th-peer-secondary-color;
|
||||
background-color: $messaging-4th-peer-primary-color;
|
||||
|
||||
.ipb-caselog-thread--block-entry{
|
||||
.ipb-caselog-thread--block-entry-toggler{
|
||||
background-color: $messaging-4th-peer-primary-color;
|
||||
}
|
||||
}
|
||||
.ipb-caselog-thread--block-entry:first-child{
|
||||
.ipb-caselog-thread--block-entry-content:before{
|
||||
border-top-color: $messaging-4th-peer-primary-color;
|
||||
border-right-color: $messaging-4th-peer-primary-color;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.ipb-caselog-thread--block-color-5{
|
||||
.ipb-caselog-thread--block-medallion{
|
||||
color: $messaging-5th-peer-secondary-color;
|
||||
background-color: $messaging-5th-peer-primary-color;
|
||||
}
|
||||
.ipb-caselog-thread--block-user{
|
||||
color: $messaging-5th-peer-primary-color;
|
||||
}
|
||||
.ipb-caselog-thread--block-entries{
|
||||
color: $messaging-5th-peer-secondary-color;
|
||||
background-color: $messaging-5th-peer-primary-color;
|
||||
|
||||
|
||||
.ipb-caselog-thread--block-entry{
|
||||
.ipb-caselog-thread--block-entry-toggler{
|
||||
background-color: $messaging-5th-peer-primary-color;
|
||||
}
|
||||
}
|
||||
.ipb-caselog-thread--block-entry:first-child{
|
||||
.ipb-caselog-thread--block-entry-content:before{
|
||||
border-top-color: $messaging-5th-peer-primary-color;
|
||||
border-right-color: $messaging-5th-peer-primary-color;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@each $index, $colors in $ipb-caselog-thread--block-colors {
|
||||
.ipb-caselog-thread--block-color-#{$index} {
|
||||
.ipb-caselog-thread--block-medallion {
|
||||
color: nth($colors, 2);
|
||||
background-color: nth($colors, 1);
|
||||
}
|
||||
.ipb-caselog-thread--block-user {
|
||||
color: nth($colors, 1);
|
||||
}
|
||||
.ipb-caselog-thread--block-entries {
|
||||
color: nth($colors, 2);
|
||||
background-color: nth($colors, 1);
|
||||
|
||||
.ipb-caselog-thread--block-entry {
|
||||
.ipb-caselog-thread--block-entry-toggler {
|
||||
background-color: nth($colors, 1);
|
||||
}
|
||||
}
|
||||
.ipb-caselog-thread--block-entry:first-child {
|
||||
.ipb-caselog-thread--block-entry-content:before {
|
||||
border-top-color: nth($colors, 1);
|
||||
border-right-color: nth($colors, 1);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,3 +1,9 @@
|
||||
/*
|
||||
* @copyright Copyright (C) 2010-2025 Combodo SAS
|
||||
* @license http://opensource.org/licenses/AGPL-3.0
|
||||
*/
|
||||
|
||||
/* SCSS variables (can be overloaded) */
|
||||
$ibo-vendors-datatables--column-sorting-icon--opacity: 0.3 !default;
|
||||
$ibo-vendors-datatables--column-sorting-icon--opacity--is-sorted: 1 !default;
|
||||
$ibo-vendors-datatables--column-sorting-icon--content: "\f0dc" !default;
|
||||
|
||||
@@ -0,0 +1,33 @@
|
||||
/*
|
||||
* @copyright Copyright (C) 2010-2025 Combodo SAS
|
||||
* @license http://opensource.org/licenses/AGPL-3.0
|
||||
*/
|
||||
|
||||
/* SCSS variables (can be overloaded) */
|
||||
$ipb-dropdown--background-color: $ipb-color-white-100 !default;
|
||||
$ipb-dropdown--border-color: $ipb-color-grey-300 !default;
|
||||
$ipb-dropdown--border: 1px solid $ipb-dropdown--border-color !default;
|
||||
|
||||
$ipb-dropdown--li--background-color: $ipb-dropdown--background-color !default;
|
||||
|
||||
$ipb-dropdown--a--color: $ipb-color-grey-900 !default;
|
||||
|
||||
$ipb-dropdown--li--hover--background-color: $ipb-color-grey-200 !default;
|
||||
$ipb-dropdown--li--hover--a--color: $ipb-color-grey-800 !default;
|
||||
|
||||
ipb-dropdown {
|
||||
background-color: $ipb-dropdown--background-color;
|
||||
border: $ipb-dropdown--border;
|
||||
li {
|
||||
background-color: $ipb-dropdown--li--background-color;
|
||||
a {
|
||||
color: $ipb-dropdown--a--color;
|
||||
}
|
||||
&:hover {
|
||||
background: $ipb-dropdown--li--hover--background-color;
|
||||
a {
|
||||
color: $ipb-dropdown--li--hover--a--color;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,37 @@
|
||||
/*
|
||||
* @copyright Copyright (C) 2010-2025 Combodo SAS
|
||||
* @license http://opensource.org/licenses/AGPL-3.0
|
||||
*/
|
||||
|
||||
/* SCSS variables (can be overloaded) */
|
||||
$ipb--fieldset--background-color: $ipb-color-grey-50 !default;
|
||||
$ipb--fieldset--border-color: $ipb-color-grey-200 !default;
|
||||
$ipb--fieldset--border: 1px solid $ipb--fieldset--border-color !default;
|
||||
|
||||
$ipb--fieldset--inside--fieldset--background-color: $ipb-color-grey-100 !default;
|
||||
|
||||
$ipb-field--has-tooltip--content: "\f05a" !default;
|
||||
$ipb-field--has-tooltip--color: $ipb-color-grey-700 !default;
|
||||
|
||||
$ipb-field--is-mandatory--content: "\f069" !default;
|
||||
$ipb-field--is-mandatory--color: $ipb-color-primary-700 !default;
|
||||
|
||||
.form_fields {
|
||||
fieldset {
|
||||
background-color: $ipb--fieldset--background-color;
|
||||
border: $ipb--fieldset--border;
|
||||
fieldset {
|
||||
background-color: $ipb--fieldset--inside--fieldset--background-color;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.form_field_label > .control-label[data-tooltip-instantiated="true"]:after {
|
||||
content: $ipb-field--has-tooltip--content;
|
||||
color: $ipb-field--has-tooltip--color;
|
||||
}
|
||||
|
||||
.form_field .form_mandatory .control-label:after{
|
||||
content: $ipb-field--is-mandatory--content;
|
||||
color: $ipb-field--is-mandatory--color;
|
||||
};
|
||||
@@ -0,0 +1,11 @@
|
||||
/*
|
||||
* @copyright Copyright (C) 2010-2025 Combodo SAS
|
||||
* @license http://opensource.org/licenses/AGPL-3.0
|
||||
*/
|
||||
|
||||
/* SCSS variables (can be overloaded) */
|
||||
$ipb-svg-illustration--fill: $ipb-color-primary-700 !default;
|
||||
|
||||
.ipb-svg-illustration--container > svg *[fill="#6c63ff"]{
|
||||
fill: $ipb-svg-illustration--fill;
|
||||
}
|
||||
@@ -1,7 +1,27 @@
|
||||
/* SCSS variables */
|
||||
$form-control--border-radius: $common-border-radius-300 !default;
|
||||
/*
|
||||
* @copyright Copyright (C) 2010-2025 Combodo SAS
|
||||
* @license http://opensource.org/licenses/AGPL-3.0
|
||||
*/
|
||||
|
||||
/* SCSS variables (can be overloaded) */
|
||||
$ipb-form-control--color: $common-color-grey-800 !default;
|
||||
$ipb-form-control--is-focused--border-color: $common-color-primary-700 !default;
|
||||
|
||||
$ipb-input-group-addon--border-color: $ipb-color-grey-300 !default;
|
||||
$ipb-input-group-addon--border: 1px solid $ipb-input-group-addon--border-color !default;
|
||||
$ipb-input-group-addon--background-color: $common-color-grey-100 !default;
|
||||
$ipb-input-group-addon--color: $common-color-grey-800 !default;
|
||||
|
||||
|
||||
.form-control {
|
||||
border-radius: $form-control--border-radius!important;
|
||||
color: $ipb-form-control--color;
|
||||
&:focus {
|
||||
border-color: $ipb-form-control--is-focused--border-color;
|
||||
}
|
||||
}
|
||||
|
||||
.input-group-addon {
|
||||
border: $ipb-input-group-addon--border;
|
||||
background-color: $ipb-input-group-addon--background-color;
|
||||
color: $ipb-input-group-addon--color;
|
||||
}
|
||||
@@ -0,0 +1,62 @@
|
||||
/*
|
||||
* @copyright Copyright (C) 2010-2025 Combodo SAS
|
||||
* @license http://opensource.org/licenses/AGPL-3.0
|
||||
*/
|
||||
|
||||
/* SCSS variables (can be overloaded) */
|
||||
$ipb-modal--header--background-color: $ipb-color-white-100 !default;
|
||||
$ipb-modal--header--color: $ipb-color-grey-900 !default;
|
||||
|
||||
$ipb-modal--header--close--color: $ipb-color-grey-900 !default;
|
||||
$ipb-modal--header--close--opacity: 1 !default;
|
||||
$ipb-modal--header--close--hover--color: $ipb-color-grey-700 !default;
|
||||
|
||||
$ipb-modal--backdrop--opacity: 0.6 !default;
|
||||
$ipb-modal--backdrop--background-color: $ipb-color-blue-grey-800 !default;
|
||||
$ipb-modal--backdrop--backdrop-filter: blur(2px) !default;
|
||||
|
||||
$ipb-modal--content--border-color: $ipb-color-grey-400 !default;
|
||||
$ipb-modal--content--border: 1px solid $ipb-modal--content--border-color !default;
|
||||
|
||||
$ipb-modal--title--color: $ipb-modal--header--color !default;
|
||||
|
||||
$ipb-modal--title--span--separator--background-color: $ipb-color-grey-800 !default;
|
||||
|
||||
|
||||
|
||||
.modal .modal-dialog{
|
||||
|
||||
.modal-header {
|
||||
background-color: $ipb-modal--header--background-color;
|
||||
color: $ipb-modal--header--color;
|
||||
}
|
||||
}
|
||||
|
||||
.modal-backdrop.in {
|
||||
background-color: common-adjust-alpha($ipb-modal--backdrop--background-color, $ipb-modal--backdrop--opacity);
|
||||
backdrop-filter: $ipb-modal--backdrop--backdrop-filter;
|
||||
}
|
||||
|
||||
.modal-content {
|
||||
border: $ipb-modal--content--border;
|
||||
}
|
||||
|
||||
.modal-header {
|
||||
.close {
|
||||
color: $ipb-modal--header--close--color;
|
||||
opacity: $ipb-modal--header--close--opacity;
|
||||
&:hover {
|
||||
color: $ipb-modal--header--close--hover--color;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.modal-title {
|
||||
color: $ipb-modal--title--color !important;
|
||||
|
||||
span ~ span {
|
||||
&:before {
|
||||
background-color: $ipb-modal--title--span--separator--background-color;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,4 +1,9 @@
|
||||
/* SCSS variables */
|
||||
/*
|
||||
* @copyright Copyright (C) 2010-2025 Combodo SAS
|
||||
* @license http://opensource.org/licenses/AGPL-3.0
|
||||
*/
|
||||
|
||||
/* SCSS variables (can be overloaded) */
|
||||
$nav-pills--li--border-radius: $common-border-radius-300 !default;
|
||||
|
||||
.nav-pills > li > a{
|
||||
|
||||
@@ -1,10 +0,0 @@
|
||||
.nav > li {
|
||||
display: flex;
|
||||
}
|
||||
.nav > li > a {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.navbar-default .navbar-nav > li > a {
|
||||
color: $common-color-grey-300;
|
||||
}
|
||||
@@ -1,8 +1,27 @@
|
||||
/* SCSS variables */
|
||||
$panel--border-radius: $common-border-radius-300!default;
|
||||
/*
|
||||
* @copyright Copyright (C) 2010-2025 Combodo SAS
|
||||
* @license http://opensource.org/licenses/AGPL-3.0
|
||||
*/
|
||||
|
||||
/* SCSS variables (can be overloaded) */
|
||||
$ipb-panel--border-color: $ipb-color-grey-400 !default;
|
||||
$ipb-panel--border: 1px solid $ipb-panel--border-color !default;
|
||||
$ipb-panel--background-color: $ipb-color-white-100 !default;
|
||||
|
||||
$ipb-panel--heading--border-color: $ipb-color-grey-400 !default;
|
||||
$ipb-panel--heading--background-color: $ipb-color-grey-100 !default;
|
||||
$ipb-panel--heading--color: $ipb-color-grey-800 !default;
|
||||
|
||||
|
||||
.panel{
|
||||
|
||||
.ipb-panel, .panel{
|
||||
box-shadow: none;
|
||||
border: $ipb-panel--border;
|
||||
background-color: $ipb-panel--background-color;
|
||||
&.panel-default .panel-heading {
|
||||
border-color: $ipb-panel--heading--border-color;
|
||||
background-color: $ipb-panel--heading--background-color;
|
||||
color: $ipb-panel--heading--color;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -0,0 +1,14 @@
|
||||
$ipb-progress--background-color: $ipb-color-grey-200 !default;
|
||||
|
||||
$ipb-progress--bar--background-color: $ipb-color-primary-700 !default;
|
||||
$ipb-progress--bar--color: $ipb-color-white-100 !default;
|
||||
|
||||
|
||||
.ipb-progress, .progress {
|
||||
background-color: $ipb-progress--background-color;
|
||||
}
|
||||
|
||||
.ipb-progress--bar, .progress-bar {
|
||||
background-color: $ipb-color-primary-700;
|
||||
color: $ipb-progress--bar--color;
|
||||
}
|
||||
@@ -0,0 +1,61 @@
|
||||
/*
|
||||
* @copyright Copyright (C) 2010-2025 Combodo SAS
|
||||
* @license http://opensource.org/licenses/AGPL-3.0
|
||||
*/
|
||||
|
||||
/* SCSS variables (can be overloaded) */
|
||||
$ipb-tile--background-color: $ipb-color-white-100 !default;
|
||||
$ipb-tile--border-color: $ipb-color-grey-200 !default;
|
||||
$ipb-tile--border: 1px solid $ipb-tile--border-color!default;
|
||||
|
||||
$ipb-tile--decoration--opacity: 0.1 !default;
|
||||
$ipb-tile--decoration--background-color: common-adjust-alpha($ipb-color-blue-700, $ipb-tile--decoration--opacity) !default;
|
||||
$ipb-tile--decoration--hover--opacity: 0.25 !default;
|
||||
$ipb-tile--decoration--hover--background-color: common-adjust-alpha($ipb-tile--decoration--background-color, $ipb-tile--decoration--hover--opacity) !default;
|
||||
$ipb-tile--decoration--icon--color: $ipb-color-blue-700 !default;
|
||||
|
||||
$ipb-tile--title--color: $common-base-variable--text-color !default;
|
||||
|
||||
$ipb-tile--description--color: $common-base-variable--text-color !default;
|
||||
|
||||
.ipb-tile{
|
||||
background-color: $ipb-tile--background-color;
|
||||
border: $ipb-tile--border;
|
||||
|
||||
&[data-role="navigation-trigger"] {
|
||||
@include ipb-heavy-animated-border;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.ipb-tile--decoration {
|
||||
background-color: $ipb-tile--decoration--background-color;
|
||||
}
|
||||
.ipb-tile:hover {
|
||||
.ipb-tile--decoration {
|
||||
background-color: $ipb-tile--decoration--hover--background-color;
|
||||
}
|
||||
}
|
||||
|
||||
.ipb-tile--decoration--icon {
|
||||
&.icon {
|
||||
color: $ipb-tile--decoration--icon--color;
|
||||
}
|
||||
}
|
||||
|
||||
.ipb-tile--title{
|
||||
color: $ipb-tile--title--color;
|
||||
}
|
||||
|
||||
.ipb-tile--description{
|
||||
color: $ipb-tile--description--color;
|
||||
}
|
||||
|
||||
.ipb-tile--manage .ipb-tile--title {
|
||||
> span:first-child {
|
||||
@include ipb-text-overflow-ellipsis;
|
||||
}
|
||||
> span:nth-child(2) {
|
||||
@include ipb-following-dot;
|
||||
}
|
||||
}
|
||||
@@ -1 +1,4 @@
|
||||
@import 'page';
|
||||
@import 'home';
|
||||
@import 'navigation-menu';
|
||||
@import 'page';
|
||||
@import 'tabs';
|
||||
@@ -0,0 +1,21 @@
|
||||
/*
|
||||
* @copyright Copyright (C) 2010-2025 Combodo SAS
|
||||
* @license http://opensource.org/licenses/AGPL-3.0
|
||||
*/
|
||||
|
||||
/* SCSS variables (can be overloaded) */
|
||||
$ipb-home--main-wrapper--before--background-image: url("../img/backgrounds/dots-left-top.svg") !default;
|
||||
$ipb-home--main-wrapper--before--background-size: 30% !default;
|
||||
|
||||
$ipb-home--main-wrapper--after--background-image: url("../img/backgrounds/dots-right-bottom.svg") !default;
|
||||
$ipb-home--main-wrapper--after--background-size: 30% !default;
|
||||
|
||||
.ipb-home .ipb-page--main-wrapper:before{
|
||||
background-image: $ipb-home--main-wrapper--before--background-image;
|
||||
background-size: $ipb-home--main-wrapper--before--background-size;
|
||||
}
|
||||
|
||||
.ipb-home .ipb-page--main-wrapper:after{
|
||||
background-image: $ipb-home--main-wrapper--after--background-image;
|
||||
background-size: $ipb-home--main-wrapper--after--background-size;
|
||||
}
|
||||
@@ -0,0 +1,124 @@
|
||||
/*
|
||||
* @copyright Copyright (C) 2010-2025 Combodo SAS
|
||||
* @license http://opensource.org/licenses/AGPL-3.0
|
||||
*/
|
||||
|
||||
/* SCSS variables (can be overloaded) */
|
||||
@import "../node_modules/bulma-scss/utilities/mixins";
|
||||
|
||||
$ipb-navigation-menu--background-color: $ipb-color-blue-grey-900 !default;
|
||||
|
||||
$ipb-navigation-menu--menu-entry--active--icon--color: $ipb-color-primary-600 !default;
|
||||
$ipb-navigation-menu--menu-entry--active--color: $ipb-color-grey-800 !default;
|
||||
$ipb-navigation-menu--menu-entry--active--background-color: $ipb-color-white-100 !default;
|
||||
|
||||
$ipb-navigation-menu--dropdown-menu--items-remainder--color: $ipb-color-white-200 !default;
|
||||
$ipb-navigation-menu--dropdown-menu--items-remainder--hover--color: $ipb-color-white-100 !default;
|
||||
$ipb-navigation-menu--dropdown-menu--items-remainder--hover--background-color: $ipb-color-blue-grey-700 !default;
|
||||
|
||||
$ipb-navigation-menu--user-card--color: $ipb-color-white-100 !default;
|
||||
$ipb-navigation-menu--user-card--photo--background-color: $ipb-color-grey-700 !default;
|
||||
|
||||
$ipb-navigation-menu--user-part--background-color: $ipb-color-grey-800 !default;
|
||||
|
||||
$ipb-navigation-menu-overlay--opacity: 0.6 !default;
|
||||
$ipb-navigation-menu-overlay--background-color: $ipb-color-blue-grey-800 !default;
|
||||
$ipb-navigation-menu-overlay--backdrop-filter: blur(2px) !default;
|
||||
|
||||
.ipb-navigation-menu {
|
||||
background-color: $ipb-navigation-menu--background-color;
|
||||
|
||||
&.ipb-is-expanded {
|
||||
.ipb-navigation-menu--top-part--toggle--expand-menu {
|
||||
@include ipb-toggle-nav-animated-chevron-right;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.ipb-navigation-menu--top-part--toggle--expand-menu {
|
||||
@include ipb-toggle-nav;
|
||||
}
|
||||
|
||||
.ipb-navigation-menu--middle-part {
|
||||
@include ipb-scrollbar;
|
||||
}
|
||||
|
||||
// entry wrapper
|
||||
.ipb-navigation-menu--menu-entry--wrapper {
|
||||
.ipb-navigation-menu--menu-entry--title {
|
||||
@include ipb-text-overflow-ellipsis;
|
||||
}
|
||||
|
||||
&.active .ipb-navigation-menu--menu-entry {
|
||||
background-color: $ipb-navigation-menu--menu-entry--active--background-color;
|
||||
color: $ipb-navigation-menu--menu-entry--active--color;
|
||||
|
||||
.ipb-navigation-menu--menu-entry--icon {
|
||||
color: $ipb-navigation-menu--menu-entry--active--icon--color;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// menu entry
|
||||
.ipb-navigation-menu--menu-entry,
|
||||
.ipb-dropdown-menu--items-remainder > li > a {
|
||||
color: $ipb-navigation-menu--dropdown-menu--items-remainder--color;
|
||||
@include ipb-transition(#{"background-color, color"});
|
||||
|
||||
&:hover, &:focus:not(.ipb-not-focusable) {
|
||||
color: $ipb-navigation-menu--dropdown-menu--items-remainder--hover--color;
|
||||
background-color: $ipb-navigation-menu--dropdown-menu--items-remainder--hover--background-color;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.ipb-dropdown-menu--items-remainder {
|
||||
background-color: $ipb-navigation-menu--background-color;
|
||||
}
|
||||
|
||||
.ipb-navigation-menu--user-part {
|
||||
background-color: $ipb-navigation-menu--user-part--background-color;
|
||||
}
|
||||
|
||||
.ipb-navigation-menu--user-card {
|
||||
color: $ipb-navigation-menu--user-card--color !important;
|
||||
.ipb-navigation-menu--user-card--photo {
|
||||
background-color: $ipb-navigation-menu--user-card--photo--background-color;
|
||||
}
|
||||
|
||||
.ipb-navigation-menu--user-card--infos {
|
||||
// username
|
||||
.ipb-navigation-menu--user-card--name {
|
||||
> div {
|
||||
@include ipb-text-overflow-ellipsis;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.ipb-navigation-menu-overlay {
|
||||
background-color: common-adjust-alpha($ipb-navigation-menu-overlay--background-color, $ipb-navigation-menu-overlay--opacity);
|
||||
backdrop-filter: $ipb-navigation-menu-overlay--backdrop-filter;
|
||||
}
|
||||
|
||||
.ipb-navigation-menu--user-part--toggle--open-mobile-menu {
|
||||
@include ipb-toggle-nav;
|
||||
}
|
||||
|
||||
@include mobile {
|
||||
.ipb-body {
|
||||
.ipb-navigation-menu {
|
||||
.ipb-navigation-menu--middle-part {
|
||||
background-color: $ipb-navigation-menu--background-color;
|
||||
@include ipb-transition(max-height, ease, 0.5s);
|
||||
}
|
||||
&.ipb-is-opened {
|
||||
// toggle animation
|
||||
.ipb-navigation-menu--user-part--toggle--open-mobile-menu {
|
||||
@include ipb-toggle-nav-animated-cross;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,4 +1,30 @@
|
||||
/*
|
||||
* @copyright Copyright (C) 2010-2025 Combodo SAS
|
||||
* @license http://opensource.org/licenses/AGPL-3.0
|
||||
*/
|
||||
|
||||
/* SCSS variables (can be overloaded) */
|
||||
$ipb-copyright--color: $ipb-color-secondary-800 !default;
|
||||
|
||||
$ipb-page--main-header--information--title--color: $common-base-variable--text-color !default;
|
||||
$ipb-page--main-header--information--subtitle--color: $common-base-variable--text-color !default;
|
||||
|
||||
|
||||
body{
|
||||
@extend %common-font-ral-med-100;
|
||||
}
|
||||
|
||||
.ipb-copyright {
|
||||
text-decoration: none !important;
|
||||
}
|
||||
|
||||
.ipb-page--main-header--information--title{
|
||||
color: $ipb-page--main-header--information--title--color;
|
||||
> span ~ span {
|
||||
@include ipb-following-dot;
|
||||
}
|
||||
}
|
||||
|
||||
.ipb-page--main-header--information--subtitle {
|
||||
color: $ipb-page--main-header--information--subtitle--color;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,51 @@
|
||||
/*
|
||||
* @copyright Copyright (C) 2010-2025 Combodo SAS
|
||||
* @license http://opensource.org/licenses/AGPL-3.0
|
||||
*/
|
||||
|
||||
/* SCSS variables (can be overloaded) */
|
||||
$ipb-tabs--tab--border-color: $ipb-color-grey-400 !default;
|
||||
$ipb-tabs--tab--border: solid 1px $ipb-tabs--tab--border-color !default;
|
||||
|
||||
$ipb-tabs--tab--background-color: $ipb-color-grey-100 !default;
|
||||
$ipb-tabs--tab--color: $ipb-color-grey-900 !default;
|
||||
$ipb-tabs--tab--badge--background-color: transparent !default;
|
||||
$ipb-tabs--tab--badge--color: $ipb-color-grey-900 !default;
|
||||
$ipb-tabs--tab--hover--background-color: $ipb-color-grey-300 !default;
|
||||
$ipb-tabs--tab--hover--color: $ipb-color-grey-900 !default;
|
||||
$ipb-tabs--tab--badge--hover--background-color: $ipb-tabs--tab--hover--background-color !default;
|
||||
$ipb-tabs--tab--active--background-color: $ipb-color-white-100 !default;
|
||||
$ipb-tabs--tab--active--badge--background-color: $ipb-color-grey-200 !default;
|
||||
$ipb-tabs--tab--active--indicator--background-color: $ipb-color-primary-600 !default;
|
||||
|
||||
.ipb-tabs.nav-pills > li{
|
||||
> a {
|
||||
background-color: $ipb-tabs--tab--background-color;
|
||||
color: $ipb-tabs--tab--color;
|
||||
|
||||
> .badge {
|
||||
background-color: $ipb-tabs--tab--badge--background-color;
|
||||
color: $ipb-tabs--tab--badge--color;
|
||||
}
|
||||
|
||||
border: $ipb-tabs--tab--border;
|
||||
border-bottom: none;
|
||||
}
|
||||
|
||||
&.active > a {
|
||||
background-color: $ipb-tabs--tab--active--background-color;
|
||||
&:before {
|
||||
background-color: $ipb-tabs--tab--active--indicator--background-color;
|
||||
}
|
||||
> .badge {
|
||||
background-color: $ipb-tabs--tab--active--badge--background-color;
|
||||
}
|
||||
}
|
||||
&:hover > a, & > a:focus {
|
||||
background-color: $ipb-tabs--tab--hover--background-color;
|
||||
color: $ipb-tabs--tab--hover--color;
|
||||
> .badge {
|
||||
background-color: $ipb-tabs--tab--badge--hover--background-color;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,2 @@
|
||||
@import "base";
|
||||
@import "bricks/all";
|
||||
@@ -0,0 +1,13 @@
|
||||
/*
|
||||
* @copyright Copyright (C) 2010-2025 Combodo SAS
|
||||
* @license http://opensource.org/licenses/AGPL-3.0
|
||||
*/
|
||||
|
||||
/* SCSS variables (can be overloaded) */
|
||||
$ipb-body-text-color: $ipb-color-grey-900 !default;
|
||||
$ipb-body-background-color: $ipb-color-white-200 !default;
|
||||
|
||||
body {
|
||||
color: $ipb-body-text-color;
|
||||
background-color: $ipb-body-background-color;
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
@import "browse-brick";
|
||||
@import "manage-brick";
|
||||
@import "object-brick";
|
||||
@@ -0,0 +1,150 @@
|
||||
/*
|
||||
* @copyright Copyright (C) 2010-2025 Combodo SAS
|
||||
* @license http://opensource.org/licenses/AGPL-3.0
|
||||
*/
|
||||
|
||||
/* SCSS variables (can be overloaded) */
|
||||
@import "../node_modules/bulma-scss/utilities/mixins";
|
||||
|
||||
$ipb-browse-brick--mosaic-item--highlight-color: $ipb-color-blue-800, $ipb-color-orange-800, $ipb-color-green-800, $ipb-color-pink-800, $ipb-color-cyan-800, $ipb-color-yellow-800, $ipb-color-purple-800;
|
||||
|
||||
$ipb-browse-brick--mosaic-breadcrumb--active--color: $ipb-color-grey-800 !default;
|
||||
$ipb-browse-brick--mosaic-breadcrumb--a--color: $ipb-color-primary-800 !default;
|
||||
|
||||
|
||||
$ipb-browse-brick--mosaic-group-item--color: $common-base-variable--text-color !default;
|
||||
$ipb-browse-brick--mosaic-group-item--border-color: $ipb-color-grey-300 !default;
|
||||
$ipb-browse-brick--mosaic-group-item--border: 1px solid $ipb-browse-brick--mosaic-group-item--border-color !default;
|
||||
$ipb-browse-brick--mosaic-group-item--background-color: $ipb-color-white-100 !default;
|
||||
$ipb-browse-brick--mosaic-item--background-color: $ipb-color-white-100 !default;
|
||||
$ipb-browse-brick--mosaic-item--color: $common-base-variable--text-color !default;
|
||||
$ipb-browse-brick--mosaic-item--hover--color: inherit !default;
|
||||
$ipb-browse-brick--mosaic-item--hover--background-color--alpha: 0.05 !default;
|
||||
|
||||
$ipb-browse-brick--mosaic-item-description--color: $ipb-color-grey-800 !default;
|
||||
|
||||
$ipb-browse-brick--mosaic-item-image--background-color: common-adjust-alpha($ipb-color-blue-700, .1) !default;
|
||||
$ipb-browse-brick--mosaic-item-image--background-color--alpha: 0.1 !default;
|
||||
$ipb-browse-brick--mosaic-item-image--color: $ipb-color-blue-700 !default;
|
||||
|
||||
$ipb-browse-brick-panel--mosaic--background-color: transparent !default;
|
||||
$ipb-browse-brick-panel--mosaic--border: none !default;
|
||||
|
||||
$ipb-browse-brick--tree-item--color: $ipb-color-grey-900 !default;
|
||||
$ipb-browse-brick--tree-item--hyperlink--color: $common-hyperlink-color !default;
|
||||
|
||||
$ipb-browse-brick--tree-item-filter-data--color: $ipb-color-grey-800 !default;
|
||||
|
||||
$ipb-browse-brick--tree-item--description--color: $ipb-color-grey-800 !default;
|
||||
|
||||
$ipb-browse-brick--tree-item--wrapper--color: inherit !default;
|
||||
|
||||
$ipb-browse-brick--list-group-item--background-color: $ipb-color-white-100 !default;
|
||||
$ipb-browse-brick--list-group-item--border-top-color: $ipb-color-grey-400 !default;
|
||||
$ipb-browse-brick--list-group-item--border-top: 1px solid $ipb-browse-brick--list-group-item--border-top-color !default;
|
||||
|
||||
$ipb-browse-brick--list-group--tree--background-color: $ipb-color-white-100 !default;
|
||||
|
||||
$ipb-browse-brick--no-item--text--color: $ipb-color-grey-800 !default;
|
||||
|
||||
.page_browse_brick_as_mosaic .ipb-browse-brick-panel{
|
||||
background-color: $ipb-browse-brick-panel--mosaic--background-color !important;
|
||||
border: $ipb-browse-brick-panel--mosaic--border !important;
|
||||
}
|
||||
|
||||
#mosaic-breadcrumb {
|
||||
a {
|
||||
color: $ipb-browse-brick--mosaic-breadcrumb--a--color;
|
||||
}
|
||||
.active {
|
||||
color: $ipb-browse-brick--mosaic-breadcrumb--active--color;
|
||||
}
|
||||
}
|
||||
|
||||
.mosaic-group-item {
|
||||
background-color: $ipb-browse-brick--mosaic-group-item--background-color;
|
||||
color: $ipb-browse-brick--mosaic-group-item--color;
|
||||
border: $ipb-browse-brick--mosaic-group-item--border;
|
||||
|
||||
@for $i from 1 through length($ipb-browse-brick--mosaic-item--highlight-color) {
|
||||
&:nth-child(#{length($ipb-browse-brick--mosaic-item--highlight-color)}n + #{$i}){
|
||||
.mosaic-item:hover{
|
||||
background-color: common-adjust-alpha(nth($ipb-browse-brick--mosaic-item--highlight-color, $i), $ipb-browse-brick--mosaic-item--hover--background-color--alpha);
|
||||
}
|
||||
.mosaic-item-image {
|
||||
background-color: common-adjust-alpha(nth($ipb-browse-brick--mosaic-item--highlight-color, $i), $ipb-browse-brick--mosaic-item-image--background-color--alpha);
|
||||
color: nth($ipb-browse-brick--mosaic-item--highlight-color, $i);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.mosaic-item {
|
||||
background-color: $ipb-browse-brick--mosaic-item--background-color;
|
||||
color: $ipb-browse-brick--mosaic-item--color;
|
||||
|
||||
&:hover {
|
||||
color: $ipb-browse-brick--mosaic-item--hover--color;
|
||||
}
|
||||
}
|
||||
|
||||
.mosaic-item-text {
|
||||
.mosaic-item-description {
|
||||
color: $ipb-browse-brick--mosaic-item-description--color;
|
||||
}
|
||||
}
|
||||
|
||||
.mosaic-item-image {
|
||||
background-color: $ipb-browse-brick--mosaic-item-image--background-color;
|
||||
color: $ipb-browse-brick--mosaic-item-image--color;
|
||||
}
|
||||
|
||||
.list-group-item .list-group-item-text, .tree-item {
|
||||
color: $ipb-browse-brick--tree-item--color;
|
||||
|
||||
& a {
|
||||
color: $ipb-browse-brick--tree-item--hyperlink--color;
|
||||
}
|
||||
}
|
||||
|
||||
.list-group.tree .list-group-item .list-group-item-description {
|
||||
color: $ipb-browse-brick--tree-item--description--color;
|
||||
}
|
||||
|
||||
.list-group-item .tree-item-wrapper .tree-item-filter-data {
|
||||
color: $ipb-browse-brick--tree-item-filter-data--color;
|
||||
a {
|
||||
color: $ipb-browse-brick--tree-item-filter-data--color;
|
||||
}
|
||||
}
|
||||
|
||||
#brick_content_tree .list-group-item>.tree-item-wrapper {;
|
||||
color: $ipb-browse-brick--tree-item--wrapper--color;
|
||||
}
|
||||
|
||||
#brick_content_tree .list-group-item {
|
||||
background-color: $ipb-browse-brick--list-group-item--background-color;
|
||||
border: none;
|
||||
border-top: $ipb-browse-brick--list-group-item--border-top;
|
||||
|
||||
|
||||
@for $i from 1 through length($ipb-browse-brick--mosaic-item--highlight-color) {
|
||||
&:nth-child(#{length($ipb-browse-brick--mosaic-item--highlight-color)}n + #{$i - 1}) {
|
||||
&:hover {
|
||||
background-color: common-adjust-alpha(nth($ipb-browse-brick--mosaic-item--highlight-color, $i), $ipb-browse-brick--mosaic-item--hover--background-color--alpha);
|
||||
}
|
||||
> .tree-item-wrapper .tree-item-image {
|
||||
background-color: common-adjust-alpha(nth($ipb-browse-brick--mosaic-item--highlight-color, $i), $ipb-browse-brick--mosaic-item-image--background-color--alpha);
|
||||
color: nth($ipb-browse-brick--mosaic-item--highlight-color, $i);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.list-group.tree {
|
||||
background-color: $ipb-browse-brick--list-group--tree--background-color;
|
||||
}
|
||||
|
||||
.ipb-browse-brick--no-item--text {
|
||||
color: $ipb-browse-brick--no-item--text--color;
|
||||
}
|
||||
@@ -0,0 +1,41 @@
|
||||
/*
|
||||
* @copyright Copyright (C) 2010-2025 Combodo SAS
|
||||
* @license http://opensource.org/licenses/AGPL-3.0
|
||||
*/
|
||||
|
||||
/* SCSS variables (can be overloaded) */
|
||||
$ipb-manage-brick--export-action--color: $ipb-color-grey-800 !default;
|
||||
$ipb-manage-brick--no-result--text--color: $ipb-color-grey-800 !default;
|
||||
|
||||
$ipb-manage-brick--pie-chart--colors:
|
||||
$ipb-color-blue-400 $ipb-color-blue-950 "rgb(44, 160, 44)",
|
||||
$ipb-color-blue-500 $ipb-color-blue-950 "rgb(214, 39, 40)",
|
||||
$ipb-color-blue-600 $ipb-color-blue-100 "rgb(148, 103, 189)",
|
||||
$ipb-color-blue-700 $ipb-color-blue-100 "rgb(140, 86, 75)",
|
||||
$ipb-color-blue-800 $ipb-color-blue-100 "rgb(227, 119, 194)",
|
||||
$ipb-color-blue-900 $ipb-color-blue-100 "rgb(127, 127, 127)",
|
||||
$ipb-color-blue-950 $ipb-color-blue-100 "rgb(188, 189, 34)",
|
||||
$ipb-color-blue-100 $ipb-color-blue-950 "rgb(23, 190, 207)",
|
||||
$ipb-color-blue-200 $ipb-color-blue-950 "rgb(31, 119, 180)",
|
||||
$ipb-color-blue-300 $ipb-color-blue-950 "rgb(255, 127, 14)"
|
||||
!default;
|
||||
|
||||
@each $background, $text, $originalColor in $ipb-manage-brick--pie-chart--colors {
|
||||
.c3-chart-arc path[style="fill: #{$originalColor}; cursor: pointer; opacity: 1;"] {
|
||||
fill: $background !important;
|
||||
}
|
||||
.c3-legend-item-tile[style="stroke: #{$originalColor}; pointer-events: none;"] {
|
||||
stroke: $background !important;
|
||||
}
|
||||
.c3-chart-arc:has(path[style="fill: #{$originalColor}; cursor: pointer; opacity: 1;"]) text {
|
||||
fill: $text !important;
|
||||
}
|
||||
}
|
||||
|
||||
.ipb-manage-brick--export-action {
|
||||
color: $ipb-manage-brick--export-action--color;
|
||||
}
|
||||
|
||||
.ipb-manage-brick--no-result--text {
|
||||
color: $ipb-manage-brick--no-result--text--color;
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
/*
|
||||
* @copyright Copyright (C) 2010-2025 Combodo SAS
|
||||
* @license http://opensource.org/licenses/AGPL-3.0
|
||||
*/
|
||||
|
||||
/* SCSS variables (can be overloaded) */
|
||||
$ipb-object-brick--url-to-clipboard-tooltip-copied--color: $ipb-color-green-500!default;
|
||||
|
||||
.url-to-clipboard-tooltip-copied {
|
||||
color: $ipb-object-brick--url-to-clipboard-tooltip-copied--color;
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
@import "variables/all";
|
||||
@@ -0,0 +1 @@
|
||||
@import "colors/all";
|
||||
@@ -0,0 +1,9 @@
|
||||
/*
|
||||
* @copyright Copyright (C) 2010-2025Combodo SAS
|
||||
* @license http://opensource.org/licenses/AGPL-3.0
|
||||
*/
|
||||
|
||||
@import "base-palette";
|
||||
@import "semantic-palette";
|
||||
@import "lifecycle-palette";
|
||||
@import "skeleton-palette";
|
||||
@@ -0,0 +1,127 @@
|
||||
/*
|
||||
* @copyright Copyright (C) 2010-2025 Combodo SAS
|
||||
* @license http://opensource.org/licenses/AGPL-3.0
|
||||
*/
|
||||
|
||||
/*
|
||||
Base color palette
|
||||
CSS variables
|
||||
These are defined in themes/ as utils/ is included thrice and each time these variables are redeclared in the stylesheets
|
||||
*/
|
||||
:root {
|
||||
--ipb-color-white-100: #{$ipb-color-white-100};
|
||||
--ipb-color-white-200: #{$ipb-color-white-200};
|
||||
--ipb-color-transparent: #{$ipb-color-transparent};
|
||||
|
||||
--ipb-color-grey-50: #{$ipb-color-grey-50};
|
||||
--ipb-color-grey-100: #{$ipb-color-grey-100};
|
||||
--ipb-color-grey-200: #{$ipb-color-grey-200};
|
||||
--ipb-color-grey-300: #{$ipb-color-grey-300};
|
||||
--ipb-color-grey-400: #{$ipb-color-grey-400};
|
||||
--ipb-color-grey-500: #{$ipb-color-grey-500};
|
||||
--ipb-color-grey-600: #{$ipb-color-grey-600};
|
||||
--ipb-color-grey-700: #{$ipb-color-grey-700};
|
||||
--ipb-color-grey-800: #{$ipb-color-grey-800};
|
||||
--ipb-color-grey-900: #{$ipb-color-grey-900};
|
||||
--ipb-color-grey-950: #{$ipb-color-grey-950};
|
||||
|
||||
--ipb-color-blue-grey-50: #{$ipb-color-blue-grey-50};
|
||||
--ipb-color-blue-grey-100: #{$ipb-color-blue-grey-100};
|
||||
--ipb-color-blue-grey-200: #{$ipb-color-blue-grey-200};
|
||||
--ipb-color-blue-grey-300: #{$ipb-color-blue-grey-300};
|
||||
--ipb-color-blue-grey-400: #{$ipb-color-blue-grey-400};
|
||||
--ipb-color-blue-grey-500: #{$ipb-color-blue-grey-500};
|
||||
--ipb-color-blue-grey-600: #{$ipb-color-blue-grey-600};
|
||||
--ipb-color-blue-grey-700: #{$ipb-color-blue-grey-700};
|
||||
--ipb-color-blue-grey-800: #{$ipb-color-blue-grey-800};
|
||||
--ipb-color-blue-grey-900: #{$ipb-color-blue-grey-900};
|
||||
--ipb-color-blue-grey-950: #{$ipb-color-blue-grey-950};
|
||||
|
||||
--ipb-color-blue-100: #{$ipb-color-blue-100};
|
||||
--ipb-color-blue-200: #{$ipb-color-blue-200};
|
||||
--ipb-color-blue-300: #{$ipb-color-blue-300};
|
||||
--ipb-color-blue-400: #{$ipb-color-blue-400};
|
||||
--ipb-color-blue-500: #{$ipb-color-blue-500};
|
||||
--ipb-color-blue-600: #{$ipb-color-blue-600};
|
||||
--ipb-color-blue-700: #{$ipb-color-blue-700};
|
||||
--ipb-color-blue-800: #{$ipb-color-blue-800};
|
||||
--ipb-color-blue-900: #{$ipb-color-blue-900};
|
||||
--ipb-color-blue-950: #{$ipb-color-blue-950};
|
||||
|
||||
--ipb-color-cyan-100: #{$ipb-color-cyan-100};
|
||||
--ipb-color-cyan-200: #{$ipb-color-cyan-200};
|
||||
--ipb-color-cyan-300: #{$ipb-color-cyan-300};
|
||||
--ipb-color-cyan-400: #{$ipb-color-cyan-400};
|
||||
--ipb-color-cyan-500: #{$ipb-color-cyan-500};
|
||||
--ipb-color-cyan-600: #{$ipb-color-cyan-600};
|
||||
--ipb-color-cyan-700: #{$ipb-color-cyan-700};
|
||||
--ipb-color-cyan-800: #{$ipb-color-cyan-800};
|
||||
--ipb-color-cyan-900: #{$ipb-color-cyan-900};
|
||||
--ipb-color-cyan-950: #{$ipb-color-cyan-950};
|
||||
|
||||
--ipb-color-green-100: #{$ipb-color-green-100};
|
||||
--ipb-color-green-200: #{$ipb-color-green-200};
|
||||
--ipb-color-green-300: #{$ipb-color-green-300};
|
||||
--ipb-color-green-400: #{$ipb-color-green-400};
|
||||
--ipb-color-green-500: #{$ipb-color-green-500};
|
||||
--ipb-color-green-600: #{$ipb-color-green-600};
|
||||
--ipb-color-green-700: #{$ipb-color-green-700};
|
||||
--ipb-color-green-800: #{$ipb-color-green-800};
|
||||
--ipb-color-green-900: #{$ipb-color-green-900};
|
||||
--ipb-color-green-950: #{$ipb-color-green-950};
|
||||
|
||||
--ipb-color-orange-100: #{$ipb-color-orange-100};
|
||||
--ipb-color-orange-200: #{$ipb-color-orange-200};
|
||||
--ipb-color-orange-300: #{$ipb-color-orange-300};
|
||||
--ipb-color-orange-400: #{$ipb-color-orange-400};
|
||||
--ipb-color-orange-500: #{$ipb-color-orange-500};
|
||||
--ipb-color-orange-600: #{$ipb-color-orange-600};
|
||||
--ipb-color-orange-700: #{$ipb-color-orange-700};
|
||||
--ipb-color-orange-800: #{$ipb-color-orange-800};
|
||||
--ipb-color-orange-900: #{$ipb-color-orange-900};
|
||||
--ipb-color-orange-950: #{$ipb-color-orange-950};
|
||||
|
||||
--ipb-color-red-100: #{$ipb-color-red-100};
|
||||
--ipb-color-red-200: #{$ipb-color-red-200};
|
||||
--ipb-color-red-300: #{$ipb-color-red-300};
|
||||
--ipb-color-red-400: #{$ipb-color-red-400};
|
||||
--ipb-color-red-500: #{$ipb-color-red-500};
|
||||
--ipb-color-red-600: #{$ipb-color-red-600};
|
||||
--ipb-color-red-700: #{$ipb-color-red-700};
|
||||
--ipb-color-red-800: #{$ipb-color-red-800};
|
||||
--ipb-color-red-900: #{$ipb-color-red-900};
|
||||
--ipb-color-red-950: #{$ipb-color-red-950};
|
||||
|
||||
--ipb-color-pink-100: #{$ipb-color-pink-100};
|
||||
--ipb-color-pink-200: #{$ipb-color-pink-200};
|
||||
--ipb-color-pink-300: #{$ipb-color-pink-300};
|
||||
--ipb-color-pink-400: #{$ipb-color-pink-400};
|
||||
--ipb-color-pink-500: #{$ipb-color-pink-500};
|
||||
--ipb-color-pink-600: #{$ipb-color-pink-600};
|
||||
--ipb-color-pink-700: #{$ipb-color-pink-700};
|
||||
--ipb-color-pink-800: #{$ipb-color-pink-800};
|
||||
--ipb-color-pink-900: #{$ipb-color-pink-900};
|
||||
--ipb-color-pink-950: #{$ipb-color-pink-950};
|
||||
|
||||
--ipb-color-yellow-100: #{$ipb-color-yellow-100};
|
||||
--ipb-color-yellow-200: #{$ipb-color-yellow-200};
|
||||
--ipb-color-yellow-300: #{$ipb-color-yellow-300};
|
||||
--ipb-color-yellow-400: #{$ipb-color-yellow-400};
|
||||
--ipb-color-yellow-500: #{$ipb-color-yellow-500};
|
||||
--ipb-color-yellow-600: #{$ipb-color-yellow-600};
|
||||
--ipb-color-yellow-700: #{$ipb-color-yellow-700};
|
||||
--ipb-color-yellow-800: #{$ipb-color-yellow-800};
|
||||
--ipb-color-yellow-900: #{$ipb-color-yellow-900};
|
||||
--ipb-color-yellow-950: #{$ipb-color-yellow-950};
|
||||
|
||||
--ipb-color-purple-100: #{$ipb-color-purple-100};
|
||||
--ipb-color-purple-200: #{$ipb-color-purple-200};
|
||||
--ipb-color-purple-300: #{$ipb-color-purple-300};
|
||||
--ipb-color-purple-400: #{$ipb-color-purple-400};
|
||||
--ipb-color-purple-500: #{$ipb-color-purple-500};
|
||||
--ipb-color-purple-600: #{$ipb-color-purple-600};
|
||||
--ipb-color-purple-700: #{$ipb-color-purple-700};
|
||||
--ipb-color-purple-800: #{$ipb-color-purple-800};
|
||||
--ipb-color-purple-900: #{$ipb-color-purple-900};
|
||||
--ipb-color-purple-950: #{$ipb-color-purple-950};
|
||||
}
|
||||
@@ -0,0 +1,29 @@
|
||||
/*
|
||||
* @copyright Copyright (C) 2010-2025 Combodo SAS
|
||||
* @license http://opensource.org/licenses/AGPL-3.0
|
||||
*/
|
||||
|
||||
/*
|
||||
Lifecycle palette
|
||||
CSS variables
|
||||
These are defined in themes/ as utils/ is included thrice and each time these variables are redeclared in the stylesheets
|
||||
*/
|
||||
:root {
|
||||
--ipb-lifecycle-new-state-primary-color: #{$ipb-lifecycle-new-state-primary-color};
|
||||
--ipb-lifecycle-new-state-secondary-color: #{$ipb-lifecycle-new-state-secondary-color};
|
||||
--ipb-lifecycle-neutral-state-primary-color: #{$ipb-lifecycle-neutral-state-primary-color};
|
||||
--ipb-lifecycle-neutral-state-secondary-color: #{$ipb-lifecycle-neutral-state-secondary-color};
|
||||
--ipb-lifecycle-waiting-state-primary-color: #{$ipb-lifecycle-waiting-state-primary-color};
|
||||
--ipb-lifecycle-waiting-state-secondary-color: #{$ipb-lifecycle-waiting-state-secondary-color};
|
||||
--ipb-lifecycle-success-state-primary-color: #{$ipb-lifecycle-success-state-primary-color};
|
||||
--ipb-lifecycle-success-state-secondary-color: #{$ipb-lifecycle-success-state-secondary-color};
|
||||
--ipb-lifecycle-failure-state-primary-color: #{$ipb-lifecycle-failure-state-primary-color};
|
||||
--ipb-lifecycle-failure-state-secondary-color: #{$ipb-lifecycle-failure-state-secondary-color};
|
||||
--ipb-lifecycle-frozen-state-primary-color: #{$ipb-lifecycle-frozen-state-primary-color};
|
||||
--ipb-lifecycle-frozen-state-secondary-color: #{$ipb-lifecycle-frozen-state-secondary-color};
|
||||
|
||||
--ipb-lifecycle-active-state-primary-color: #{$ipb-lifecycle-active-state-primary-color};
|
||||
--ipb-lifecycle-active-state-secondary-color: #{$ipb-lifecycle-active-state-secondary-color};
|
||||
--ipb-lifecycle-inactive-state-primary-color: #{$ipb-lifecycle-inactive-state-primary-color};
|
||||
--ipb-lifecycle-inactive-state-secondary-color: #{$ipb-lifecycle-inactive-state-secondary-color};
|
||||
}
|
||||
@@ -0,0 +1,94 @@
|
||||
/*
|
||||
* @copyright Copyright (C) 2010-2025 Combodo SAS
|
||||
* @license http://opensource.org/licenses/AGPL-3.0
|
||||
*/
|
||||
|
||||
/*
|
||||
Semantic palettes
|
||||
CSS variables
|
||||
These are defined in themes/ as utils/ is included thrice and each time these variables are redeclared in the stylesheets
|
||||
*/
|
||||
:root {
|
||||
--ipb-color-primary-100: #{$ipb-color-primary-100};
|
||||
--ipb-color-primary-200: #{$ipb-color-primary-200};
|
||||
--ipb-color-primary-300: #{$ipb-color-primary-300};
|
||||
--ipb-color-primary-400: #{$ipb-color-primary-400};
|
||||
--ipb-color-primary-500: #{$ipb-color-primary-500};
|
||||
--ipb-color-primary-600: #{$ipb-color-primary-600};
|
||||
--ipb-color-primary-700: #{$ipb-color-primary-700};
|
||||
--ipb-color-primary-800: #{$ipb-color-primary-800};
|
||||
--ipb-color-primary-900: #{$ipb-color-primary-900};
|
||||
--ipb-color-primary-950: #{$ipb-color-primary-950};
|
||||
|
||||
--ipb-color-secondary-100: #{$ipb-color-secondary-100};
|
||||
--ipb-color-secondary-200: #{$ipb-color-secondary-200};
|
||||
--ipb-color-secondary-300: #{$ipb-color-secondary-300};
|
||||
--ipb-color-secondary-400: #{$ipb-color-secondary-400};
|
||||
--ipb-color-secondary-500: #{$ipb-color-secondary-500};
|
||||
--ipb-color-secondary-600: #{$ipb-color-secondary-600};
|
||||
--ipb-color-secondary-700: #{$ipb-color-secondary-700};
|
||||
--ipb-color-secondary-800: #{$ipb-color-secondary-800};
|
||||
--ipb-color-secondary-900: #{$ipb-color-secondary-900};
|
||||
--ipb-color-secondary-950: #{$ipb-color-secondary-950};
|
||||
|
||||
--ipb-color-information-100: #{$ipb-color-information-100};
|
||||
--ipb-color-information-200: #{$ipb-color-information-200};
|
||||
--ipb-color-information-300: #{$ipb-color-information-300};
|
||||
--ipb-color-information-400: #{$ipb-color-information-400};
|
||||
--ipb-color-information-500: #{$ipb-color-information-500};
|
||||
--ipb-color-information-600: #{$ipb-color-information-600};
|
||||
--ipb-color-information-700: #{$ipb-color-information-700};
|
||||
--ipb-color-information-800: #{$ipb-color-information-800};
|
||||
--ipb-color-information-900: #{$ipb-color-information-900};
|
||||
--ipb-color-information-950: #{$ipb-color-information-950};
|
||||
|
||||
--ipb-color-success-100: #{$ipb-color-success-100};
|
||||
--ipb-color-success-200: #{$ipb-color-success-200};
|
||||
--ipb-color-success-300: #{$ipb-color-success-300};
|
||||
--ipb-color-success-400: #{$ipb-color-success-400};
|
||||
--ipb-color-success-500: #{$ipb-color-success-500};
|
||||
--ipb-color-success-600: #{$ipb-color-success-600};
|
||||
--ipb-color-success-700: #{$ipb-color-success-700};
|
||||
--ipb-color-success-800: #{$ipb-color-success-800};
|
||||
--ipb-color-success-900: #{$ipb-color-success-900};
|
||||
--ipb-color-success-950: #{$ipb-color-success-950};
|
||||
|
||||
--ipb-color-warning-100: #{$ipb-color-warning-100};
|
||||
--ipb-color-warning-200: #{$ipb-color-warning-200};
|
||||
--ipb-color-warning-300: #{$ipb-color-warning-300};
|
||||
--ipb-color-warning-400: #{$ipb-color-warning-400};
|
||||
--ipb-color-warning-500: #{$ipb-color-warning-500};
|
||||
--ipb-color-warning-600: #{$ipb-color-warning-600};
|
||||
--ipb-color-warning-700: #{$ipb-color-warning-700};
|
||||
--ipb-color-warning-800: #{$ipb-color-warning-800};
|
||||
--ipb-color-warning-900: #{$ipb-color-warning-900};
|
||||
--ipb-color-warning-950: #{$ipb-color-warning-950};
|
||||
|
||||
--ipb-color-danger-100: #{$ipb-color-danger-100};
|
||||
--ipb-color-danger-200: #{$ipb-color-danger-200};
|
||||
--ipb-color-danger-300: #{$ipb-color-danger-300};
|
||||
--ipb-color-danger-400: #{$ipb-color-danger-400};
|
||||
--ipb-color-danger-500: #{$ipb-color-danger-500};
|
||||
--ipb-color-danger-600: #{$ipb-color-danger-600};
|
||||
--ipb-color-danger-700: #{$ipb-color-danger-700};
|
||||
--ipb-color-danger-800: #{$ipb-color-danger-800};
|
||||
--ipb-color-danger-900: #{$ipb-color-danger-900};
|
||||
--ipb-color-danger-950: #{$ipb-color-danger-950};
|
||||
|
||||
--ipb-color-error-100: #{$ipb-color-error-100};
|
||||
--ipb-color-error-200: #{$ipb-color-error-200};
|
||||
--ipb-color-error-300: #{$ipb-color-error-300};
|
||||
--ipb-color-error-400: #{$ipb-color-error-400};
|
||||
--ipb-color-error-500: #{$ipb-color-error-500};
|
||||
--ipb-color-error-600: #{$ipb-color-error-600};
|
||||
--ipb-color-error-700: #{$ipb-color-error-700};
|
||||
--ipb-color-error-800: #{$ipb-color-error-800};
|
||||
--ipb-color-error-900: #{$ipb-color-error-900};
|
||||
--ipb-color-error-950: #{$ipb-color-error-950};
|
||||
|
||||
--ipb-caselog-color-highlight-1: #{$ipb-caselog-highlight-color-1};
|
||||
--ipb-caselog-color-highlight-2: #{$ipb-caselog-highlight-color-2};
|
||||
--ipb-caselog-color-highlight-3: #{$ipb-caselog-highlight-color-3};
|
||||
--ipb-caselog-color-highlight-4: #{$ipb-caselog-highlight-color-4};
|
||||
--ipb-caselog-color-highlight-5: #{$ipb-caselog-highlight-color-5};
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
/*
|
||||
* @copyright Copyright (C) 2010-2025 Combodo SAS
|
||||
* @license http://opensource.org/licenses/AGPL-3.0
|
||||
*/
|
||||
|
||||
/* Skeleton palette
|
||||
CSS variables
|
||||
These are defined in themes/ as utils/ is included thrice and each time these variables are redeclared in the stylesheets
|
||||
*/
|
||||
:root {
|
||||
--skeleton-start-color: #{$ipb-skeleton-start-color};
|
||||
--skeleton-stop-color: #{$ipb-skeleton-stop-color};
|
||||
}
|
||||
1
datamodels/2.x/itop-portal-base/portal/public/css/themes/vendors/_all.scss
vendored
Normal file
1
datamodels/2.x/itop-portal-base/portal/public/css/themes/vendors/_all.scss
vendored
Normal file
@@ -0,0 +1 @@
|
||||
@import "datatables";
|
||||
129
datamodels/2.x/itop-portal-base/portal/public/css/themes/vendors/_datatables.scss
vendored
Normal file
129
datamodels/2.x/itop-portal-base/portal/public/css/themes/vendors/_datatables.scss
vendored
Normal file
@@ -0,0 +1,129 @@
|
||||
$ipb-vendors--datatables--paginate-button--colors: map-get(map-get(map-get($ipb-button-colors, ''), 'default'), '') !default;
|
||||
$ipb-vendors--datatables--paginate-button--hover--colors: map-get(map-get(map-get($ipb-button-colors, ''), 'default'), ':hover') !default;
|
||||
$ipb-vendors--datatables--paginate-button--focus--colors: map-get(map-get(map-get($ipb-button-colors, ''), 'default'), ':active') !default;
|
||||
$ipb-vendors--datatables--paginate-button--disabled--colors: map-get(map-get(map-get($ipb-button-colors, ''), 'default'), ':disabled') !default;
|
||||
$ipb-vendors--datatables--paginate-button--active--colors: map-get(map-get(map-get($ipb-button-colors, ''), 'primary'), '') !default;
|
||||
$ipb-vendors--datatables--paginate-button--active--hover--colors: map-get(map-get(map-get($ipb-button-colors, ''), 'primary'), ':hover') !default;
|
||||
|
||||
$ipb-vendors-datatables--columns-header--border-bottom-color: $ipb-color-grey-400 !default;
|
||||
$ipb-vendors-datatables--columns-header--border-bottom: 2px solid $ipb-vendors-datatables--columns-header--border-bottom-color !default;
|
||||
|
||||
$ipb-vendors-datatables--row--is-odd--background-color: $ipb-color-white-100 !default;
|
||||
$ipb-vendors-datatables--row--is-even--background-color: $ipb-color-white-200 !default;
|
||||
$ipb-vendors-datatables--row--hover--background-color: $ipb-color-blue-100 !default;
|
||||
$ipb-vendors-datatables--row--is-selected--color: $ipb-color-blue-900 !default;
|
||||
$ipb-vendors-datatables--row--is-selected--background-color: $ipb-color-blue-200 !default;
|
||||
$ipb-vendors-datatables--row--is-selected--hover--background-color: $ipb-color-blue-100 !default;
|
||||
|
||||
$ipb-vendors-datatables--row-highlight--colors:(
|
||||
'red': ($ipb-color-red-100, $ipb-color-red-200),
|
||||
'danger': ($ipb-color-danger-200, $ipb-color-danger-300),
|
||||
'alert': ($ipb-color-red-200, $ipb-color-red-300),
|
||||
'orange': ($ipb-color-orange-100, $ipb-color-orange-200),
|
||||
'warning': ($ipb-color-warning-200, $ipb-color-warning-300),
|
||||
'blue': ($ipb-color-blue-200, $ipb-color-blue-300),
|
||||
'info': ($ipb-color-information-200, $ipb-color-information-300),
|
||||
'green': ($ipb-color-green-100, $ipb-color-green-200),
|
||||
'success': ($ipb-color-success-100, $ipb-color-success-200),
|
||||
) !default;
|
||||
|
||||
$ipb-vendors-datatables--row-highlight--first-cell--colors:(
|
||||
'red': ($ipb-color-red-300),
|
||||
'danger': ($ipb-color-danger-400),
|
||||
'alert': ($ipb-color-red-400),
|
||||
'orange': ($ipb-color-orange-300),
|
||||
'warning': ($ipb-color-warning-400),
|
||||
'blue': ($ipb-color-blue-400),
|
||||
'info': ($ipb-color-information-400),
|
||||
'green': ($ipb-color-green-300),
|
||||
'success': ($ipb-color-success-300),
|
||||
) !default;
|
||||
|
||||
.table {
|
||||
> thead > tr > th {
|
||||
border-bottom: $ipb-vendors-datatables--columns-header--border-bottom !important;
|
||||
}
|
||||
}
|
||||
|
||||
.table-striped > tbody > tr{
|
||||
background-color: $ipb-vendors-datatables--row--is-even--background-color;
|
||||
&:nth-of-type(2n+1) {
|
||||
background-color: $ipb-vendors-datatables--row--is-odd--background-color;
|
||||
}
|
||||
@each $sColorLabel, $aAttributes in $ipb-vendors-datatables--row-highlight--colors {
|
||||
$sBgColor: nth($aAttributes, 1);
|
||||
$sBgColorHover: nth($aAttributes, 2);
|
||||
&.ipb-is-#{$sColorLabel}, &.#{$sColorLabel}{
|
||||
td {
|
||||
background-color: $sBgColor;
|
||||
}
|
||||
&:hover td {
|
||||
background-color: $sBgColorHover;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
@each $sColorLabel, $aAttributes in $ipb-vendors-datatables--row-highlight--first-cell--colors {
|
||||
$sBgColor: nth($aAttributes, 1);
|
||||
&.ipb-is-#{$sColorLabel} td:first-child::before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
width: 3px;
|
||||
height: 100%;
|
||||
background-color: $sBgColor;
|
||||
}
|
||||
}
|
||||
&:hover {
|
||||
background-color: $ipb-vendors-datatables--row--hover--background-color;
|
||||
}
|
||||
}
|
||||
|
||||
table.dataTable {
|
||||
> thead, tbody, tfoot {
|
||||
> tr.selected {
|
||||
background-color: $ipb-vendors-datatables--row--is-selected--background-color;
|
||||
color: $ipb-vendors-datatables--row--is-selected--color;
|
||||
&:hover {
|
||||
background-color: $ipb-vendors-datatables--row--is-selected--hover--background-color;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.pagination > .paginate_button{
|
||||
> a {
|
||||
background-color: nth($ipb-vendors--datatables--paginate-button--colors, 1);
|
||||
color: nth($ipb-vendors--datatables--paginate-button--colors, 2);
|
||||
border-color: nth($ipb-vendors--datatables--paginate-button--colors, 3);
|
||||
|
||||
&:hover {
|
||||
background-color: nth($ipb-vendors--datatables--paginate-button--hover--colors, 1);
|
||||
color: nth($ipb-vendors--datatables--paginate-button--hover--colors, 2);
|
||||
border-color: nth($ipb-vendors--datatables--paginate-button--hover--colors, 3)
|
||||
}
|
||||
|
||||
&:focus {
|
||||
background-color: nth($ipb-vendors--datatables--paginate-button--focus--colors, 1);
|
||||
color: nth($ipb-vendors--datatables--paginate-button--focus--colors, 2);
|
||||
border-color: nth($ipb-vendors--datatables--paginate-button--focus--colors, 3)
|
||||
|
||||
}
|
||||
}
|
||||
&.disabled > a {
|
||||
background-color: nth($ipb-vendors--datatables--paginate-button--disabled--colors, 1);
|
||||
color: nth($ipb-vendors--datatables--paginate-button--disabled--colors, 2);
|
||||
border-color: nth($ipb-vendors--datatables--paginate-button--disabled--colors, 3)
|
||||
}
|
||||
&.active > a {
|
||||
background-color: nth($ipb-vendors--datatables--paginate-button--active--colors, 1);
|
||||
color: nth($ipb-vendors--datatables--paginate-button--active--colors, 2);
|
||||
border-color: nth($ipb-vendors--datatables--paginate-button--active--colors, 3);
|
||||
&:hover{
|
||||
background-color: nth($ipb-vendors--datatables--paginate-button--active--hover--colors, 1);
|
||||
color: nth($ipb-vendors--datatables--paginate-button--active--hover--colors, 2);
|
||||
border-color: nth($ipb-vendors--datatables--paginate-button--active--hover--colors, 3)
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,2 +1,3 @@
|
||||
@import "helpers/all";
|
||||
@import "variables/all";
|
||||
@import "variables/all";
|
||||
@import "mixins/all";
|
||||
@@ -1,7 +1,14 @@
|
||||
/* SCSS variables */
|
||||
/*
|
||||
* @copyright Copyright (C) 2010-2025 Combodo SAS
|
||||
* @license http://opensource.org/licenses/AGPL-3.0
|
||||
*/
|
||||
|
||||
/* TODO 3.3.0: move these to individual files */
|
||||
/* SCSS variables (can be overloaded) */
|
||||
$ipb-following-dot--size: $common-size-150 !default;
|
||||
$ipb-following-dot--color: $common-color-orange-600 !default;
|
||||
$ipb-following-dot--margin-y: auto !default;
|
||||
$ipb-following-dot--color: $ipb-color-primary-600 !default;
|
||||
$ipb-following-dot--margin-top: calc(-1 * #{$ipb-following-dot--size} / 2) !default;
|
||||
$ipb-following-dot--margin-bottom: auto !default;
|
||||
$ipb-following-dot--margin-x: $common-spacing-300 !default;
|
||||
|
||||
@mixin ipb-following-dot($size:$ipb-following-dot--size, $color:$ipb-following-dot--color) {
|
||||
@@ -12,13 +19,13 @@ $ipb-following-dot--margin-x: $common-spacing-300 !default;
|
||||
background-color: $color;
|
||||
border-radius: 50%;
|
||||
display: inline-block;
|
||||
margin: $ipb-following-dot--margin-y $ipb-following-dot--margin-x;
|
||||
margin: $ipb-following-dot--margin-top $ipb-following-dot--margin-x $ipb-following-dot--margin-bottom $ipb-following-dot--margin-x;
|
||||
vertical-align: middle;
|
||||
}
|
||||
}
|
||||
|
||||
/* SCSS variables */
|
||||
$ipb-heavy-animated-border--border-color: $common-color-blue-grey-700 !default;
|
||||
$ipb-heavy-animated-border--border-color: $ipb-color-blue-grey-700 !default;
|
||||
$ipb-heavy-animated-border--border-width: $common-size-50 !default;
|
||||
$ipb-heavy-animated-border--border-radius: $common-border-radius-500 !default;
|
||||
|
||||
@@ -44,7 +51,7 @@ $ipb-heavy-animated-border--border-radius: $common-border-radius-500 !default;
|
||||
|
||||
|
||||
/* SCSS variables */
|
||||
$ipb-toggle-nav--color: white !default;
|
||||
$ipb-toggle-nav--color: $ipb-color-white-100 !default;
|
||||
|
||||
@mixin ipb-toggle-nav($color:$ipb-toggle-nav--color) {
|
||||
|
||||
@@ -146,7 +153,7 @@ $ipb-toggle-nav--color: white !default;
|
||||
}
|
||||
|
||||
/* SCSS variables */
|
||||
$ipb-scrollbar--color: $common-color-grey-200 $common-color-blue-grey-800 !default;
|
||||
$ipb-scrollbar--color: $ipb-color-grey-200 $ipb-color-blue-grey-800 !default;
|
||||
|
||||
@mixin ipb-scrollbar($overflowX:hidden, $overflowY:auto, $scrollbarWidth:thin, $scrollbarColor:$ipb-scrollbar--color) {
|
||||
overflow-x: $overflowX;
|
||||
@@ -121,123 +121,4 @@ $ipb-color-purple-800: $common-color-purple-800 !default;
|
||||
$ipb-color-purple-900: $common-color-purple-900 !default;
|
||||
$ipb-color-purple-950: $common-color-purple-950 !default;
|
||||
|
||||
$ipb-colors: $common-colors;
|
||||
|
||||
/* CSS variables */
|
||||
:root {
|
||||
--ipb-color-white-100: #{$ipb-color-white-100};
|
||||
--ipb-color-white-200: #{$ipb-color-white-200};
|
||||
--ipb-color-transparent: #{$ipb-color-transparent};
|
||||
|
||||
--ipb-color-grey-50: #{$ipb-color-grey-50};
|
||||
--ipb-color-grey-100: #{$ipb-color-grey-100};
|
||||
--ipb-color-grey-200: #{$ipb-color-grey-200};
|
||||
--ipb-color-grey-300: #{$ipb-color-grey-300};
|
||||
--ipb-color-grey-400: #{$ipb-color-grey-400};
|
||||
--ipb-color-grey-500: #{$ipb-color-grey-500};
|
||||
--ipb-color-grey-600: #{$ipb-color-grey-600};
|
||||
--ipb-color-grey-700: #{$ipb-color-grey-700};
|
||||
--ipb-color-grey-800: #{$ipb-color-grey-800};
|
||||
--ipb-color-grey-900: #{$ipb-color-grey-900};
|
||||
--ipb-color-grey-950: #{$ipb-color-grey-950};
|
||||
|
||||
--ipb-color-blue-grey-50: #{$ipb-color-blue-grey-50};
|
||||
--ipb-color-blue-grey-100: #{$ipb-color-blue-grey-100};
|
||||
--ipb-color-blue-grey-200: #{$ipb-color-blue-grey-200};
|
||||
--ipb-color-blue-grey-300: #{$ipb-color-blue-grey-300};
|
||||
--ipb-color-blue-grey-400: #{$ipb-color-blue-grey-400};
|
||||
--ipb-color-blue-grey-500: #{$ipb-color-blue-grey-500};
|
||||
--ipb-color-blue-grey-600: #{$ipb-color-blue-grey-600};
|
||||
--ipb-color-blue-grey-700: #{$ipb-color-blue-grey-700};
|
||||
--ipb-color-blue-grey-800: #{$ipb-color-blue-grey-800};
|
||||
--ipb-color-blue-grey-900: #{$ipb-color-blue-grey-900};
|
||||
--ipb-color-blue-grey-950: #{$ipb-color-blue-grey-950};
|
||||
|
||||
--ipb-color-blue-100: #{$ipb-color-blue-100};
|
||||
--ipb-color-blue-200: #{$ipb-color-blue-200};
|
||||
--ipb-color-blue-300: #{$ipb-color-blue-300};
|
||||
--ipb-color-blue-400: #{$ipb-color-blue-400};
|
||||
--ipb-color-blue-500: #{$ipb-color-blue-500};
|
||||
--ipb-color-blue-600: #{$ipb-color-blue-600};
|
||||
--ipb-color-blue-700: #{$ipb-color-blue-700};
|
||||
--ipb-color-blue-800: #{$ipb-color-blue-800};
|
||||
--ipb-color-blue-900: #{$ipb-color-blue-900};
|
||||
--ipb-color-blue-950: #{$ipb-color-blue-950};
|
||||
|
||||
--ipb-color-cyan-100: #{$ipb-color-cyan-100};
|
||||
--ipb-color-cyan-200: #{$ipb-color-cyan-200};
|
||||
--ipb-color-cyan-300: #{$ipb-color-cyan-300};
|
||||
--ipb-color-cyan-400: #{$ipb-color-cyan-400};
|
||||
--ipb-color-cyan-500: #{$ipb-color-cyan-500};
|
||||
--ipb-color-cyan-600: #{$ipb-color-cyan-600};
|
||||
--ipb-color-cyan-700: #{$ipb-color-cyan-700};
|
||||
--ipb-color-cyan-800: #{$ipb-color-cyan-800};
|
||||
--ipb-color-cyan-900: #{$ipb-color-cyan-900};
|
||||
--ipb-color-cyan-950: #{$ipb-color-cyan-950};
|
||||
|
||||
--ipb-color-green-100: #{$ipb-color-green-100};
|
||||
--ipb-color-green-200: #{$ipb-color-green-200};
|
||||
--ipb-color-green-300: #{$ipb-color-green-300};
|
||||
--ipb-color-green-400: #{$ipb-color-green-400};
|
||||
--ipb-color-green-500: #{$ipb-color-green-500};
|
||||
--ipb-color-green-600: #{$ipb-color-green-600};
|
||||
--ipb-color-green-700: #{$ipb-color-green-700};
|
||||
--ipb-color-green-800: #{$ipb-color-green-800};
|
||||
--ipb-color-green-900: #{$ipb-color-green-900};
|
||||
--ipb-color-green-950: #{$ipb-color-green-950};
|
||||
|
||||
--ipb-color-orange-100: #{$ipb-color-orange-100};
|
||||
--ipb-color-orange-200: #{$ipb-color-orange-200};
|
||||
--ipb-color-orange-300: #{$ipb-color-orange-300};
|
||||
--ipb-color-orange-400: #{$ipb-color-orange-400};
|
||||
--ipb-color-orange-500: #{$ipb-color-orange-500};
|
||||
--ipb-color-orange-600: #{$ipb-color-orange-600};
|
||||
--ipb-color-orange-700: #{$ipb-color-orange-700};
|
||||
--ipb-color-orange-800: #{$ipb-color-orange-800};
|
||||
--ipb-color-orange-900: #{$ipb-color-orange-900};
|
||||
--ipb-color-orange-950: #{$ipb-color-orange-950};
|
||||
|
||||
--ipb-color-red-100: #{$ipb-color-red-100};
|
||||
--ipb-color-red-200: #{$ipb-color-red-200};
|
||||
--ipb-color-red-300: #{$ipb-color-red-300};
|
||||
--ipb-color-red-400: #{$ipb-color-red-400};
|
||||
--ipb-color-red-500: #{$ipb-color-red-500};
|
||||
--ipb-color-red-600: #{$ipb-color-red-600};
|
||||
--ipb-color-red-700: #{$ipb-color-red-700};
|
||||
--ipb-color-red-800: #{$ipb-color-red-800};
|
||||
--ipb-color-red-900: #{$ipb-color-red-900};
|
||||
--ipb-color-red-950: #{$ipb-color-red-950};
|
||||
|
||||
--ipb-color-pink-100: #{$ipb-color-pink-100};
|
||||
--ipb-color-pink-200: #{$ipb-color-pink-200};
|
||||
--ipb-color-pink-300: #{$ipb-color-pink-300};
|
||||
--ipb-color-pink-400: #{$ipb-color-pink-400};
|
||||
--ipb-color-pink-500: #{$ipb-color-pink-500};
|
||||
--ipb-color-pink-600: #{$ipb-color-pink-600};
|
||||
--ipb-color-pink-700: #{$ipb-color-pink-700};
|
||||
--ipb-color-pink-800: #{$ipb-color-pink-800};
|
||||
--ipb-color-pink-900: #{$ipb-color-pink-900};
|
||||
--ipb-color-pink-950: #{$ipb-color-pink-950};
|
||||
|
||||
--ipb-color-yellow-100: #{$ipb-color-yellow-100};
|
||||
--ipb-color-yellow-200: #{$ipb-color-yellow-200};
|
||||
--ipb-color-yellow-300: #{$ipb-color-yellow-300};
|
||||
--ipb-color-yellow-400: #{$ipb-color-yellow-400};
|
||||
--ipb-color-yellow-500: #{$ipb-color-yellow-500};
|
||||
--ipb-color-yellow-600: #{$ipb-color-yellow-600};
|
||||
--ipb-color-yellow-700: #{$ipb-color-yellow-700};
|
||||
--ipb-color-yellow-800: #{$ipb-color-yellow-800};
|
||||
--ipb-color-yellow-900: #{$ipb-color-yellow-900};
|
||||
--ipb-color-yellow-950: #{$ipb-color-yellow-950};
|
||||
|
||||
--ipb-color-purple-100: #{$ipb-color-purple-100};
|
||||
--ipb-color-purple-200: #{$ipb-color-purple-200};
|
||||
--ipb-color-purple-300: #{$ipb-color-purple-300};
|
||||
--ipb-color-purple-400: #{$ipb-color-purple-400};
|
||||
--ipb-color-purple-500: #{$ipb-color-purple-500};
|
||||
--ipb-color-purple-600: #{$ipb-color-purple-600};
|
||||
--ipb-color-purple-700: #{$ipb-color-purple-700};
|
||||
--ipb-color-purple-800: #{$ipb-color-purple-800};
|
||||
--ipb-color-purple-900: #{$ipb-color-purple-900};
|
||||
--ipb-color-purple-950: #{$ipb-color-purple-950};
|
||||
}
|
||||
$ipb-colors: $common-colors;
|
||||
@@ -57,25 +57,4 @@ $ipb-lifecycle-states-colors: (
|
||||
'primary-color': $ipb-lifecycle-inactive-state-primary-color,
|
||||
'secondary-color': $ipb-lifecycle-inactive-state-secondary-color,
|
||||
),
|
||||
);
|
||||
|
||||
/* CSS varibales */
|
||||
:root {
|
||||
--ipb-lifecycle-new-state-primary-color: #{$ipb-lifecycle-new-state-primary-color};
|
||||
--ipb-lifecycle-new-state-secondary-color: #{$ipb-lifecycle-new-state-secondary-color};
|
||||
--ipb-lifecycle-neutral-state-primary-color: #{$ipb-lifecycle-neutral-state-primary-color};
|
||||
--ipb-lifecycle-neutral-state-secondary-color: #{$ipb-lifecycle-neutral-state-secondary-color};
|
||||
--ipb-lifecycle-waiting-state-primary-color: #{$ipb-lifecycle-waiting-state-primary-color};
|
||||
--ipb-lifecycle-waiting-state-secondary-color: #{$ipb-lifecycle-waiting-state-secondary-color};
|
||||
--ipb-lifecycle-success-state-primary-color: #{$ipb-lifecycle-success-state-primary-color};
|
||||
--ipb-lifecycle-success-state-secondary-color: #{$ipb-lifecycle-success-state-secondary-color};
|
||||
--ipb-lifecycle-failure-state-primary-color: #{$ipb-lifecycle-failure-state-primary-color};
|
||||
--ipb-lifecycle-failure-state-secondary-color: #{$ipb-lifecycle-failure-state-secondary-color};
|
||||
--ipb-lifecycle-frozen-state-primary-color: #{$ipb-lifecycle-frozen-state-primary-color};
|
||||
--ipb-lifecycle-frozen-state-secondary-color: #{$ipb-lifecycle-frozen-state-secondary-color};
|
||||
|
||||
--ipb-lifecycle-active-state-primary-color: #{$ipb-lifecycle-active-state-primary-color};
|
||||
--ipb-lifecycle-active-state-secondary-color: #{$ipb-lifecycle-active-state-secondary-color};
|
||||
--ipb-lifecycle-inactive-state-primary-color: #{$ipb-lifecycle-inactive-state-primary-color};
|
||||
--ipb-lifecycle-inactive-state-secondary-color: #{$ipb-lifecycle-inactive-state-secondary-color};
|
||||
}
|
||||
);
|
||||
@@ -98,89 +98,3 @@ $ipb-caselog-highlight-color-5: $common-caselog-highlight-color-5 !default;
|
||||
$ipb-caselog-highlight-color-6: $common-caselog-highlight-color-6 !default;
|
||||
$ipb-caselog-highlight-color-7: $common-caselog-highlight-color-7 !default;
|
||||
$ipb-caselog-highlight-colors: $common-caselog-highlight-colors !default;
|
||||
|
||||
/* CSS variables */
|
||||
:root {
|
||||
--ipb-color-primary-100: #{$ipb-color-primary-100};
|
||||
--ipb-color-primary-200: #{$ipb-color-primary-200};
|
||||
--ipb-color-primary-300: #{$ipb-color-primary-300};
|
||||
--ipb-color-primary-400: #{$ipb-color-primary-400};
|
||||
--ipb-color-primary-500: #{$ipb-color-primary-500};
|
||||
--ipb-color-primary-600: #{$ipb-color-primary-600};
|
||||
--ipb-color-primary-700: #{$ipb-color-primary-700};
|
||||
--ipb-color-primary-800: #{$ipb-color-primary-800};
|
||||
--ipb-color-primary-900: #{$ipb-color-primary-900};
|
||||
--ipb-color-primary-950: #{$ipb-color-primary-950};
|
||||
|
||||
--ipb-color-secondary-100: #{$ipb-color-secondary-100};
|
||||
--ipb-color-secondary-200: #{$ipb-color-secondary-200};
|
||||
--ipb-color-secondary-300: #{$ipb-color-secondary-300};
|
||||
--ipb-color-secondary-400: #{$ipb-color-secondary-400};
|
||||
--ipb-color-secondary-500: #{$ipb-color-secondary-500};
|
||||
--ipb-color-secondary-600: #{$ipb-color-secondary-600};
|
||||
--ipb-color-secondary-700: #{$ipb-color-secondary-700};
|
||||
--ipb-color-secondary-800: #{$ipb-color-secondary-800};
|
||||
--ipb-color-secondary-900: #{$ipb-color-secondary-900};
|
||||
--ipb-color-secondary-950: #{$ipb-color-secondary-950};
|
||||
|
||||
--ipb-color-information-100: #{$ipb-color-information-100};
|
||||
--ipb-color-information-200: #{$ipb-color-information-200};
|
||||
--ipb-color-information-300: #{$ipb-color-information-300};
|
||||
--ipb-color-information-400: #{$ipb-color-information-400};
|
||||
--ipb-color-information-500: #{$ipb-color-information-500};
|
||||
--ipb-color-information-600: #{$ipb-color-information-600};
|
||||
--ipb-color-information-700: #{$ipb-color-information-700};
|
||||
--ipb-color-information-800: #{$ipb-color-information-800};
|
||||
--ipb-color-information-900: #{$ipb-color-information-900};
|
||||
--ipb-color-information-950: #{$ipb-color-information-950};
|
||||
|
||||
--ipb-color-success-100: #{$ipb-color-success-100};
|
||||
--ipb-color-success-200: #{$ipb-color-success-200};
|
||||
--ipb-color-success-300: #{$ipb-color-success-300};
|
||||
--ipb-color-success-400: #{$ipb-color-success-400};
|
||||
--ipb-color-success-500: #{$ipb-color-success-500};
|
||||
--ipb-color-success-600: #{$ipb-color-success-600};
|
||||
--ipb-color-success-700: #{$ipb-color-success-700};
|
||||
--ipb-color-success-800: #{$ipb-color-success-800};
|
||||
--ipb-color-success-900: #{$ipb-color-success-900};
|
||||
--ipb-color-success-950: #{$ipb-color-success-950};
|
||||
|
||||
--ipb-color-warning-100: #{$ipb-color-warning-100};
|
||||
--ipb-color-warning-200: #{$ipb-color-warning-200};
|
||||
--ipb-color-warning-300: #{$ipb-color-warning-300};
|
||||
--ipb-color-warning-400: #{$ipb-color-warning-400};
|
||||
--ipb-color-warning-500: #{$ipb-color-warning-500};
|
||||
--ipb-color-warning-600: #{$ipb-color-warning-600};
|
||||
--ipb-color-warning-700: #{$ipb-color-warning-700};
|
||||
--ipb-color-warning-800: #{$ipb-color-warning-800};
|
||||
--ipb-color-warning-900: #{$ipb-color-warning-900};
|
||||
--ipb-color-warning-950: #{$ipb-color-warning-950};
|
||||
|
||||
--ipb-color-danger-100: #{$ipb-color-danger-100};
|
||||
--ipb-color-danger-200: #{$ipb-color-danger-200};
|
||||
--ipb-color-danger-300: #{$ipb-color-danger-300};
|
||||
--ipb-color-danger-400: #{$ipb-color-danger-400};
|
||||
--ipb-color-danger-500: #{$ipb-color-danger-500};
|
||||
--ipb-color-danger-600: #{$ipb-color-danger-600};
|
||||
--ipb-color-danger-700: #{$ipb-color-danger-700};
|
||||
--ipb-color-danger-800: #{$ipb-color-danger-800};
|
||||
--ipb-color-danger-900: #{$ipb-color-danger-900};
|
||||
--ipb-color-danger-950: #{$ipb-color-danger-950};
|
||||
|
||||
--ipb-color-error-100: #{$ipb-color-error-100};
|
||||
--ipb-color-error-200: #{$ipb-color-error-200};
|
||||
--ipb-color-error-300: #{$ipb-color-error-300};
|
||||
--ipb-color-error-400: #{$ipb-color-error-400};
|
||||
--ipb-color-error-500: #{$ipb-color-error-500};
|
||||
--ipb-color-error-600: #{$ipb-color-error-600};
|
||||
--ipb-color-error-700: #{$ipb-color-error-700};
|
||||
--ipb-color-error-800: #{$ipb-color-error-800};
|
||||
--ipb-color-error-900: #{$ipb-color-error-900};
|
||||
--ipb-color-error-950: #{$ipb-color-error-950};
|
||||
|
||||
--ipb-caselog-color-highlight-1: #{$ipb-caselog-highlight-color-1};
|
||||
--ipb-caselog-color-highlight-2: #{$ipb-caselog-highlight-color-2};
|
||||
--ipb-caselog-color-highlight-3: #{$ipb-caselog-highlight-color-3};
|
||||
--ipb-caselog-color-highlight-4: #{$ipb-caselog-highlight-color-4};
|
||||
--ipb-caselog-color-highlight-5: #{$ipb-caselog-highlight-color-5};
|
||||
}
|
||||
@@ -7,11 +7,4 @@
|
||||
/* - Colors used by skeletons svg to display placeholders */
|
||||
|
||||
$ipb-skeleton-start-color: $common-skeleton-start-color !default;
|
||||
$ipb-skeleton-stop-color: $common-skeleton-stop-color !default;
|
||||
|
||||
/* CSS variables */
|
||||
/* Skeleton CSS3 variables are not ipb prefixed as they are not iTop backoffice exclusives*/
|
||||
:root {
|
||||
--skeleton-start-color: #{$ipb-skeleton-start-color};
|
||||
--skeleton-stop-color: #{$ipb-skeleton-stop-color};
|
||||
}
|
||||
$ipb-skeleton-stop-color: $common-skeleton-stop-color !default;
|
||||
@@ -1,49 +1,14 @@
|
||||
/*
|
||||
* @copyright Copyright (C) 2010-2024 Combodo SAS
|
||||
* @copyright Copyright (C) 2010-2025 Combodo SAS
|
||||
* @license http://opensource.org/licenses/AGPL-3.0
|
||||
*/
|
||||
|
||||
/* SCSS variables (can be overloaded) */
|
||||
$ipb-vendors-datatables--cell--padding-x: $common-spacing-400 !default;
|
||||
$ipb-vendors-datatables--cell--padding-y: 10px !default;
|
||||
|
||||
$ipb-vendors-datatables--columns-header--border-bottom: 2px solid $common-color-grey-400 !default;
|
||||
|
||||
$ipb-vendors--datatables--paginate-button--colors: map-get(map-get(map-get($ipb-button-colors, ''), 'default'), '') !default;
|
||||
$ipb-vendors--datatables--paginate-button--hover--colors: map-get(map-get(map-get($ipb-button-colors, ''), 'default'), ':hover') !default;
|
||||
$ipb-vendors--datatables--paginate-button--focus--colors: map-get(map-get(map-get($ipb-button-colors, ''), 'default'), ':active') !default;
|
||||
$ipb-vendors--datatables--paginate-button--disabled--colors: map-get(map-get(map-get($ipb-button-colors, ''), 'default'), ':disabled') !default;
|
||||
$ipb-vendors--datatables--paginate-button--active--colors: map-get(map-get(map-get($ipb-button-colors, ''), 'primary'), '') !default;
|
||||
$ipb-vendors--datatables--paginate-button--active--hover--colors: map-get(map-get(map-get($ipb-button-colors, ''), 'primary'), ':hover') !default;
|
||||
|
||||
$ipb-vendors-datatables--row--background-color--is-odd: $common-color-white-100 !default;
|
||||
$ipb-vendors-datatables--row--background-color--is-even: $common-color-white-200 !default;
|
||||
|
||||
$ipb-vendors-datatables--row-highlight--first-cell--width: 3px !default;
|
||||
|
||||
$ipb-vendors-datatables--row-highlight--colors:(
|
||||
'red': ($common-color-red-100, $common-color-red-200),
|
||||
'danger': ($common-color-danger-200, $common-color-danger-300),
|
||||
'alert': ($common-color-red-200, $common-color-red-300),
|
||||
'orange': ($common-color-orange-100, $common-color-orange-200),
|
||||
'warning': ($common-color-warning-200, $common-color-warning-300),
|
||||
'blue': ($common-color-blue-200, $common-color-blue-300),
|
||||
'info': ($common-color-information-200, $common-color-information-300),
|
||||
'green': ($common-color-green-100, $common-color-green-200),
|
||||
'success': ($common-color-success-100, $common-color-success-200),
|
||||
) !default;
|
||||
|
||||
$ipb-vendors-datatables--row-highlight--first-cell--colors:(
|
||||
'red': ($common-color-red-300),
|
||||
'danger': ($common-color-danger-400),
|
||||
'alert': ($common-color-red-400),
|
||||
'orange': ($common-color-orange-300),
|
||||
'warning': ($common-color-warning-400),
|
||||
'blue': ($common-color-blue-400),
|
||||
'info': ($common-color-information-400),
|
||||
'green': ($common-color-green-300),
|
||||
'success': ($common-color-success-300),
|
||||
) !default;
|
||||
|
||||
.table {
|
||||
> thead, tbody, tfoot {
|
||||
> tr {
|
||||
@@ -54,83 +19,13 @@ $ipb-vendors-datatables--row-highlight--first-cell--colors:(
|
||||
}
|
||||
}
|
||||
}
|
||||
> thead > tr > th {
|
||||
border-bottom: $ipb-vendors-datatables--columns-header--border-bottom !important;
|
||||
}
|
||||
}
|
||||
|
||||
.table-striped > tbody > tr{
|
||||
background-color: $ipb-vendors-datatables--row--background-color--is-even;
|
||||
cursor: pointer;
|
||||
&:nth-of-type(2n+1) {
|
||||
background-color: $ipb-vendors-datatables--row--background-color--is-odd;
|
||||
}
|
||||
@each $sColorLabel, $aAttributes in $ipb-vendors-datatables--row-highlight--colors {
|
||||
$sBgColor: nth($aAttributes, 1);
|
||||
$sBgColorHover: nth($aAttributes, 2);
|
||||
&.ipb-is-#{$sColorLabel}, &.#{$sColorLabel}{
|
||||
td {
|
||||
background-color: $sBgColor;
|
||||
}
|
||||
&:hover td {
|
||||
background-color: $sBgColorHover;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
@each $sColorLabel, $aAttributes in $ipb-vendors-datatables--row-highlight--first-cell--colors {
|
||||
$sBgColor: nth($aAttributes, 1);
|
||||
&.ipb-is-#{$sColorLabel} td:first-child::before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
width: 3px;
|
||||
height: 100%;
|
||||
background-color: $sBgColor;
|
||||
}
|
||||
}
|
||||
&:hover {
|
||||
background-color: $common-color-blue-100;
|
||||
}
|
||||
}
|
||||
|
||||
.pagination > .paginate_button{
|
||||
> a {
|
||||
background-color: nth($ipb-vendors--datatables--paginate-button--colors, 1);
|
||||
color: nth($ipb-vendors--datatables--paginate-button--colors, 2);
|
||||
border-color: nth($ipb-vendors--datatables--paginate-button--colors, 3);
|
||||
|
||||
&:hover {
|
||||
background-color: nth($ipb-vendors--datatables--paginate-button--hover--colors, 1);
|
||||
color: nth($ipb-vendors--datatables--paginate-button--hover--colors, 2);
|
||||
border-color: nth($ipb-vendors--datatables--paginate-button--hover--colors, 3)
|
||||
}
|
||||
|
||||
&:focus {
|
||||
background-color: nth($ipb-vendors--datatables--paginate-button--focus--colors, 1);
|
||||
color: nth($ipb-vendors--datatables--paginate-button--focus--colors, 2);
|
||||
border-color: nth($ipb-vendors--datatables--paginate-button--focus--colors, 3)
|
||||
|
||||
}
|
||||
}
|
||||
&.disabled > a {
|
||||
background-color: nth($ipb-vendors--datatables--paginate-button--disabled--colors, 1);
|
||||
color: nth($ipb-vendors--datatables--paginate-button--disabled--colors, 2);
|
||||
border-color: nth($ipb-vendors--datatables--paginate-button--disabled--colors, 3)
|
||||
}
|
||||
&.active > a {
|
||||
background-color: nth($ipb-vendors--datatables--paginate-button--active--colors, 1);
|
||||
color: nth($ipb-vendors--datatables--paginate-button--active--colors, 2);
|
||||
border-color: nth($ipb-vendors--datatables--paginate-button--active--colors, 3);
|
||||
&:hover{
|
||||
background-color: nth($ipb-vendors--datatables--paginate-button--active--hover--colors, 1);
|
||||
color: nth($ipb-vendors--datatables--paginate-button--active--hover--colors, 2);
|
||||
border-color: nth($ipb-vendors--datatables--paginate-button--active--hover--colors, 3)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.dataTables_length, .dataTables_filter, .dataTables_info {
|
||||
@extend %common-font-ral-nor-150;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -245,6 +245,10 @@ class NavigationMenuElement extends HTMLElement {
|
||||
}
|
||||
|
||||
Expand(bSaveUserPreference = false) {
|
||||
// save user preference
|
||||
if (bSaveUserPreference) {
|
||||
oUserPreferences.setPreference('portal.navigation_menu.expanded', 'expanded');
|
||||
}
|
||||
// sync attribute
|
||||
if (this.getAttribute(NavigationMenuElement.DATA_EXPANDED_STATE) !== 'expanded') {
|
||||
this.setAttribute(NavigationMenuElement.DATA_EXPANDED_STATE, 'expanded');
|
||||
@@ -257,13 +261,13 @@ class NavigationMenuElement extends HTMLElement {
|
||||
// dispatch events
|
||||
window.dispatchEvent(new Event('resize')); // do layout
|
||||
this.dispatchEvent(new CustomEvent("state", {detail: 'expanded'}));
|
||||
// save user preference
|
||||
if (bSaveUserPreference) {
|
||||
SetUserPreference('portal.navigation_menu.expanded', 'expanded', true);
|
||||
}
|
||||
}
|
||||
|
||||
Collapse(bSaveUserPreference = false) {
|
||||
// save user preference
|
||||
if (bSaveUserPreference) {
|
||||
oUserPreferences.setPreference('portal.navigation_menu.expanded', 'collapsed');
|
||||
}
|
||||
// sync attribute
|
||||
if (this.getAttribute(NavigationMenuElement.DATA_EXPANDED_STATE) !== 'collapsed') {
|
||||
this.setAttribute(NavigationMenuElement.DATA_EXPANDED_STATE, 'collapsed');
|
||||
@@ -276,10 +280,6 @@ class NavigationMenuElement extends HTMLElement {
|
||||
// dispatch events
|
||||
window.dispatchEvent(new Event('resize')); // do layout
|
||||
this.dispatchEvent(new CustomEvent("state", {detail: 'collapsed'}));
|
||||
// save user preference
|
||||
if (bSaveUserPreference) {
|
||||
SetUserPreference('portal.navigation_menu.expanded', 'collapsed', true);
|
||||
}
|
||||
}
|
||||
|
||||
IsExpanded() {
|
||||
|
||||
@@ -0,0 +1,50 @@
|
||||
/*
|
||||
* Copyright (C) 2013-2024 Combodo SAS
|
||||
*
|
||||
* This file is part of iTop.
|
||||
*
|
||||
* iTop is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* iTop is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
*/
|
||||
|
||||
class UserPreferences {
|
||||
|
||||
constructor(sUrl) {
|
||||
this.sUrl = sUrl;
|
||||
}
|
||||
|
||||
setPreference(key, value) {
|
||||
|
||||
let $data = new FormData();
|
||||
$data.append("key", key);
|
||||
$data.append("value", value);
|
||||
|
||||
fetch(this.sUrl, {
|
||||
method: "POST",
|
||||
body: $data,
|
||||
}).then(
|
||||
(response) => {
|
||||
if (!response.ok) {
|
||||
throw new Error(`Network response was not ok: ${response.statusText}`);
|
||||
}
|
||||
return response.json();
|
||||
}
|
||||
).catch(
|
||||
(error) => {
|
||||
console.error('Unable to set user preference:', error);
|
||||
}
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
@@ -0,0 +1,65 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Copyright (C) 2013-2024 Combodo SAS
|
||||
*
|
||||
* This file is part of iTop.
|
||||
*
|
||||
* iTop is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* iTop is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
*/
|
||||
|
||||
namespace Combodo\iTop\Portal\Controller;
|
||||
|
||||
use appUserPreferences;
|
||||
use Exception;
|
||||
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController as SymfonyAbstractController;
|
||||
use Symfony\Component\HttpFoundation\JsonResponse;
|
||||
use Symfony\Component\HttpFoundation\Request;
|
||||
|
||||
/**
|
||||
* Class PreferencesController
|
||||
*
|
||||
* @package Combodo\iTop\Portal\Controller
|
||||
* @since 3.3.0
|
||||
*/
|
||||
class PreferencesController extends SymfonyAbstractController
|
||||
{
|
||||
|
||||
/**
|
||||
* Set a preference for the current user.
|
||||
*
|
||||
* @param \Symfony\Component\HttpFoundation\Request $oRequest
|
||||
*
|
||||
* @return \Symfony\Component\HttpFoundation\JsonResponse
|
||||
*/
|
||||
public function SetPreferenceAction(Request $oRequest): JsonResponse
|
||||
{
|
||||
$sStatus = 'success';
|
||||
|
||||
// retrieve the parameters from the request
|
||||
$sKey = $oRequest->request->get('key');
|
||||
$sValue = $oRequest->request->get('value');
|
||||
|
||||
// set user preference
|
||||
try{
|
||||
appUserPreferences::SetPref($sKey, $sValue);
|
||||
}
|
||||
catch(Exception){
|
||||
$sStatus = 'error';
|
||||
}
|
||||
|
||||
return new JsonResponse([
|
||||
'status' => $sStatus,
|
||||
]);
|
||||
}
|
||||
}
|
||||
@@ -26,7 +26,7 @@
|
||||
{% endblock %}
|
||||
|
||||
{% block pMainContentHolder%}
|
||||
{% if iItemsCount > 0 or sSearchValue is not null %}
|
||||
{% if iItemsCount > 0 or sSearchValue is not empty %}
|
||||
{% block bBrowseHeaderContent %}
|
||||
{% endblock %}
|
||||
<div class="ipb-panel ipb-browse-brick-panel panel panel-default">
|
||||
@@ -36,7 +36,8 @@
|
||||
{% else %}
|
||||
<div class="ipb-panel panel panel-default">
|
||||
<div class="ipb-panel--body panel-body">
|
||||
<h3 class="text-center">{{ 'Brick:Portal:Browse:Filter:NoData'|dict_s }}</h3>
|
||||
<div class="ipb-browse-brick--no-item--illustration ipb-svg-illustration--container">{{ source('illustrations/undraw_empty_alternative.svg') }}</div>
|
||||
<h3 class="ipb-browse-brick--no-item--text text-center">{{ 'Brick:Portal:Browse:Filter:NoData'|dict_s }}</h3>
|
||||
</div>
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
|
||||
{% block pMainContentHolder %}
|
||||
{% if aGroupingTabsValues|length > 1 %}
|
||||
<ul class="ipb-manage-brick--tabs nav nav-pills grouping_tabs">
|
||||
<ul class="ipb-manage-brick--tabs ipb-tabs nav nav-pills grouping_tabs">
|
||||
{% for aGroupingTab in aGroupingTabsValues %}
|
||||
<li{% if sGroupingTab is defined and sGroupingTab == aGroupingTab.value %} class="active"{% endif %} data-id="{{ aGroupingTab.value }}" data-label="{{ aGroupingTab.label }}" data-item-count="{{ aGroupingTab.count }}">
|
||||
<a href="{{ app.url_generator.generate('p_manage_brick_display_as', {'sBrickId': sBrickId, 'sDisplayMode': sDisplayMode, 'sGroupingTab': aGroupingTab.value}) }}"
|
||||
@@ -43,9 +43,10 @@
|
||||
{% endif %}
|
||||
|
||||
{% if iTableCount == 0 %}
|
||||
<div class="panel panel-default">
|
||||
<div class="ipb-panel panel panel-default">
|
||||
<div class="panel-body">
|
||||
<h3 class="text-center">{{ 'Brick:Portal:Manage:Table:NoData'|dict_s }}</h3>
|
||||
<div class="ipb-manage-brick--no-result--illustration ipb-svg-illustration--container">{{ source("illustrations/undraw_empty.svg") }}</div>
|
||||
<h3 class="ipb-manage-brick--no-result--text text-center">{{ 'Brick:Portal:Manage:Table:NoData'|dict_s }}</h3>
|
||||
</div>
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
@@ -10,15 +10,18 @@
|
||||
<p id="export-error" class="ipb-alert alert alert-danger" role="alert"></p>
|
||||
</div>
|
||||
|
||||
<div id="export-feedback">
|
||||
<div id="export-feedback" class="ipb-export--feedback">
|
||||
<p id="export-excel-warning" class="ipb-alert alert alert-warning" role="alert">{{ 'UI:Bulk:Export:MaliciousInjection:Alert:Message'|dict_format(sWikiUrl)|raw }}</p>
|
||||
<p class="export-message" style="text-align:center;">{{ 'ExcelExport:PreparingExport'|dict_s }}</p>
|
||||
<div class="progress">
|
||||
<div class="progress-bar" role="progressbar" style="width: 0%"
|
||||
<div class="ipb-export--illustration ipb-svg-illustration--container">
|
||||
{{ source('illustrations/undraw_export-files.svg') }}
|
||||
</div>
|
||||
<div class="ipb-progress progress">
|
||||
<div class="ipb-progress--bar progress-bar" role="progressbar" style="width: 0%"
|
||||
aria-valuenow="0" aria-valuemin="0" aria-valuemax="100">
|
||||
<span class="progress-message">0%</span>
|
||||
</div>
|
||||
</div>
|
||||
<p class="ipb-export-message export-message" style="text-align:center;">{{ 'ExcelExport:PreparingExport'|dict_s }}</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
|
||||
@@ -32,7 +32,7 @@
|
||||
{% endif %}
|
||||
</div>
|
||||
|
||||
<ul class="nav nav-pills _tabs">
|
||||
<ul class="ipb-tabs nav nav-pills _tabs">
|
||||
{% if aTabsValues is defined and aTabsValues|length > 0 %}
|
||||
<li{% if sTab == "user-info" %} class="active"{% endif %} data-id="user-info" data-label="{{ 'MyAccount:UserInfo:Tab:Title'|dict_s }}">
|
||||
<a href="{{ app.url_generator.generate('p_user_profile_brick', {'sBrickId': oBrick.GetId(), 'sDisplayMode': '_self', 'sTab': "user-info"}) }}"
|
||||
|
||||
@@ -160,6 +160,8 @@
|
||||
<script type="text/javascript" src="{{ app['combodo.absolute_url'] ~ 'node_modules/clipboard/dist/clipboard.min.js'|add_itop_version }}"></script>
|
||||
<script type="text/javascript" src="{{ app['combodo.absolute_url'] ~ 'js/clipboardwidget.js'|add_itop_version }}"></script>
|
||||
<script type="text/javascript" src="{{ app['combodo.portal.base.absolute_url'] ~ 'js/portal-clipboard.js'|add_itop_version }}"></script>
|
||||
{# User Preferences #}
|
||||
<script type="text/javascript" src="{{ app['combodo.portal.base.absolute_url'] ~ 'js/user_preferences.js'|add_itop_version }}"></script>
|
||||
{# custom elements #}
|
||||
<script type="text/javascript" src="{{ app['combodo.portal.base.absolute_url'] ~ 'js/custom_elements/base_element.js'|add_itop_version }}"></script>
|
||||
<script type="text/javascript" src="{{ app['combodo.portal.base.absolute_url'] ~ 'js/custom_elements/tile_element.js'|add_itop_version }}"></script>
|
||||
@@ -279,8 +281,8 @@
|
||||
{
|
||||
return '{{ app['url_generator'].generate('p_session_message_add')|raw }}';
|
||||
};
|
||||
// used to allow SetUserPreferences to be called from the UI
|
||||
const oUserPreferences = JSON.parse('{{ user_preferences|json_encode|e('js') }}');
|
||||
// user preferences object
|
||||
const oUserPreferences = new UserPreferences('{{ app['url_generator'].generate('p_preferences_set_preference')|raw }}');
|
||||
/**
|
||||
* @param sUrl {string} The URL to append the new param to
|
||||
* @param sParamName {string} Name of the parameter
|
||||
|
||||
@@ -25,6 +25,7 @@ return array(
|
||||
'Combodo\\iTop\\Portal\\Controller\\DefaultController' => $baseDir . '/src/Controller/DefaultController.php',
|
||||
'Combodo\\iTop\\Portal\\Controller\\ManageBrickController' => $baseDir . '/src/Controller/ManageBrickController.php',
|
||||
'Combodo\\iTop\\Portal\\Controller\\ObjectController' => $baseDir . '/src/Controller/ObjectController.php',
|
||||
'Combodo\\iTop\\Portal\\Controller\\PreferencesController' => $baseDir . '/src/Controller/PreferencesController.php',
|
||||
'Combodo\\iTop\\Portal\\Controller\\SessionMessageController' => $baseDir . '/src/Controller/SessionMessageController.php',
|
||||
'Combodo\\iTop\\Portal\\Controller\\UserProfileBrickController' => $baseDir . '/src/Controller/UserProfileBrickController.php',
|
||||
'Combodo\\iTop\\Portal\\DataCollector\\PortalCollector' => $baseDir . '/src/DataCollector/PortalCollector.php',
|
||||
|
||||
@@ -45,6 +45,7 @@ class ComposerStaticInitCombodo_ItopPortalBase_Portal
|
||||
'Combodo\\iTop\\Portal\\Controller\\DefaultController' => __DIR__ . '/../..' . '/src/Controller/DefaultController.php',
|
||||
'Combodo\\iTop\\Portal\\Controller\\ManageBrickController' => __DIR__ . '/../..' . '/src/Controller/ManageBrickController.php',
|
||||
'Combodo\\iTop\\Portal\\Controller\\ObjectController' => __DIR__ . '/../..' . '/src/Controller/ObjectController.php',
|
||||
'Combodo\\iTop\\Portal\\Controller\\PreferencesController' => __DIR__ . '/../..' . '/src/Controller/PreferencesController.php',
|
||||
'Combodo\\iTop\\Portal\\Controller\\SessionMessageController' => __DIR__ . '/../..' . '/src/Controller/SessionMessageController.php',
|
||||
'Combodo\\iTop\\Portal\\Controller\\UserProfileBrickController' => __DIR__ . '/../..' . '/src/Controller/UserProfileBrickController.php',
|
||||
'Combodo\\iTop\\Portal\\DataCollector\\PortalCollector' => __DIR__ . '/../..' . '/src/DataCollector/PortalCollector.php',
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
'name' => '__root__',
|
||||
'pretty_version' => 'dev-develop',
|
||||
'version' => 'dev-develop',
|
||||
'reference' => '6d8d747575dc9cd4b53dc9592eb646b692d3ea86',
|
||||
'reference' => 'c203329236dfb3c05aa02ac73ab12dd1fe52143e',
|
||||
'type' => 'library',
|
||||
'install_path' => __DIR__ . '/../../',
|
||||
'aliases' => array(),
|
||||
@@ -13,7 +13,7 @@
|
||||
'__root__' => array(
|
||||
'pretty_version' => 'dev-develop',
|
||||
'version' => 'dev-develop',
|
||||
'reference' => '6d8d747575dc9cd4b53dc9592eb646b692d3ea86',
|
||||
'reference' => 'c203329236dfb3c05aa02ac73ab12dd1fe52143e',
|
||||
'type' => 'library',
|
||||
'install_path' => __DIR__ . '/../../',
|
||||
'aliases' => array(),
|
||||
|
||||
1
images/illustrations/undraw_empty_alternative.svg
Normal file
1
images/illustrations/undraw_empty_alternative.svg
Normal file
File diff suppressed because one or more lines are too long
|
After Width: | Height: | Size: 21 KiB |
1
images/illustrations/undraw_export-files.svg
Normal file
1
images/illustrations/undraw_export-files.svg
Normal file
File diff suppressed because one or more lines are too long
|
After Width: | Height: | Size: 11 KiB |
@@ -14,10 +14,7 @@ if (PHP_VERSION_ID < 50600) {
|
||||
echo $err;
|
||||
}
|
||||
}
|
||||
trigger_error(
|
||||
$err,
|
||||
E_USER_ERROR
|
||||
);
|
||||
throw new RuntimeException($err);
|
||||
}
|
||||
|
||||
require_once __DIR__ . '/composer/autoload_real.php';
|
||||
|
||||
@@ -26,12 +26,23 @@ use Composer\Semver\VersionParser;
|
||||
*/
|
||||
class InstalledVersions
|
||||
{
|
||||
/**
|
||||
* @var string|null if set (by reflection by Composer), this should be set to the path where this class is being copied to
|
||||
* @internal
|
||||
*/
|
||||
private static $selfDir = null;
|
||||
|
||||
/**
|
||||
* @var mixed[]|null
|
||||
* @psalm-var array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}|array{}|null
|
||||
*/
|
||||
private static $installed;
|
||||
|
||||
/**
|
||||
* @var bool
|
||||
*/
|
||||
private static $installedIsLocalDir;
|
||||
|
||||
/**
|
||||
* @var bool|null
|
||||
*/
|
||||
@@ -309,6 +320,24 @@ class InstalledVersions
|
||||
{
|
||||
self::$installed = $data;
|
||||
self::$installedByVendor = array();
|
||||
|
||||
// when using reload, we disable the duplicate protection to ensure that self::$installed data is
|
||||
// always returned, but we cannot know whether it comes from the installed.php in __DIR__ or not,
|
||||
// so we have to assume it does not, and that may result in duplicate data being returned when listing
|
||||
// all installed packages for example
|
||||
self::$installedIsLocalDir = false;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return string
|
||||
*/
|
||||
private static function getSelfDir()
|
||||
{
|
||||
if (self::$selfDir === null) {
|
||||
self::$selfDir = strtr(__DIR__, '\\', '/');
|
||||
}
|
||||
|
||||
return self::$selfDir;
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -322,19 +351,27 @@ class InstalledVersions
|
||||
}
|
||||
|
||||
$installed = array();
|
||||
$copiedLocalDir = false;
|
||||
|
||||
if (self::$canGetVendors) {
|
||||
$selfDir = self::getSelfDir();
|
||||
foreach (ClassLoader::getRegisteredLoaders() as $vendorDir => $loader) {
|
||||
$vendorDir = strtr($vendorDir, '\\', '/');
|
||||
if (isset(self::$installedByVendor[$vendorDir])) {
|
||||
$installed[] = self::$installedByVendor[$vendorDir];
|
||||
} elseif (is_file($vendorDir.'/composer/installed.php')) {
|
||||
/** @var array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>} $required */
|
||||
$required = require $vendorDir.'/composer/installed.php';
|
||||
$installed[] = self::$installedByVendor[$vendorDir] = $required;
|
||||
if (null === self::$installed && strtr($vendorDir.'/composer', '\\', '/') === strtr(__DIR__, '\\', '/')) {
|
||||
self::$installed = $installed[count($installed) - 1];
|
||||
self::$installedByVendor[$vendorDir] = $required;
|
||||
$installed[] = $required;
|
||||
if (self::$installed === null && $vendorDir.'/composer' === $selfDir) {
|
||||
self::$installed = $required;
|
||||
self::$installedIsLocalDir = true;
|
||||
}
|
||||
}
|
||||
if (self::$installedIsLocalDir && $vendorDir.'/composer' === $selfDir) {
|
||||
$copiedLocalDir = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -350,7 +387,7 @@ class InstalledVersions
|
||||
}
|
||||
}
|
||||
|
||||
if (self::$installed !== array()) {
|
||||
if (self::$installed !== array() && !$copiedLocalDir) {
|
||||
$installed[] = self::$installed;
|
||||
}
|
||||
|
||||
|
||||
@@ -190,6 +190,7 @@ return array(
|
||||
'CharConcatWSExpression' => $baseDir . '/core/oql/expression.class.inc.php',
|
||||
'CheckStopWatchThresholds' => $baseDir . '/core/ormstopwatch.class.inc.php',
|
||||
'CheckableExpression' => $baseDir . '/core/oql/oqlquery.class.inc.php',
|
||||
'Collator' => $vendorDir . '/symfony/polyfill-intl-icu/Resources/stubs/Collator.php',
|
||||
'Combodo\\iTop\\Application\\Branding' => $baseDir . '/sources/Application/Branding.php',
|
||||
'Combodo\\iTop\\Application\\EventRegister\\ApplicationEvents' => $baseDir . '/sources/Application/EventRegister/ApplicationEvents.php',
|
||||
'Combodo\\iTop\\Application\\Helper\\CKEditorHelper' => $baseDir . '/sources/Application/Helper/CKEditorHelper.php',
|
||||
@@ -400,6 +401,31 @@ return array(
|
||||
'Combodo\\iTop\\Controller\\AjaxRenderController' => $baseDir . '/sources/Controller/AjaxRenderController.php',
|
||||
'Combodo\\iTop\\Controller\\Base\\Layout\\ActivityPanelController' => $baseDir . '/sources/Controller/Base/Layout/ActivityPanelController.php',
|
||||
'Combodo\\iTop\\Controller\\Base\\Layout\\ObjectController' => $baseDir . '/sources/Controller/Base/Layout/ObjectController.php',
|
||||
'Combodo\\iTop\\Controller\\Form\\Dependency\\AbstractMutableDependentType' => $baseDir . '/sources/Controller/Form/Dependency/AbstractMutableDependentType.php',
|
||||
'Combodo\\iTop\\Controller\\Form\\Dependency\\FormDependencyDataRegister' => $baseDir . '/sources/Controller/Form/Dependency/FormDependencyDataRegister.php',
|
||||
'Combodo\\iTop\\Controller\\Form\\Dependency\\FormDependencyManager' => $baseDir . '/sources/Controller/Form/Dependency/FormDependencyManager.php',
|
||||
'Combodo\\iTop\\Controller\\Form\\Dependency\\FormDependencyRegister' => $baseDir . '/sources/Controller/Form/Dependency/FormDependencyRegister.php',
|
||||
'Combodo\\iTop\\Controller\\Form\\Dependency\\FormTypeExtension' => $baseDir . '/sources/Controller/Form/Dependency/FormTypeExtension.php',
|
||||
'Combodo\\iTop\\Controller\\Form\\Dependency\\IncompleteDependenciesException' => $baseDir . '/sources/Controller/Form/Dependency/IncompleteDependenciesException.php',
|
||||
'Combodo\\iTop\\Controller\\Form\\Dependency\\MissingDataException' => $baseDir . '/sources/Controller/Form/Dependency/MissingDataException.php',
|
||||
'Combodo\\iTop\\Controller\\Form\\Dependency\\MissingFormException' => $baseDir . '/sources/Controller/Form/Dependency/MissingFormException.php',
|
||||
'Combodo\\iTop\\Controller\\Form\\Dependency\\MutableStatusEnumeration' => $baseDir . '/sources/Controller/Form/Dependency/MutableStatusEnumeration.php',
|
||||
'Combodo\\iTop\\Controller\\Form\\FakeDataProvider' => $baseDir . '/sources/Controller/Form/FakeDataProvider.php',
|
||||
'Combodo\\iTop\\Controller\\Form\\FormController' => $baseDir . '/sources/Controller/Form/FormController.php',
|
||||
'Combodo\\iTop\\Controller\\Form\\Type\\Dependency\\AttributeChoiceType' => $baseDir . '/sources/Controller/Form/Type/Dependency/AttributeChoiceType.php',
|
||||
'Combodo\\iTop\\Controller\\Form\\Type\\Dependency\\AttributeChoiceTypeData' => $baseDir . '/sources/Controller/Form/Type/Dependency/AttributeChoiceTypeData.php',
|
||||
'Combodo\\iTop\\Controller\\Form\\Type\\Dependency\\ClassProviderInterface' => $baseDir . '/sources/Controller/Form/Type/Dependency/ClassProviderInterface.php',
|
||||
'Combodo\\iTop\\Controller\\Form\\Type\\Dependency\\ContactType' => $baseDir . '/sources/Controller/Form/Type/Dependency/ContactType.php',
|
||||
'Combodo\\iTop\\Controller\\Form\\Type\\Dependency\\ContactTypeData' => $baseDir . '/sources/Controller/Form/Type/Dependency/ContactTypeData.php',
|
||||
'Combodo\\iTop\\Controller\\Form\\Type\\Dependency\\FakeChoiceType' => $baseDir . '/sources/Controller/Form/Type/Dependency/FakeChoiceType.php',
|
||||
'Combodo\\iTop\\Controller\\Form\\Type\\Dependency\\FakeChoiceTypeData' => $baseDir . '/sources/Controller/Form/Type/Dependency/FakeChoiceTypeData.php',
|
||||
'Combodo\\iTop\\Controller\\Form\\Type\\Dependency\\OQLData' => $baseDir . '/sources/Controller/Form/Type/Dependency/OQLData.php',
|
||||
'Combodo\\iTop\\Controller\\Form\\Type\\Dependency\\OQLDataTransformer' => $baseDir . '/sources/Controller/Form/Type/Dependency/OQLDataTransformer.php',
|
||||
'Combodo\\iTop\\Controller\\Form\\Type\\Dependency\\OQLType' => $baseDir . '/sources/Controller/Form/Type/Dependency/OQLType.php',
|
||||
'Combodo\\iTop\\Controller\\Form\\Type\\Dependency\\OfficeType' => $baseDir . '/sources/Controller/Form/Type/Dependency/OfficeType.php',
|
||||
'Combodo\\iTop\\Controller\\Form\\Type\\Dependency\\OfficeTypeData' => $baseDir . '/sources/Controller/Form/Type/Dependency/OfficeTypeData.php',
|
||||
'Combodo\\iTop\\Controller\\Form\\Type\\Form\\MailType' => $baseDir . '/sources/Controller/Form/Type/Form/MailType.php',
|
||||
'Combodo\\iTop\\Controller\\Form\\Type\\Form\\PhoneType' => $baseDir . '/sources/Controller/Form/Type/Form/PhoneType.php',
|
||||
'Combodo\\iTop\\Controller\\Links\\LinkSetController' => $baseDir . '/sources/Controller/Links/LinkSetController.php',
|
||||
'Combodo\\iTop\\Controller\\Newsroom\\iTopNewsroomController' => $baseDir . '/sources/Controller/Newsroom/iTopNewsroomController.php',
|
||||
'Combodo\\iTop\\Controller\\Notifications\\ActionController' => $baseDir . '/sources/Controller/Notifications/ActionController.php',
|
||||
@@ -755,6 +781,7 @@ return array(
|
||||
'InputOutputTask' => $baseDir . '/application/iotask.class.inc.php',
|
||||
'IntervalExpression' => $baseDir . '/core/oql/expression.class.inc.php',
|
||||
'IntervalOqlExpression' => $baseDir . '/core/oql/oqlquery.class.inc.php',
|
||||
'IntlDateFormatter' => $vendorDir . '/symfony/polyfill-intl-icu/Resources/stubs/IntlDateFormatter.php',
|
||||
'Introspection' => $baseDir . '/core/introspection.class.inc.php',
|
||||
'InvalidConfigParamException' => $baseDir . '/application/exceptions/InvalidConfigParamException.php',
|
||||
'InvalidExternalKeyValueException' => $baseDir . '/application/exceptions/InvalidExternalKeyValueException.php',
|
||||
@@ -1110,6 +1137,7 @@ return array(
|
||||
'League\\OAuth2\\Client\\Tool\\RequiredParameterTrait' => $vendorDir . '/league/oauth2-client/src/Tool/RequiredParameterTrait.php',
|
||||
'ListExpression' => $baseDir . '/core/oql/expression.class.inc.php',
|
||||
'ListOqlExpression' => $baseDir . '/core/oql/oqlquery.class.inc.php',
|
||||
'Locale' => $vendorDir . '/symfony/polyfill-intl-icu/Resources/stubs/Locale.php',
|
||||
'LogAPI' => $baseDir . '/core/log.class.inc.php',
|
||||
'LogChannels' => $baseDir . '/core/log.class.inc.php',
|
||||
'LogFileNameBuilderFactory' => $baseDir . '/core/log.class.inc.php',
|
||||
@@ -1144,6 +1172,7 @@ return array(
|
||||
'NewsroomProviderBase' => $baseDir . '/application/newsroomprovider.class.inc.php',
|
||||
'Normalizer' => $vendorDir . '/symfony/polyfill-intl-normalizer/Resources/stubs/Normalizer.php',
|
||||
'NotYetEvaluatedExpression' => $baseDir . '/core/oql/expression.class.inc.php',
|
||||
'NumberFormatter' => $vendorDir . '/symfony/polyfill-intl-icu/Resources/stubs/NumberFormatter.php',
|
||||
'OQLActualClassTreeResolver' => $baseDir . '/core/oqlactualclasstreeresolver.class.inc.php',
|
||||
'OQLClassNode' => $baseDir . '/core/oqlclassnode.class.inc.php',
|
||||
'OQLClassTreeBuilder' => $baseDir . '/core/oqlclasstreebuilder.class.inc.php',
|
||||
@@ -2383,6 +2412,241 @@ return array(
|
||||
'Symfony\\Component\\Finder\\Iterator\\SortableIterator' => $vendorDir . '/symfony/finder/Iterator/SortableIterator.php',
|
||||
'Symfony\\Component\\Finder\\Iterator\\VcsIgnoredFilterIterator' => $vendorDir . '/symfony/finder/Iterator/VcsIgnoredFilterIterator.php',
|
||||
'Symfony\\Component\\Finder\\SplFileInfo' => $vendorDir . '/symfony/finder/SplFileInfo.php',
|
||||
'Symfony\\Component\\Form\\AbstractExtension' => $vendorDir . '/symfony/form/AbstractExtension.php',
|
||||
'Symfony\\Component\\Form\\AbstractRendererEngine' => $vendorDir . '/symfony/form/AbstractRendererEngine.php',
|
||||
'Symfony\\Component\\Form\\AbstractType' => $vendorDir . '/symfony/form/AbstractType.php',
|
||||
'Symfony\\Component\\Form\\AbstractTypeExtension' => $vendorDir . '/symfony/form/AbstractTypeExtension.php',
|
||||
'Symfony\\Component\\Form\\Button' => $vendorDir . '/symfony/form/Button.php',
|
||||
'Symfony\\Component\\Form\\ButtonBuilder' => $vendorDir . '/symfony/form/ButtonBuilder.php',
|
||||
'Symfony\\Component\\Form\\ButtonTypeInterface' => $vendorDir . '/symfony/form/ButtonTypeInterface.php',
|
||||
'Symfony\\Component\\Form\\CallbackTransformer' => $vendorDir . '/symfony/form/CallbackTransformer.php',
|
||||
'Symfony\\Component\\Form\\ChoiceList\\ArrayChoiceList' => $vendorDir . '/symfony/form/ChoiceList/ArrayChoiceList.php',
|
||||
'Symfony\\Component\\Form\\ChoiceList\\ChoiceList' => $vendorDir . '/symfony/form/ChoiceList/ChoiceList.php',
|
||||
'Symfony\\Component\\Form\\ChoiceList\\ChoiceListInterface' => $vendorDir . '/symfony/form/ChoiceList/ChoiceListInterface.php',
|
||||
'Symfony\\Component\\Form\\ChoiceList\\Factory\\Cache\\AbstractStaticOption' => $vendorDir . '/symfony/form/ChoiceList/Factory/Cache/AbstractStaticOption.php',
|
||||
'Symfony\\Component\\Form\\ChoiceList\\Factory\\Cache\\ChoiceAttr' => $vendorDir . '/symfony/form/ChoiceList/Factory/Cache/ChoiceAttr.php',
|
||||
'Symfony\\Component\\Form\\ChoiceList\\Factory\\Cache\\ChoiceFieldName' => $vendorDir . '/symfony/form/ChoiceList/Factory/Cache/ChoiceFieldName.php',
|
||||
'Symfony\\Component\\Form\\ChoiceList\\Factory\\Cache\\ChoiceFilter' => $vendorDir . '/symfony/form/ChoiceList/Factory/Cache/ChoiceFilter.php',
|
||||
'Symfony\\Component\\Form\\ChoiceList\\Factory\\Cache\\ChoiceLabel' => $vendorDir . '/symfony/form/ChoiceList/Factory/Cache/ChoiceLabel.php',
|
||||
'Symfony\\Component\\Form\\ChoiceList\\Factory\\Cache\\ChoiceLoader' => $vendorDir . '/symfony/form/ChoiceList/Factory/Cache/ChoiceLoader.php',
|
||||
'Symfony\\Component\\Form\\ChoiceList\\Factory\\Cache\\ChoiceTranslationParameters' => $vendorDir . '/symfony/form/ChoiceList/Factory/Cache/ChoiceTranslationParameters.php',
|
||||
'Symfony\\Component\\Form\\ChoiceList\\Factory\\Cache\\ChoiceValue' => $vendorDir . '/symfony/form/ChoiceList/Factory/Cache/ChoiceValue.php',
|
||||
'Symfony\\Component\\Form\\ChoiceList\\Factory\\Cache\\GroupBy' => $vendorDir . '/symfony/form/ChoiceList/Factory/Cache/GroupBy.php',
|
||||
'Symfony\\Component\\Form\\ChoiceList\\Factory\\Cache\\PreferredChoice' => $vendorDir . '/symfony/form/ChoiceList/Factory/Cache/PreferredChoice.php',
|
||||
'Symfony\\Component\\Form\\ChoiceList\\Factory\\CachingFactoryDecorator' => $vendorDir . '/symfony/form/ChoiceList/Factory/CachingFactoryDecorator.php',
|
||||
'Symfony\\Component\\Form\\ChoiceList\\Factory\\ChoiceListFactoryInterface' => $vendorDir . '/symfony/form/ChoiceList/Factory/ChoiceListFactoryInterface.php',
|
||||
'Symfony\\Component\\Form\\ChoiceList\\Factory\\DefaultChoiceListFactory' => $vendorDir . '/symfony/form/ChoiceList/Factory/DefaultChoiceListFactory.php',
|
||||
'Symfony\\Component\\Form\\ChoiceList\\Factory\\PropertyAccessDecorator' => $vendorDir . '/symfony/form/ChoiceList/Factory/PropertyAccessDecorator.php',
|
||||
'Symfony\\Component\\Form\\ChoiceList\\LazyChoiceList' => $vendorDir . '/symfony/form/ChoiceList/LazyChoiceList.php',
|
||||
'Symfony\\Component\\Form\\ChoiceList\\Loader\\AbstractChoiceLoader' => $vendorDir . '/symfony/form/ChoiceList/Loader/AbstractChoiceLoader.php',
|
||||
'Symfony\\Component\\Form\\ChoiceList\\Loader\\CallbackChoiceLoader' => $vendorDir . '/symfony/form/ChoiceList/Loader/CallbackChoiceLoader.php',
|
||||
'Symfony\\Component\\Form\\ChoiceList\\Loader\\ChoiceLoaderInterface' => $vendorDir . '/symfony/form/ChoiceList/Loader/ChoiceLoaderInterface.php',
|
||||
'Symfony\\Component\\Form\\ChoiceList\\Loader\\FilterChoiceLoaderDecorator' => $vendorDir . '/symfony/form/ChoiceList/Loader/FilterChoiceLoaderDecorator.php',
|
||||
'Symfony\\Component\\Form\\ChoiceList\\Loader\\IntlCallbackChoiceLoader' => $vendorDir . '/symfony/form/ChoiceList/Loader/IntlCallbackChoiceLoader.php',
|
||||
'Symfony\\Component\\Form\\ChoiceList\\View\\ChoiceGroupView' => $vendorDir . '/symfony/form/ChoiceList/View/ChoiceGroupView.php',
|
||||
'Symfony\\Component\\Form\\ChoiceList\\View\\ChoiceListView' => $vendorDir . '/symfony/form/ChoiceList/View/ChoiceListView.php',
|
||||
'Symfony\\Component\\Form\\ChoiceList\\View\\ChoiceView' => $vendorDir . '/symfony/form/ChoiceList/View/ChoiceView.php',
|
||||
'Symfony\\Component\\Form\\ClearableErrorsInterface' => $vendorDir . '/symfony/form/ClearableErrorsInterface.php',
|
||||
'Symfony\\Component\\Form\\ClickableInterface' => $vendorDir . '/symfony/form/ClickableInterface.php',
|
||||
'Symfony\\Component\\Form\\Command\\DebugCommand' => $vendorDir . '/symfony/form/Command/DebugCommand.php',
|
||||
'Symfony\\Component\\Form\\Console\\Descriptor\\Descriptor' => $vendorDir . '/symfony/form/Console/Descriptor/Descriptor.php',
|
||||
'Symfony\\Component\\Form\\Console\\Descriptor\\JsonDescriptor' => $vendorDir . '/symfony/form/Console/Descriptor/JsonDescriptor.php',
|
||||
'Symfony\\Component\\Form\\Console\\Descriptor\\TextDescriptor' => $vendorDir . '/symfony/form/Console/Descriptor/TextDescriptor.php',
|
||||
'Symfony\\Component\\Form\\Console\\Helper\\DescriptorHelper' => $vendorDir . '/symfony/form/Console/Helper/DescriptorHelper.php',
|
||||
'Symfony\\Component\\Form\\DataAccessorInterface' => $vendorDir . '/symfony/form/DataAccessorInterface.php',
|
||||
'Symfony\\Component\\Form\\DataMapperInterface' => $vendorDir . '/symfony/form/DataMapperInterface.php',
|
||||
'Symfony\\Component\\Form\\DataTransformerInterface' => $vendorDir . '/symfony/form/DataTransformerInterface.php',
|
||||
'Symfony\\Component\\Form\\DependencyInjection\\FormPass' => $vendorDir . '/symfony/form/DependencyInjection/FormPass.php',
|
||||
'Symfony\\Component\\Form\\Event\\PostSetDataEvent' => $vendorDir . '/symfony/form/Event/PostSetDataEvent.php',
|
||||
'Symfony\\Component\\Form\\Event\\PostSubmitEvent' => $vendorDir . '/symfony/form/Event/PostSubmitEvent.php',
|
||||
'Symfony\\Component\\Form\\Event\\PreSetDataEvent' => $vendorDir . '/symfony/form/Event/PreSetDataEvent.php',
|
||||
'Symfony\\Component\\Form\\Event\\PreSubmitEvent' => $vendorDir . '/symfony/form/Event/PreSubmitEvent.php',
|
||||
'Symfony\\Component\\Form\\Event\\SubmitEvent' => $vendorDir . '/symfony/form/Event/SubmitEvent.php',
|
||||
'Symfony\\Component\\Form\\Exception\\AccessException' => $vendorDir . '/symfony/form/Exception/AccessException.php',
|
||||
'Symfony\\Component\\Form\\Exception\\AlreadySubmittedException' => $vendorDir . '/symfony/form/Exception/AlreadySubmittedException.php',
|
||||
'Symfony\\Component\\Form\\Exception\\BadMethodCallException' => $vendorDir . '/symfony/form/Exception/BadMethodCallException.php',
|
||||
'Symfony\\Component\\Form\\Exception\\ErrorMappingException' => $vendorDir . '/symfony/form/Exception/ErrorMappingException.php',
|
||||
'Symfony\\Component\\Form\\Exception\\ExceptionInterface' => $vendorDir . '/symfony/form/Exception/ExceptionInterface.php',
|
||||
'Symfony\\Component\\Form\\Exception\\InvalidArgumentException' => $vendorDir . '/symfony/form/Exception/InvalidArgumentException.php',
|
||||
'Symfony\\Component\\Form\\Exception\\InvalidConfigurationException' => $vendorDir . '/symfony/form/Exception/InvalidConfigurationException.php',
|
||||
'Symfony\\Component\\Form\\Exception\\LogicException' => $vendorDir . '/symfony/form/Exception/LogicException.php',
|
||||
'Symfony\\Component\\Form\\Exception\\OutOfBoundsException' => $vendorDir . '/symfony/form/Exception/OutOfBoundsException.php',
|
||||
'Symfony\\Component\\Form\\Exception\\RuntimeException' => $vendorDir . '/symfony/form/Exception/RuntimeException.php',
|
||||
'Symfony\\Component\\Form\\Exception\\StringCastException' => $vendorDir . '/symfony/form/Exception/StringCastException.php',
|
||||
'Symfony\\Component\\Form\\Exception\\TransformationFailedException' => $vendorDir . '/symfony/form/Exception/TransformationFailedException.php',
|
||||
'Symfony\\Component\\Form\\Exception\\UnexpectedTypeException' => $vendorDir . '/symfony/form/Exception/UnexpectedTypeException.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\CoreExtension' => $vendorDir . '/symfony/form/Extension/Core/CoreExtension.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\DataAccessor\\CallbackAccessor' => $vendorDir . '/symfony/form/Extension/Core/DataAccessor/CallbackAccessor.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\DataAccessor\\ChainAccessor' => $vendorDir . '/symfony/form/Extension/Core/DataAccessor/ChainAccessor.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\DataAccessor\\PropertyPathAccessor' => $vendorDir . '/symfony/form/Extension/Core/DataAccessor/PropertyPathAccessor.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\DataMapper\\CheckboxListMapper' => $vendorDir . '/symfony/form/Extension/Core/DataMapper/CheckboxListMapper.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\DataMapper\\DataMapper' => $vendorDir . '/symfony/form/Extension/Core/DataMapper/DataMapper.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\DataMapper\\RadioListMapper' => $vendorDir . '/symfony/form/Extension/Core/DataMapper/RadioListMapper.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\DataTransformer\\ArrayToPartsTransformer' => $vendorDir . '/symfony/form/Extension/Core/DataTransformer/ArrayToPartsTransformer.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\DataTransformer\\BaseDateTimeTransformer' => $vendorDir . '/symfony/form/Extension/Core/DataTransformer/BaseDateTimeTransformer.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\DataTransformer\\BooleanToStringTransformer' => $vendorDir . '/symfony/form/Extension/Core/DataTransformer/BooleanToStringTransformer.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\DataTransformer\\ChoiceToValueTransformer' => $vendorDir . '/symfony/form/Extension/Core/DataTransformer/ChoiceToValueTransformer.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\DataTransformer\\ChoicesToValuesTransformer' => $vendorDir . '/symfony/form/Extension/Core/DataTransformer/ChoicesToValuesTransformer.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\DataTransformer\\DataTransformerChain' => $vendorDir . '/symfony/form/Extension/Core/DataTransformer/DataTransformerChain.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\DataTransformer\\DateIntervalToArrayTransformer' => $vendorDir . '/symfony/form/Extension/Core/DataTransformer/DateIntervalToArrayTransformer.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\DataTransformer\\DateIntervalToStringTransformer' => $vendorDir . '/symfony/form/Extension/Core/DataTransformer/DateIntervalToStringTransformer.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\DataTransformer\\DateTimeImmutableToDateTimeTransformer' => $vendorDir . '/symfony/form/Extension/Core/DataTransformer/DateTimeImmutableToDateTimeTransformer.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\DataTransformer\\DateTimeToArrayTransformer' => $vendorDir . '/symfony/form/Extension/Core/DataTransformer/DateTimeToArrayTransformer.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\DataTransformer\\DateTimeToHtml5LocalDateTimeTransformer' => $vendorDir . '/symfony/form/Extension/Core/DataTransformer/DateTimeToHtml5LocalDateTimeTransformer.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\DataTransformer\\DateTimeToLocalizedStringTransformer' => $vendorDir . '/symfony/form/Extension/Core/DataTransformer/DateTimeToLocalizedStringTransformer.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\DataTransformer\\DateTimeToRfc3339Transformer' => $vendorDir . '/symfony/form/Extension/Core/DataTransformer/DateTimeToRfc3339Transformer.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\DataTransformer\\DateTimeToStringTransformer' => $vendorDir . '/symfony/form/Extension/Core/DataTransformer/DateTimeToStringTransformer.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\DataTransformer\\DateTimeToTimestampTransformer' => $vendorDir . '/symfony/form/Extension/Core/DataTransformer/DateTimeToTimestampTransformer.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\DataTransformer\\DateTimeZoneToStringTransformer' => $vendorDir . '/symfony/form/Extension/Core/DataTransformer/DateTimeZoneToStringTransformer.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\DataTransformer\\IntegerToLocalizedStringTransformer' => $vendorDir . '/symfony/form/Extension/Core/DataTransformer/IntegerToLocalizedStringTransformer.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\DataTransformer\\IntlTimeZoneToStringTransformer' => $vendorDir . '/symfony/form/Extension/Core/DataTransformer/IntlTimeZoneToStringTransformer.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\DataTransformer\\MoneyToLocalizedStringTransformer' => $vendorDir . '/symfony/form/Extension/Core/DataTransformer/MoneyToLocalizedStringTransformer.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\DataTransformer\\NumberToLocalizedStringTransformer' => $vendorDir . '/symfony/form/Extension/Core/DataTransformer/NumberToLocalizedStringTransformer.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\DataTransformer\\PercentToLocalizedStringTransformer' => $vendorDir . '/symfony/form/Extension/Core/DataTransformer/PercentToLocalizedStringTransformer.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\DataTransformer\\StringToFloatTransformer' => $vendorDir . '/symfony/form/Extension/Core/DataTransformer/StringToFloatTransformer.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\DataTransformer\\UlidToStringTransformer' => $vendorDir . '/symfony/form/Extension/Core/DataTransformer/UlidToStringTransformer.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\DataTransformer\\UuidToStringTransformer' => $vendorDir . '/symfony/form/Extension/Core/DataTransformer/UuidToStringTransformer.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\DataTransformer\\ValueToDuplicatesTransformer' => $vendorDir . '/symfony/form/Extension/Core/DataTransformer/ValueToDuplicatesTransformer.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\DataTransformer\\WeekToArrayTransformer' => $vendorDir . '/symfony/form/Extension/Core/DataTransformer/WeekToArrayTransformer.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\EventListener\\FixUrlProtocolListener' => $vendorDir . '/symfony/form/Extension/Core/EventListener/FixUrlProtocolListener.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\EventListener\\MergeCollectionListener' => $vendorDir . '/symfony/form/Extension/Core/EventListener/MergeCollectionListener.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\EventListener\\ResizeFormListener' => $vendorDir . '/symfony/form/Extension/Core/EventListener/ResizeFormListener.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\EventListener\\TransformationFailureListener' => $vendorDir . '/symfony/form/Extension/Core/EventListener/TransformationFailureListener.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\EventListener\\TrimListener' => $vendorDir . '/symfony/form/Extension/Core/EventListener/TrimListener.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\Type\\BaseType' => $vendorDir . '/symfony/form/Extension/Core/Type/BaseType.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\Type\\BirthdayType' => $vendorDir . '/symfony/form/Extension/Core/Type/BirthdayType.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\Type\\ButtonType' => $vendorDir . '/symfony/form/Extension/Core/Type/ButtonType.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\Type\\CheckboxType' => $vendorDir . '/symfony/form/Extension/Core/Type/CheckboxType.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\Type\\ChoiceType' => $vendorDir . '/symfony/form/Extension/Core/Type/ChoiceType.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\Type\\CollectionType' => $vendorDir . '/symfony/form/Extension/Core/Type/CollectionType.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\Type\\ColorType' => $vendorDir . '/symfony/form/Extension/Core/Type/ColorType.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\Type\\CountryType' => $vendorDir . '/symfony/form/Extension/Core/Type/CountryType.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\Type\\CurrencyType' => $vendorDir . '/symfony/form/Extension/Core/Type/CurrencyType.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\Type\\DateIntervalType' => $vendorDir . '/symfony/form/Extension/Core/Type/DateIntervalType.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\Type\\DateTimeType' => $vendorDir . '/symfony/form/Extension/Core/Type/DateTimeType.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\Type\\DateType' => $vendorDir . '/symfony/form/Extension/Core/Type/DateType.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\Type\\EmailType' => $vendorDir . '/symfony/form/Extension/Core/Type/EmailType.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\Type\\EnumType' => $vendorDir . '/symfony/form/Extension/Core/Type/EnumType.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\Type\\FileType' => $vendorDir . '/symfony/form/Extension/Core/Type/FileType.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\Type\\FormType' => $vendorDir . '/symfony/form/Extension/Core/Type/FormType.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\Type\\HiddenType' => $vendorDir . '/symfony/form/Extension/Core/Type/HiddenType.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\Type\\IntegerType' => $vendorDir . '/symfony/form/Extension/Core/Type/IntegerType.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\Type\\LanguageType' => $vendorDir . '/symfony/form/Extension/Core/Type/LanguageType.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\Type\\LocaleType' => $vendorDir . '/symfony/form/Extension/Core/Type/LocaleType.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\Type\\MoneyType' => $vendorDir . '/symfony/form/Extension/Core/Type/MoneyType.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\Type\\NumberType' => $vendorDir . '/symfony/form/Extension/Core/Type/NumberType.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\Type\\PasswordType' => $vendorDir . '/symfony/form/Extension/Core/Type/PasswordType.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\Type\\PercentType' => $vendorDir . '/symfony/form/Extension/Core/Type/PercentType.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\Type\\RadioType' => $vendorDir . '/symfony/form/Extension/Core/Type/RadioType.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\Type\\RangeType' => $vendorDir . '/symfony/form/Extension/Core/Type/RangeType.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\Type\\RepeatedType' => $vendorDir . '/symfony/form/Extension/Core/Type/RepeatedType.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\Type\\ResetType' => $vendorDir . '/symfony/form/Extension/Core/Type/ResetType.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\Type\\SearchType' => $vendorDir . '/symfony/form/Extension/Core/Type/SearchType.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\Type\\SubmitType' => $vendorDir . '/symfony/form/Extension/Core/Type/SubmitType.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\Type\\TelType' => $vendorDir . '/symfony/form/Extension/Core/Type/TelType.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\Type\\TextType' => $vendorDir . '/symfony/form/Extension/Core/Type/TextType.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\Type\\TextareaType' => $vendorDir . '/symfony/form/Extension/Core/Type/TextareaType.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\Type\\TimeType' => $vendorDir . '/symfony/form/Extension/Core/Type/TimeType.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\Type\\TimezoneType' => $vendorDir . '/symfony/form/Extension/Core/Type/TimezoneType.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\Type\\TransformationFailureExtension' => $vendorDir . '/symfony/form/Extension/Core/Type/TransformationFailureExtension.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\Type\\UlidType' => $vendorDir . '/symfony/form/Extension/Core/Type/UlidType.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\Type\\UrlType' => $vendorDir . '/symfony/form/Extension/Core/Type/UrlType.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\Type\\UuidType' => $vendorDir . '/symfony/form/Extension/Core/Type/UuidType.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\Type\\WeekType' => $vendorDir . '/symfony/form/Extension/Core/Type/WeekType.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Csrf\\CsrfExtension' => $vendorDir . '/symfony/form/Extension/Csrf/CsrfExtension.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Csrf\\EventListener\\CsrfValidationListener' => $vendorDir . '/symfony/form/Extension/Csrf/EventListener/CsrfValidationListener.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Csrf\\Type\\FormTypeCsrfExtension' => $vendorDir . '/symfony/form/Extension/Csrf/Type/FormTypeCsrfExtension.php',
|
||||
'Symfony\\Component\\Form\\Extension\\DataCollector\\DataCollectorExtension' => $vendorDir . '/symfony/form/Extension/DataCollector/DataCollectorExtension.php',
|
||||
'Symfony\\Component\\Form\\Extension\\DataCollector\\EventListener\\DataCollectorListener' => $vendorDir . '/symfony/form/Extension/DataCollector/EventListener/DataCollectorListener.php',
|
||||
'Symfony\\Component\\Form\\Extension\\DataCollector\\FormDataCollector' => $vendorDir . '/symfony/form/Extension/DataCollector/FormDataCollector.php',
|
||||
'Symfony\\Component\\Form\\Extension\\DataCollector\\FormDataCollectorInterface' => $vendorDir . '/symfony/form/Extension/DataCollector/FormDataCollectorInterface.php',
|
||||
'Symfony\\Component\\Form\\Extension\\DataCollector\\FormDataExtractor' => $vendorDir . '/symfony/form/Extension/DataCollector/FormDataExtractor.php',
|
||||
'Symfony\\Component\\Form\\Extension\\DataCollector\\FormDataExtractorInterface' => $vendorDir . '/symfony/form/Extension/DataCollector/FormDataExtractorInterface.php',
|
||||
'Symfony\\Component\\Form\\Extension\\DataCollector\\Proxy\\ResolvedTypeDataCollectorProxy' => $vendorDir . '/symfony/form/Extension/DataCollector/Proxy/ResolvedTypeDataCollectorProxy.php',
|
||||
'Symfony\\Component\\Form\\Extension\\DataCollector\\Proxy\\ResolvedTypeFactoryDataCollectorProxy' => $vendorDir . '/symfony/form/Extension/DataCollector/Proxy/ResolvedTypeFactoryDataCollectorProxy.php',
|
||||
'Symfony\\Component\\Form\\Extension\\DataCollector\\Type\\DataCollectorTypeExtension' => $vendorDir . '/symfony/form/Extension/DataCollector/Type/DataCollectorTypeExtension.php',
|
||||
'Symfony\\Component\\Form\\Extension\\DependencyInjection\\DependencyInjectionExtension' => $vendorDir . '/symfony/form/Extension/DependencyInjection/DependencyInjectionExtension.php',
|
||||
'Symfony\\Component\\Form\\Extension\\HtmlSanitizer\\HtmlSanitizerExtension' => $vendorDir . '/symfony/form/Extension/HtmlSanitizer/HtmlSanitizerExtension.php',
|
||||
'Symfony\\Component\\Form\\Extension\\HtmlSanitizer\\Type\\TextTypeHtmlSanitizerExtension' => $vendorDir . '/symfony/form/Extension/HtmlSanitizer/Type/TextTypeHtmlSanitizerExtension.php',
|
||||
'Symfony\\Component\\Form\\Extension\\HttpFoundation\\HttpFoundationExtension' => $vendorDir . '/symfony/form/Extension/HttpFoundation/HttpFoundationExtension.php',
|
||||
'Symfony\\Component\\Form\\Extension\\HttpFoundation\\HttpFoundationRequestHandler' => $vendorDir . '/symfony/form/Extension/HttpFoundation/HttpFoundationRequestHandler.php',
|
||||
'Symfony\\Component\\Form\\Extension\\HttpFoundation\\Type\\FormTypeHttpFoundationExtension' => $vendorDir . '/symfony/form/Extension/HttpFoundation/Type/FormTypeHttpFoundationExtension.php',
|
||||
'Symfony\\Component\\Form\\Extension\\PasswordHasher\\EventListener\\PasswordHasherListener' => $vendorDir . '/symfony/form/Extension/PasswordHasher/EventListener/PasswordHasherListener.php',
|
||||
'Symfony\\Component\\Form\\Extension\\PasswordHasher\\PasswordHasherExtension' => $vendorDir . '/symfony/form/Extension/PasswordHasher/PasswordHasherExtension.php',
|
||||
'Symfony\\Component\\Form\\Extension\\PasswordHasher\\Type\\FormTypePasswordHasherExtension' => $vendorDir . '/symfony/form/Extension/PasswordHasher/Type/FormTypePasswordHasherExtension.php',
|
||||
'Symfony\\Component\\Form\\Extension\\PasswordHasher\\Type\\PasswordTypePasswordHasherExtension' => $vendorDir . '/symfony/form/Extension/PasswordHasher/Type/PasswordTypePasswordHasherExtension.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Validator\\Constraints\\Form' => $vendorDir . '/symfony/form/Extension/Validator/Constraints/Form.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Validator\\Constraints\\FormValidator' => $vendorDir . '/symfony/form/Extension/Validator/Constraints/FormValidator.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Validator\\EventListener\\ValidationListener' => $vendorDir . '/symfony/form/Extension/Validator/EventListener/ValidationListener.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Validator\\Type\\BaseValidatorExtension' => $vendorDir . '/symfony/form/Extension/Validator/Type/BaseValidatorExtension.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Validator\\Type\\FormTypeValidatorExtension' => $vendorDir . '/symfony/form/Extension/Validator/Type/FormTypeValidatorExtension.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Validator\\Type\\RepeatedTypeValidatorExtension' => $vendorDir . '/symfony/form/Extension/Validator/Type/RepeatedTypeValidatorExtension.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Validator\\Type\\SubmitTypeValidatorExtension' => $vendorDir . '/symfony/form/Extension/Validator/Type/SubmitTypeValidatorExtension.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Validator\\Type\\UploadValidatorExtension' => $vendorDir . '/symfony/form/Extension/Validator/Type/UploadValidatorExtension.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Validator\\ValidatorExtension' => $vendorDir . '/symfony/form/Extension/Validator/ValidatorExtension.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Validator\\ValidatorTypeGuesser' => $vendorDir . '/symfony/form/Extension/Validator/ValidatorTypeGuesser.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Validator\\ViolationMapper\\MappingRule' => $vendorDir . '/symfony/form/Extension/Validator/ViolationMapper/MappingRule.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Validator\\ViolationMapper\\RelativePath' => $vendorDir . '/symfony/form/Extension/Validator/ViolationMapper/RelativePath.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Validator\\ViolationMapper\\ViolationMapper' => $vendorDir . '/symfony/form/Extension/Validator/ViolationMapper/ViolationMapper.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Validator\\ViolationMapper\\ViolationMapperInterface' => $vendorDir . '/symfony/form/Extension/Validator/ViolationMapper/ViolationMapperInterface.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Validator\\ViolationMapper\\ViolationPath' => $vendorDir . '/symfony/form/Extension/Validator/ViolationMapper/ViolationPath.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Validator\\ViolationMapper\\ViolationPathIterator' => $vendorDir . '/symfony/form/Extension/Validator/ViolationMapper/ViolationPathIterator.php',
|
||||
'Symfony\\Component\\Form\\FileUploadError' => $vendorDir . '/symfony/form/FileUploadError.php',
|
||||
'Symfony\\Component\\Form\\Form' => $vendorDir . '/symfony/form/Form.php',
|
||||
'Symfony\\Component\\Form\\FormBuilder' => $vendorDir . '/symfony/form/FormBuilder.php',
|
||||
'Symfony\\Component\\Form\\FormBuilderInterface' => $vendorDir . '/symfony/form/FormBuilderInterface.php',
|
||||
'Symfony\\Component\\Form\\FormConfigBuilder' => $vendorDir . '/symfony/form/FormConfigBuilder.php',
|
||||
'Symfony\\Component\\Form\\FormConfigBuilderInterface' => $vendorDir . '/symfony/form/FormConfigBuilderInterface.php',
|
||||
'Symfony\\Component\\Form\\FormConfigInterface' => $vendorDir . '/symfony/form/FormConfigInterface.php',
|
||||
'Symfony\\Component\\Form\\FormError' => $vendorDir . '/symfony/form/FormError.php',
|
||||
'Symfony\\Component\\Form\\FormErrorIterator' => $vendorDir . '/symfony/form/FormErrorIterator.php',
|
||||
'Symfony\\Component\\Form\\FormEvent' => $vendorDir . '/symfony/form/FormEvent.php',
|
||||
'Symfony\\Component\\Form\\FormEvents' => $vendorDir . '/symfony/form/FormEvents.php',
|
||||
'Symfony\\Component\\Form\\FormExtensionInterface' => $vendorDir . '/symfony/form/FormExtensionInterface.php',
|
||||
'Symfony\\Component\\Form\\FormFactory' => $vendorDir . '/symfony/form/FormFactory.php',
|
||||
'Symfony\\Component\\Form\\FormFactoryBuilder' => $vendorDir . '/symfony/form/FormFactoryBuilder.php',
|
||||
'Symfony\\Component\\Form\\FormFactoryBuilderInterface' => $vendorDir . '/symfony/form/FormFactoryBuilderInterface.php',
|
||||
'Symfony\\Component\\Form\\FormFactoryInterface' => $vendorDir . '/symfony/form/FormFactoryInterface.php',
|
||||
'Symfony\\Component\\Form\\FormInterface' => $vendorDir . '/symfony/form/FormInterface.php',
|
||||
'Symfony\\Component\\Form\\FormRegistry' => $vendorDir . '/symfony/form/FormRegistry.php',
|
||||
'Symfony\\Component\\Form\\FormRegistryInterface' => $vendorDir . '/symfony/form/FormRegistryInterface.php',
|
||||
'Symfony\\Component\\Form\\FormRenderer' => $vendorDir . '/symfony/form/FormRenderer.php',
|
||||
'Symfony\\Component\\Form\\FormRendererEngineInterface' => $vendorDir . '/symfony/form/FormRendererEngineInterface.php',
|
||||
'Symfony\\Component\\Form\\FormRendererInterface' => $vendorDir . '/symfony/form/FormRendererInterface.php',
|
||||
'Symfony\\Component\\Form\\FormTypeExtensionInterface' => $vendorDir . '/symfony/form/FormTypeExtensionInterface.php',
|
||||
'Symfony\\Component\\Form\\FormTypeGuesserChain' => $vendorDir . '/symfony/form/FormTypeGuesserChain.php',
|
||||
'Symfony\\Component\\Form\\FormTypeGuesserInterface' => $vendorDir . '/symfony/form/FormTypeGuesserInterface.php',
|
||||
'Symfony\\Component\\Form\\FormTypeInterface' => $vendorDir . '/symfony/form/FormTypeInterface.php',
|
||||
'Symfony\\Component\\Form\\FormView' => $vendorDir . '/symfony/form/FormView.php',
|
||||
'Symfony\\Component\\Form\\Forms' => $vendorDir . '/symfony/form/Forms.php',
|
||||
'Symfony\\Component\\Form\\Guess\\Guess' => $vendorDir . '/symfony/form/Guess/Guess.php',
|
||||
'Symfony\\Component\\Form\\Guess\\TypeGuess' => $vendorDir . '/symfony/form/Guess/TypeGuess.php',
|
||||
'Symfony\\Component\\Form\\Guess\\ValueGuess' => $vendorDir . '/symfony/form/Guess/ValueGuess.php',
|
||||
'Symfony\\Component\\Form\\NativeRequestHandler' => $vendorDir . '/symfony/form/NativeRequestHandler.php',
|
||||
'Symfony\\Component\\Form\\PreloadedExtension' => $vendorDir . '/symfony/form/PreloadedExtension.php',
|
||||
'Symfony\\Component\\Form\\RequestHandlerInterface' => $vendorDir . '/symfony/form/RequestHandlerInterface.php',
|
||||
'Symfony\\Component\\Form\\ResolvedFormType' => $vendorDir . '/symfony/form/ResolvedFormType.php',
|
||||
'Symfony\\Component\\Form\\ResolvedFormTypeFactory' => $vendorDir . '/symfony/form/ResolvedFormTypeFactory.php',
|
||||
'Symfony\\Component\\Form\\ResolvedFormTypeFactoryInterface' => $vendorDir . '/symfony/form/ResolvedFormTypeFactoryInterface.php',
|
||||
'Symfony\\Component\\Form\\ResolvedFormTypeInterface' => $vendorDir . '/symfony/form/ResolvedFormTypeInterface.php',
|
||||
'Symfony\\Component\\Form\\ReversedTransformer' => $vendorDir . '/symfony/form/ReversedTransformer.php',
|
||||
'Symfony\\Component\\Form\\SubmitButton' => $vendorDir . '/symfony/form/SubmitButton.php',
|
||||
'Symfony\\Component\\Form\\SubmitButtonBuilder' => $vendorDir . '/symfony/form/SubmitButtonBuilder.php',
|
||||
'Symfony\\Component\\Form\\SubmitButtonTypeInterface' => $vendorDir . '/symfony/form/SubmitButtonTypeInterface.php',
|
||||
'Symfony\\Component\\Form\\Test\\FormBuilderInterface' => $vendorDir . '/symfony/form/Test/FormBuilderInterface.php',
|
||||
'Symfony\\Component\\Form\\Test\\FormIntegrationTestCase' => $vendorDir . '/symfony/form/Test/FormIntegrationTestCase.php',
|
||||
'Symfony\\Component\\Form\\Test\\FormInterface' => $vendorDir . '/symfony/form/Test/FormInterface.php',
|
||||
'Symfony\\Component\\Form\\Test\\FormPerformanceTestCase' => $vendorDir . '/symfony/form/Test/FormPerformanceTestCase.php',
|
||||
'Symfony\\Component\\Form\\Test\\Traits\\RunTestTrait' => $vendorDir . '/symfony/form/Test/Traits/RunTestTrait.php',
|
||||
'Symfony\\Component\\Form\\Test\\Traits\\ValidatorExtensionTrait' => $vendorDir . '/symfony/form/Test/Traits/ValidatorExtensionTrait.php',
|
||||
'Symfony\\Component\\Form\\Test\\TypeTestCase' => $vendorDir . '/symfony/form/Test/TypeTestCase.php',
|
||||
'Symfony\\Component\\Form\\Util\\FormUtil' => $vendorDir . '/symfony/form/Util/FormUtil.php',
|
||||
'Symfony\\Component\\Form\\Util\\InheritDataAwareIterator' => $vendorDir . '/symfony/form/Util/InheritDataAwareIterator.php',
|
||||
'Symfony\\Component\\Form\\Util\\OptionsResolverWrapper' => $vendorDir . '/symfony/form/Util/OptionsResolverWrapper.php',
|
||||
'Symfony\\Component\\Form\\Util\\OrderedHashMap' => $vendorDir . '/symfony/form/Util/OrderedHashMap.php',
|
||||
'Symfony\\Component\\Form\\Util\\OrderedHashMapIterator' => $vendorDir . '/symfony/form/Util/OrderedHashMapIterator.php',
|
||||
'Symfony\\Component\\Form\\Util\\ServerParams' => $vendorDir . '/symfony/form/Util/ServerParams.php',
|
||||
'Symfony\\Component\\Form\\Util\\StringUtil' => $vendorDir . '/symfony/form/Util/StringUtil.php',
|
||||
'Symfony\\Component\\HttpFoundation\\AcceptHeader' => $vendorDir . '/symfony/http-foundation/AcceptHeader.php',
|
||||
'Symfony\\Component\\HttpFoundation\\AcceptHeaderItem' => $vendorDir . '/symfony/http-foundation/AcceptHeaderItem.php',
|
||||
'Symfony\\Component\\HttpFoundation\\BinaryFileResponse' => $vendorDir . '/symfony/http-foundation/BinaryFileResponse.php',
|
||||
@@ -2643,6 +2907,63 @@ return array(
|
||||
'Symfony\\Component\\HttpKernel\\RebootableInterface' => $vendorDir . '/symfony/http-kernel/RebootableInterface.php',
|
||||
'Symfony\\Component\\HttpKernel\\TerminableInterface' => $vendorDir . '/symfony/http-kernel/TerminableInterface.php',
|
||||
'Symfony\\Component\\HttpKernel\\UriSigner' => $vendorDir . '/symfony/http-kernel/UriSigner.php',
|
||||
'Symfony\\Component\\OptionsResolver\\Debug\\OptionsResolverIntrospector' => $vendorDir . '/symfony/options-resolver/Debug/OptionsResolverIntrospector.php',
|
||||
'Symfony\\Component\\OptionsResolver\\Exception\\AccessException' => $vendorDir . '/symfony/options-resolver/Exception/AccessException.php',
|
||||
'Symfony\\Component\\OptionsResolver\\Exception\\ExceptionInterface' => $vendorDir . '/symfony/options-resolver/Exception/ExceptionInterface.php',
|
||||
'Symfony\\Component\\OptionsResolver\\Exception\\InvalidArgumentException' => $vendorDir . '/symfony/options-resolver/Exception/InvalidArgumentException.php',
|
||||
'Symfony\\Component\\OptionsResolver\\Exception\\InvalidOptionsException' => $vendorDir . '/symfony/options-resolver/Exception/InvalidOptionsException.php',
|
||||
'Symfony\\Component\\OptionsResolver\\Exception\\MissingOptionsException' => $vendorDir . '/symfony/options-resolver/Exception/MissingOptionsException.php',
|
||||
'Symfony\\Component\\OptionsResolver\\Exception\\NoConfigurationException' => $vendorDir . '/symfony/options-resolver/Exception/NoConfigurationException.php',
|
||||
'Symfony\\Component\\OptionsResolver\\Exception\\NoSuchOptionException' => $vendorDir . '/symfony/options-resolver/Exception/NoSuchOptionException.php',
|
||||
'Symfony\\Component\\OptionsResolver\\Exception\\OptionDefinitionException' => $vendorDir . '/symfony/options-resolver/Exception/OptionDefinitionException.php',
|
||||
'Symfony\\Component\\OptionsResolver\\Exception\\UndefinedOptionsException' => $vendorDir . '/symfony/options-resolver/Exception/UndefinedOptionsException.php',
|
||||
'Symfony\\Component\\OptionsResolver\\OptionConfigurator' => $vendorDir . '/symfony/options-resolver/OptionConfigurator.php',
|
||||
'Symfony\\Component\\OptionsResolver\\Options' => $vendorDir . '/symfony/options-resolver/Options.php',
|
||||
'Symfony\\Component\\OptionsResolver\\OptionsResolver' => $vendorDir . '/symfony/options-resolver/OptionsResolver.php',
|
||||
'Symfony\\Component\\PropertyAccess\\Exception\\AccessException' => $vendorDir . '/symfony/property-access/Exception/AccessException.php',
|
||||
'Symfony\\Component\\PropertyAccess\\Exception\\ExceptionInterface' => $vendorDir . '/symfony/property-access/Exception/ExceptionInterface.php',
|
||||
'Symfony\\Component\\PropertyAccess\\Exception\\InvalidArgumentException' => $vendorDir . '/symfony/property-access/Exception/InvalidArgumentException.php',
|
||||
'Symfony\\Component\\PropertyAccess\\Exception\\InvalidPropertyPathException' => $vendorDir . '/symfony/property-access/Exception/InvalidPropertyPathException.php',
|
||||
'Symfony\\Component\\PropertyAccess\\Exception\\NoSuchIndexException' => $vendorDir . '/symfony/property-access/Exception/NoSuchIndexException.php',
|
||||
'Symfony\\Component\\PropertyAccess\\Exception\\NoSuchPropertyException' => $vendorDir . '/symfony/property-access/Exception/NoSuchPropertyException.php',
|
||||
'Symfony\\Component\\PropertyAccess\\Exception\\OutOfBoundsException' => $vendorDir . '/symfony/property-access/Exception/OutOfBoundsException.php',
|
||||
'Symfony\\Component\\PropertyAccess\\Exception\\RuntimeException' => $vendorDir . '/symfony/property-access/Exception/RuntimeException.php',
|
||||
'Symfony\\Component\\PropertyAccess\\Exception\\UnexpectedTypeException' => $vendorDir . '/symfony/property-access/Exception/UnexpectedTypeException.php',
|
||||
'Symfony\\Component\\PropertyAccess\\Exception\\UninitializedPropertyException' => $vendorDir . '/symfony/property-access/Exception/UninitializedPropertyException.php',
|
||||
'Symfony\\Component\\PropertyAccess\\PropertyAccess' => $vendorDir . '/symfony/property-access/PropertyAccess.php',
|
||||
'Symfony\\Component\\PropertyAccess\\PropertyAccessor' => $vendorDir . '/symfony/property-access/PropertyAccessor.php',
|
||||
'Symfony\\Component\\PropertyAccess\\PropertyAccessorBuilder' => $vendorDir . '/symfony/property-access/PropertyAccessorBuilder.php',
|
||||
'Symfony\\Component\\PropertyAccess\\PropertyAccessorInterface' => $vendorDir . '/symfony/property-access/PropertyAccessorInterface.php',
|
||||
'Symfony\\Component\\PropertyAccess\\PropertyPath' => $vendorDir . '/symfony/property-access/PropertyPath.php',
|
||||
'Symfony\\Component\\PropertyAccess\\PropertyPathBuilder' => $vendorDir . '/symfony/property-access/PropertyPathBuilder.php',
|
||||
'Symfony\\Component\\PropertyAccess\\PropertyPathInterface' => $vendorDir . '/symfony/property-access/PropertyPathInterface.php',
|
||||
'Symfony\\Component\\PropertyAccess\\PropertyPathIterator' => $vendorDir . '/symfony/property-access/PropertyPathIterator.php',
|
||||
'Symfony\\Component\\PropertyAccess\\PropertyPathIteratorInterface' => $vendorDir . '/symfony/property-access/PropertyPathIteratorInterface.php',
|
||||
'Symfony\\Component\\PropertyInfo\\DependencyInjection\\PropertyInfoConstructorPass' => $vendorDir . '/symfony/property-info/DependencyInjection/PropertyInfoConstructorPass.php',
|
||||
'Symfony\\Component\\PropertyInfo\\DependencyInjection\\PropertyInfoPass' => $vendorDir . '/symfony/property-info/DependencyInjection/PropertyInfoPass.php',
|
||||
'Symfony\\Component\\PropertyInfo\\Extractor\\ConstructorArgumentTypeExtractorInterface' => $vendorDir . '/symfony/property-info/Extractor/ConstructorArgumentTypeExtractorInterface.php',
|
||||
'Symfony\\Component\\PropertyInfo\\Extractor\\ConstructorExtractor' => $vendorDir . '/symfony/property-info/Extractor/ConstructorExtractor.php',
|
||||
'Symfony\\Component\\PropertyInfo\\Extractor\\PhpDocExtractor' => $vendorDir . '/symfony/property-info/Extractor/PhpDocExtractor.php',
|
||||
'Symfony\\Component\\PropertyInfo\\Extractor\\PhpStanExtractor' => $vendorDir . '/symfony/property-info/Extractor/PhpStanExtractor.php',
|
||||
'Symfony\\Component\\PropertyInfo\\Extractor\\ReflectionExtractor' => $vendorDir . '/symfony/property-info/Extractor/ReflectionExtractor.php',
|
||||
'Symfony\\Component\\PropertyInfo\\Extractor\\SerializerExtractor' => $vendorDir . '/symfony/property-info/Extractor/SerializerExtractor.php',
|
||||
'Symfony\\Component\\PropertyInfo\\PhpStan\\NameScope' => $vendorDir . '/symfony/property-info/PhpStan/NameScope.php',
|
||||
'Symfony\\Component\\PropertyInfo\\PhpStan\\NameScopeFactory' => $vendorDir . '/symfony/property-info/PhpStan/NameScopeFactory.php',
|
||||
'Symfony\\Component\\PropertyInfo\\PropertyAccessExtractorInterface' => $vendorDir . '/symfony/property-info/PropertyAccessExtractorInterface.php',
|
||||
'Symfony\\Component\\PropertyInfo\\PropertyDescriptionExtractorInterface' => $vendorDir . '/symfony/property-info/PropertyDescriptionExtractorInterface.php',
|
||||
'Symfony\\Component\\PropertyInfo\\PropertyInfoCacheExtractor' => $vendorDir . '/symfony/property-info/PropertyInfoCacheExtractor.php',
|
||||
'Symfony\\Component\\PropertyInfo\\PropertyInfoExtractor' => $vendorDir . '/symfony/property-info/PropertyInfoExtractor.php',
|
||||
'Symfony\\Component\\PropertyInfo\\PropertyInfoExtractorInterface' => $vendorDir . '/symfony/property-info/PropertyInfoExtractorInterface.php',
|
||||
'Symfony\\Component\\PropertyInfo\\PropertyInitializableExtractorInterface' => $vendorDir . '/symfony/property-info/PropertyInitializableExtractorInterface.php',
|
||||
'Symfony\\Component\\PropertyInfo\\PropertyListExtractorInterface' => $vendorDir . '/symfony/property-info/PropertyListExtractorInterface.php',
|
||||
'Symfony\\Component\\PropertyInfo\\PropertyReadInfo' => $vendorDir . '/symfony/property-info/PropertyReadInfo.php',
|
||||
'Symfony\\Component\\PropertyInfo\\PropertyReadInfoExtractorInterface' => $vendorDir . '/symfony/property-info/PropertyReadInfoExtractorInterface.php',
|
||||
'Symfony\\Component\\PropertyInfo\\PropertyTypeExtractorInterface' => $vendorDir . '/symfony/property-info/PropertyTypeExtractorInterface.php',
|
||||
'Symfony\\Component\\PropertyInfo\\PropertyWriteInfo' => $vendorDir . '/symfony/property-info/PropertyWriteInfo.php',
|
||||
'Symfony\\Component\\PropertyInfo\\PropertyWriteInfoExtractorInterface' => $vendorDir . '/symfony/property-info/PropertyWriteInfoExtractorInterface.php',
|
||||
'Symfony\\Component\\PropertyInfo\\Type' => $vendorDir . '/symfony/property-info/Type.php',
|
||||
'Symfony\\Component\\PropertyInfo\\Util\\PhpDocTypeHelper' => $vendorDir . '/symfony/property-info/Util/PhpDocTypeHelper.php',
|
||||
'Symfony\\Component\\PropertyInfo\\Util\\PhpStanTypeHelper' => $vendorDir . '/symfony/property-info/Util/PhpStanTypeHelper.php',
|
||||
'Symfony\\Component\\Routing\\Alias' => $vendorDir . '/symfony/routing/Alias.php',
|
||||
'Symfony\\Component\\Routing\\Annotation\\Route' => $vendorDir . '/symfony/routing/Annotation/Route.php',
|
||||
'Symfony\\Component\\Routing\\Attribute\\Route' => $vendorDir . '/symfony/routing/Attribute/Route.php',
|
||||
@@ -2863,6 +3184,35 @@ return array(
|
||||
'Symfony\\Contracts\\Translation\\TranslatorTrait' => $vendorDir . '/symfony/translation-contracts/TranslatorTrait.php',
|
||||
'Symfony\\Polyfill\\Ctype\\Ctype' => $vendorDir . '/symfony/polyfill-ctype/Ctype.php',
|
||||
'Symfony\\Polyfill\\Intl\\Grapheme\\Grapheme' => $vendorDir . '/symfony/polyfill-intl-grapheme/Grapheme.php',
|
||||
'Symfony\\Polyfill\\Intl\\Icu\\Collator' => $vendorDir . '/symfony/polyfill-intl-icu/Collator.php',
|
||||
'Symfony\\Polyfill\\Intl\\Icu\\Currencies' => $vendorDir . '/symfony/polyfill-intl-icu/Currencies.php',
|
||||
'Symfony\\Polyfill\\Intl\\Icu\\DateFormat\\AmPmTransformer' => $vendorDir . '/symfony/polyfill-intl-icu/DateFormat/AmPmTransformer.php',
|
||||
'Symfony\\Polyfill\\Intl\\Icu\\DateFormat\\DayOfWeekTransformer' => $vendorDir . '/symfony/polyfill-intl-icu/DateFormat/DayOfWeekTransformer.php',
|
||||
'Symfony\\Polyfill\\Intl\\Icu\\DateFormat\\DayOfYearTransformer' => $vendorDir . '/symfony/polyfill-intl-icu/DateFormat/DayOfYearTransformer.php',
|
||||
'Symfony\\Polyfill\\Intl\\Icu\\DateFormat\\DayTransformer' => $vendorDir . '/symfony/polyfill-intl-icu/DateFormat/DayTransformer.php',
|
||||
'Symfony\\Polyfill\\Intl\\Icu\\DateFormat\\FullTransformer' => $vendorDir . '/symfony/polyfill-intl-icu/DateFormat/FullTransformer.php',
|
||||
'Symfony\\Polyfill\\Intl\\Icu\\DateFormat\\Hour1200Transformer' => $vendorDir . '/symfony/polyfill-intl-icu/DateFormat/Hour1200Transformer.php',
|
||||
'Symfony\\Polyfill\\Intl\\Icu\\DateFormat\\Hour1201Transformer' => $vendorDir . '/symfony/polyfill-intl-icu/DateFormat/Hour1201Transformer.php',
|
||||
'Symfony\\Polyfill\\Intl\\Icu\\DateFormat\\Hour2400Transformer' => $vendorDir . '/symfony/polyfill-intl-icu/DateFormat/Hour2400Transformer.php',
|
||||
'Symfony\\Polyfill\\Intl\\Icu\\DateFormat\\Hour2401Transformer' => $vendorDir . '/symfony/polyfill-intl-icu/DateFormat/Hour2401Transformer.php',
|
||||
'Symfony\\Polyfill\\Intl\\Icu\\DateFormat\\HourTransformer' => $vendorDir . '/symfony/polyfill-intl-icu/DateFormat/HourTransformer.php',
|
||||
'Symfony\\Polyfill\\Intl\\Icu\\DateFormat\\MinuteTransformer' => $vendorDir . '/symfony/polyfill-intl-icu/DateFormat/MinuteTransformer.php',
|
||||
'Symfony\\Polyfill\\Intl\\Icu\\DateFormat\\MonthTransformer' => $vendorDir . '/symfony/polyfill-intl-icu/DateFormat/MonthTransformer.php',
|
||||
'Symfony\\Polyfill\\Intl\\Icu\\DateFormat\\QuarterTransformer' => $vendorDir . '/symfony/polyfill-intl-icu/DateFormat/QuarterTransformer.php',
|
||||
'Symfony\\Polyfill\\Intl\\Icu\\DateFormat\\SecondTransformer' => $vendorDir . '/symfony/polyfill-intl-icu/DateFormat/SecondTransformer.php',
|
||||
'Symfony\\Polyfill\\Intl\\Icu\\DateFormat\\TimezoneTransformer' => $vendorDir . '/symfony/polyfill-intl-icu/DateFormat/TimezoneTransformer.php',
|
||||
'Symfony\\Polyfill\\Intl\\Icu\\DateFormat\\Transformer' => $vendorDir . '/symfony/polyfill-intl-icu/DateFormat/Transformer.php',
|
||||
'Symfony\\Polyfill\\Intl\\Icu\\DateFormat\\YearTransformer' => $vendorDir . '/symfony/polyfill-intl-icu/DateFormat/YearTransformer.php',
|
||||
'Symfony\\Polyfill\\Intl\\Icu\\Exception\\ExceptionInterface' => $vendorDir . '/symfony/polyfill-intl-icu/Exception/ExceptionInterface.php',
|
||||
'Symfony\\Polyfill\\Intl\\Icu\\Exception\\MethodArgumentNotImplementedException' => $vendorDir . '/symfony/polyfill-intl-icu/Exception/MethodArgumentNotImplementedException.php',
|
||||
'Symfony\\Polyfill\\Intl\\Icu\\Exception\\MethodArgumentValueNotImplementedException' => $vendorDir . '/symfony/polyfill-intl-icu/Exception/MethodArgumentValueNotImplementedException.php',
|
||||
'Symfony\\Polyfill\\Intl\\Icu\\Exception\\MethodNotImplementedException' => $vendorDir . '/symfony/polyfill-intl-icu/Exception/MethodNotImplementedException.php',
|
||||
'Symfony\\Polyfill\\Intl\\Icu\\Exception\\NotImplementedException' => $vendorDir . '/symfony/polyfill-intl-icu/Exception/NotImplementedException.php',
|
||||
'Symfony\\Polyfill\\Intl\\Icu\\Exception\\RuntimeException' => $vendorDir . '/symfony/polyfill-intl-icu/Exception/RuntimeException.php',
|
||||
'Symfony\\Polyfill\\Intl\\Icu\\Icu' => $vendorDir . '/symfony/polyfill-intl-icu/Icu.php',
|
||||
'Symfony\\Polyfill\\Intl\\Icu\\IntlDateFormatter' => $vendorDir . '/symfony/polyfill-intl-icu/IntlDateFormatter.php',
|
||||
'Symfony\\Polyfill\\Intl\\Icu\\Locale' => $vendorDir . '/symfony/polyfill-intl-icu/Locale.php',
|
||||
'Symfony\\Polyfill\\Intl\\Icu\\NumberFormatter' => $vendorDir . '/symfony/polyfill-intl-icu/NumberFormatter.php',
|
||||
'Symfony\\Polyfill\\Intl\\Idn\\Idn' => $vendorDir . '/symfony/polyfill-intl-idn/Idn.php',
|
||||
'Symfony\\Polyfill\\Intl\\Idn\\Info' => $vendorDir . '/symfony/polyfill-intl-idn/Info.php',
|
||||
'Symfony\\Polyfill\\Intl\\Idn\\Resources\\unidata\\DisallowedRanges' => $vendorDir . '/symfony/polyfill-intl-idn/Resources/unidata/DisallowedRanges.php',
|
||||
|
||||
@@ -13,18 +13,19 @@ return array(
|
||||
'662a729f963d39afe703c9d9b7ab4a8c' => $vendorDir . '/symfony/polyfill-php83/bootstrap.php',
|
||||
'667aeda72477189d0494fecd327c3641' => $vendorDir . '/symfony/var-dumper/Resources/functions/dump.php',
|
||||
'23c18046f52bef3eea034657bafda50f' => $vendorDir . '/symfony/polyfill-php81/bootstrap.php',
|
||||
'e69f7f6ee287b969198c3c9d6777bd38' => $vendorDir . '/symfony/polyfill-intl-normalizer/bootstrap.php',
|
||||
'89efb1254ef2d1c5d80096acd12c4098' => $vendorDir . '/twig/twig/src/Resources/core.php',
|
||||
'ffecb95d45175fd40f75be8a23b34f90' => $vendorDir . '/twig/twig/src/Resources/debug.php',
|
||||
'c7baa00073ee9c61edf148c51917cfb4' => $vendorDir . '/twig/twig/src/Resources/escaper.php',
|
||||
'f844ccf1d25df8663951193c3fc307c8' => $vendorDir . '/twig/twig/src/Resources/string_loader.php',
|
||||
'7b11c4dc42b3b3023073cb14e519683c' => $vendorDir . '/ralouphie/getallheaders/src/getallheaders.php',
|
||||
'e69f7f6ee287b969198c3c9d6777bd38' => $vendorDir . '/symfony/polyfill-intl-normalizer/bootstrap.php',
|
||||
'8825ede83f2f289127722d4e842cf7e8' => $vendorDir . '/symfony/polyfill-intl-grapheme/bootstrap.php',
|
||||
'b6b991a57620e2fb6b2f66f03fe9ddc2' => $vendorDir . '/symfony/string/Resources/functions.php',
|
||||
'37a3dc5111fe8f707ab4c132ef1dbc62' => $vendorDir . '/guzzlehttp/guzzle/src/functions_include.php',
|
||||
'c9d07b32a2e02bc0fc582d4f0c1b56cc' => $vendorDir . '/laminas/laminas-servicemanager/src/autoload.php',
|
||||
'8825ede83f2f289127722d4e842cf7e8' => $vendorDir . '/symfony/polyfill-intl-grapheme/bootstrap.php',
|
||||
'25072dd6e2470089de65ae7bf11d3109' => $vendorDir . '/symfony/polyfill-php72/bootstrap.php',
|
||||
'6a47392539ca2329373e0d33e1dba053' => $vendorDir . '/symfony/polyfill-intl-icu/bootstrap.php',
|
||||
'f598d06aa772fa33d905e87be6398fb1' => $vendorDir . '/symfony/polyfill-intl-idn/bootstrap.php',
|
||||
'b6b991a57620e2fb6b2f66f03fe9ddc2' => $vendorDir . '/symfony/string/Resources/functions.php',
|
||||
'344f11dc3484aaed5cbde58e23513be4' => $vendorDir . '/apereo/phpcas/source/CAS.php',
|
||||
'6997bc0ca52a383ea79e2a4a84bb1f3e' => $baseDir . '/sources/alias.php',
|
||||
);
|
||||
|
||||
@@ -17,6 +17,7 @@ return array(
|
||||
'Symfony\\Polyfill\\Mbstring\\' => array($vendorDir . '/symfony/polyfill-mbstring'),
|
||||
'Symfony\\Polyfill\\Intl\\Normalizer\\' => array($vendorDir . '/symfony/polyfill-intl-normalizer'),
|
||||
'Symfony\\Polyfill\\Intl\\Idn\\' => array($vendorDir . '/symfony/polyfill-intl-idn'),
|
||||
'Symfony\\Polyfill\\Intl\\Icu\\' => array($vendorDir . '/symfony/polyfill-intl-icu'),
|
||||
'Symfony\\Polyfill\\Intl\\Grapheme\\' => array($vendorDir . '/symfony/polyfill-intl-grapheme'),
|
||||
'Symfony\\Polyfill\\Ctype\\' => array($vendorDir . '/symfony/polyfill-ctype'),
|
||||
'Symfony\\Contracts\\Translation\\' => array($vendorDir . '/symfony/translation-contracts'),
|
||||
@@ -30,8 +31,12 @@ return array(
|
||||
'Symfony\\Component\\Stopwatch\\' => array($vendorDir . '/symfony/stopwatch'),
|
||||
'Symfony\\Component\\Runtime\\' => array($vendorDir . '/symfony/runtime'),
|
||||
'Symfony\\Component\\Routing\\' => array($vendorDir . '/symfony/routing'),
|
||||
'Symfony\\Component\\PropertyInfo\\' => array($vendorDir . '/symfony/property-info'),
|
||||
'Symfony\\Component\\PropertyAccess\\' => array($vendorDir . '/symfony/property-access'),
|
||||
'Symfony\\Component\\OptionsResolver\\' => array($vendorDir . '/symfony/options-resolver'),
|
||||
'Symfony\\Component\\HttpKernel\\' => array($vendorDir . '/symfony/http-kernel'),
|
||||
'Symfony\\Component\\HttpFoundation\\' => array($vendorDir . '/symfony/http-foundation'),
|
||||
'Symfony\\Component\\Form\\' => array($vendorDir . '/symfony/form'),
|
||||
'Symfony\\Component\\Finder\\' => array($vendorDir . '/symfony/finder'),
|
||||
'Symfony\\Component\\Filesystem\\' => array($vendorDir . '/symfony/filesystem'),
|
||||
'Symfony\\Component\\EventDispatcher\\' => array($vendorDir . '/symfony/event-dispatcher'),
|
||||
@@ -58,7 +63,7 @@ return array(
|
||||
'Psr\\Cache\\' => array($vendorDir . '/psr/cache/src'),
|
||||
'PhpParser\\' => array($vendorDir . '/nikic/php-parser/lib/PhpParser'),
|
||||
'Pelago\\Emogrifier\\' => array($vendorDir . '/pelago/emogrifier/src'),
|
||||
'League\\OAuth2\\Client\\' => array($vendorDir . '/league/oauth2-client/src', $vendorDir . '/league/oauth2-google/src'),
|
||||
'League\\OAuth2\\Client\\' => array($vendorDir . '/league/oauth2-google/src', $vendorDir . '/league/oauth2-client/src'),
|
||||
'Laminas\\Validator\\' => array($vendorDir . '/laminas/laminas-validator/src'),
|
||||
'Laminas\\Stdlib\\' => array($vendorDir . '/laminas/laminas-stdlib/src'),
|
||||
'Laminas\\ServiceManager\\' => array($vendorDir . '/laminas/laminas-servicemanager/src'),
|
||||
|
||||
@@ -14,18 +14,19 @@ class ComposerStaticInit7f81b4a2a468a061c306af5e447a9a9f
|
||||
'662a729f963d39afe703c9d9b7ab4a8c' => __DIR__ . '/..' . '/symfony/polyfill-php83/bootstrap.php',
|
||||
'667aeda72477189d0494fecd327c3641' => __DIR__ . '/..' . '/symfony/var-dumper/Resources/functions/dump.php',
|
||||
'23c18046f52bef3eea034657bafda50f' => __DIR__ . '/..' . '/symfony/polyfill-php81/bootstrap.php',
|
||||
'e69f7f6ee287b969198c3c9d6777bd38' => __DIR__ . '/..' . '/symfony/polyfill-intl-normalizer/bootstrap.php',
|
||||
'89efb1254ef2d1c5d80096acd12c4098' => __DIR__ . '/..' . '/twig/twig/src/Resources/core.php',
|
||||
'ffecb95d45175fd40f75be8a23b34f90' => __DIR__ . '/..' . '/twig/twig/src/Resources/debug.php',
|
||||
'c7baa00073ee9c61edf148c51917cfb4' => __DIR__ . '/..' . '/twig/twig/src/Resources/escaper.php',
|
||||
'f844ccf1d25df8663951193c3fc307c8' => __DIR__ . '/..' . '/twig/twig/src/Resources/string_loader.php',
|
||||
'7b11c4dc42b3b3023073cb14e519683c' => __DIR__ . '/..' . '/ralouphie/getallheaders/src/getallheaders.php',
|
||||
'e69f7f6ee287b969198c3c9d6777bd38' => __DIR__ . '/..' . '/symfony/polyfill-intl-normalizer/bootstrap.php',
|
||||
'8825ede83f2f289127722d4e842cf7e8' => __DIR__ . '/..' . '/symfony/polyfill-intl-grapheme/bootstrap.php',
|
||||
'b6b991a57620e2fb6b2f66f03fe9ddc2' => __DIR__ . '/..' . '/symfony/string/Resources/functions.php',
|
||||
'37a3dc5111fe8f707ab4c132ef1dbc62' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/functions_include.php',
|
||||
'c9d07b32a2e02bc0fc582d4f0c1b56cc' => __DIR__ . '/..' . '/laminas/laminas-servicemanager/src/autoload.php',
|
||||
'8825ede83f2f289127722d4e842cf7e8' => __DIR__ . '/..' . '/symfony/polyfill-intl-grapheme/bootstrap.php',
|
||||
'25072dd6e2470089de65ae7bf11d3109' => __DIR__ . '/..' . '/symfony/polyfill-php72/bootstrap.php',
|
||||
'6a47392539ca2329373e0d33e1dba053' => __DIR__ . '/..' . '/symfony/polyfill-intl-icu/bootstrap.php',
|
||||
'f598d06aa772fa33d905e87be6398fb1' => __DIR__ . '/..' . '/symfony/polyfill-intl-idn/bootstrap.php',
|
||||
'b6b991a57620e2fb6b2f66f03fe9ddc2' => __DIR__ . '/..' . '/symfony/string/Resources/functions.php',
|
||||
'344f11dc3484aaed5cbde58e23513be4' => __DIR__ . '/..' . '/apereo/phpcas/source/CAS.php',
|
||||
'6997bc0ca52a383ea79e2a4a84bb1f3e' => __DIR__ . '/../..' . '/sources/alias.php',
|
||||
);
|
||||
@@ -50,6 +51,7 @@ class ComposerStaticInit7f81b4a2a468a061c306af5e447a9a9f
|
||||
'Symfony\\Polyfill\\Mbstring\\' => 26,
|
||||
'Symfony\\Polyfill\\Intl\\Normalizer\\' => 33,
|
||||
'Symfony\\Polyfill\\Intl\\Idn\\' => 26,
|
||||
'Symfony\\Polyfill\\Intl\\Icu\\' => 26,
|
||||
'Symfony\\Polyfill\\Intl\\Grapheme\\' => 31,
|
||||
'Symfony\\Polyfill\\Ctype\\' => 23,
|
||||
'Symfony\\Contracts\\Translation\\' => 30,
|
||||
@@ -63,8 +65,12 @@ class ComposerStaticInit7f81b4a2a468a061c306af5e447a9a9f
|
||||
'Symfony\\Component\\Stopwatch\\' => 28,
|
||||
'Symfony\\Component\\Runtime\\' => 26,
|
||||
'Symfony\\Component\\Routing\\' => 26,
|
||||
'Symfony\\Component\\PropertyInfo\\' => 31,
|
||||
'Symfony\\Component\\PropertyAccess\\' => 33,
|
||||
'Symfony\\Component\\OptionsResolver\\' => 34,
|
||||
'Symfony\\Component\\HttpKernel\\' => 29,
|
||||
'Symfony\\Component\\HttpFoundation\\' => 33,
|
||||
'Symfony\\Component\\Form\\' => 23,
|
||||
'Symfony\\Component\\Finder\\' => 25,
|
||||
'Symfony\\Component\\Filesystem\\' => 29,
|
||||
'Symfony\\Component\\EventDispatcher\\' => 34,
|
||||
@@ -162,6 +168,10 @@ class ComposerStaticInit7f81b4a2a468a061c306af5e447a9a9f
|
||||
array (
|
||||
0 => __DIR__ . '/..' . '/symfony/polyfill-intl-idn',
|
||||
),
|
||||
'Symfony\\Polyfill\\Intl\\Icu\\' =>
|
||||
array (
|
||||
0 => __DIR__ . '/..' . '/symfony/polyfill-intl-icu',
|
||||
),
|
||||
'Symfony\\Polyfill\\Intl\\Grapheme\\' =>
|
||||
array (
|
||||
0 => __DIR__ . '/..' . '/symfony/polyfill-intl-grapheme',
|
||||
@@ -214,6 +224,18 @@ class ComposerStaticInit7f81b4a2a468a061c306af5e447a9a9f
|
||||
array (
|
||||
0 => __DIR__ . '/..' . '/symfony/routing',
|
||||
),
|
||||
'Symfony\\Component\\PropertyInfo\\' =>
|
||||
array (
|
||||
0 => __DIR__ . '/..' . '/symfony/property-info',
|
||||
),
|
||||
'Symfony\\Component\\PropertyAccess\\' =>
|
||||
array (
|
||||
0 => __DIR__ . '/..' . '/symfony/property-access',
|
||||
),
|
||||
'Symfony\\Component\\OptionsResolver\\' =>
|
||||
array (
|
||||
0 => __DIR__ . '/..' . '/symfony/options-resolver',
|
||||
),
|
||||
'Symfony\\Component\\HttpKernel\\' =>
|
||||
array (
|
||||
0 => __DIR__ . '/..' . '/symfony/http-kernel',
|
||||
@@ -222,6 +244,10 @@ class ComposerStaticInit7f81b4a2a468a061c306af5e447a9a9f
|
||||
array (
|
||||
0 => __DIR__ . '/..' . '/symfony/http-foundation',
|
||||
),
|
||||
'Symfony\\Component\\Form\\' =>
|
||||
array (
|
||||
0 => __DIR__ . '/..' . '/symfony/form',
|
||||
),
|
||||
'Symfony\\Component\\Finder\\' =>
|
||||
array (
|
||||
0 => __DIR__ . '/..' . '/symfony/finder',
|
||||
@@ -329,8 +355,8 @@ class ComposerStaticInit7f81b4a2a468a061c306af5e447a9a9f
|
||||
),
|
||||
'League\\OAuth2\\Client\\' =>
|
||||
array (
|
||||
0 => __DIR__ . '/..' . '/league/oauth2-client/src',
|
||||
1 => __DIR__ . '/..' . '/league/oauth2-google/src',
|
||||
0 => __DIR__ . '/..' . '/league/oauth2-google/src',
|
||||
1 => __DIR__ . '/..' . '/league/oauth2-client/src',
|
||||
),
|
||||
'Laminas\\Validator\\' =>
|
||||
array (
|
||||
@@ -580,6 +606,7 @@ class ComposerStaticInit7f81b4a2a468a061c306af5e447a9a9f
|
||||
'CharConcatWSExpression' => __DIR__ . '/../..' . '/core/oql/expression.class.inc.php',
|
||||
'CheckStopWatchThresholds' => __DIR__ . '/../..' . '/core/ormstopwatch.class.inc.php',
|
||||
'CheckableExpression' => __DIR__ . '/../..' . '/core/oql/oqlquery.class.inc.php',
|
||||
'Collator' => __DIR__ . '/..' . '/symfony/polyfill-intl-icu/Resources/stubs/Collator.php',
|
||||
'Combodo\\iTop\\Application\\Branding' => __DIR__ . '/../..' . '/sources/Application/Branding.php',
|
||||
'Combodo\\iTop\\Application\\EventRegister\\ApplicationEvents' => __DIR__ . '/../..' . '/sources/Application/EventRegister/ApplicationEvents.php',
|
||||
'Combodo\\iTop\\Application\\Helper\\CKEditorHelper' => __DIR__ . '/../..' . '/sources/Application/Helper/CKEditorHelper.php',
|
||||
@@ -790,6 +817,31 @@ class ComposerStaticInit7f81b4a2a468a061c306af5e447a9a9f
|
||||
'Combodo\\iTop\\Controller\\AjaxRenderController' => __DIR__ . '/../..' . '/sources/Controller/AjaxRenderController.php',
|
||||
'Combodo\\iTop\\Controller\\Base\\Layout\\ActivityPanelController' => __DIR__ . '/../..' . '/sources/Controller/Base/Layout/ActivityPanelController.php',
|
||||
'Combodo\\iTop\\Controller\\Base\\Layout\\ObjectController' => __DIR__ . '/../..' . '/sources/Controller/Base/Layout/ObjectController.php',
|
||||
'Combodo\\iTop\\Controller\\Form\\Dependency\\AbstractMutableDependentType' => __DIR__ . '/../..' . '/sources/Controller/Form/Dependency/AbstractMutableDependentType.php',
|
||||
'Combodo\\iTop\\Controller\\Form\\Dependency\\FormDependencyDataRegister' => __DIR__ . '/../..' . '/sources/Controller/Form/Dependency/FormDependencyDataRegister.php',
|
||||
'Combodo\\iTop\\Controller\\Form\\Dependency\\FormDependencyManager' => __DIR__ . '/../..' . '/sources/Controller/Form/Dependency/FormDependencyManager.php',
|
||||
'Combodo\\iTop\\Controller\\Form\\Dependency\\FormDependencyRegister' => __DIR__ . '/../..' . '/sources/Controller/Form/Dependency/FormDependencyRegister.php',
|
||||
'Combodo\\iTop\\Controller\\Form\\Dependency\\FormTypeExtension' => __DIR__ . '/../..' . '/sources/Controller/Form/Dependency/FormTypeExtension.php',
|
||||
'Combodo\\iTop\\Controller\\Form\\Dependency\\IncompleteDependenciesException' => __DIR__ . '/../..' . '/sources/Controller/Form/Dependency/IncompleteDependenciesException.php',
|
||||
'Combodo\\iTop\\Controller\\Form\\Dependency\\MissingDataException' => __DIR__ . '/../..' . '/sources/Controller/Form/Dependency/MissingDataException.php',
|
||||
'Combodo\\iTop\\Controller\\Form\\Dependency\\MissingFormException' => __DIR__ . '/../..' . '/sources/Controller/Form/Dependency/MissingFormException.php',
|
||||
'Combodo\\iTop\\Controller\\Form\\Dependency\\MutableStatusEnumeration' => __DIR__ . '/../..' . '/sources/Controller/Form/Dependency/MutableStatusEnumeration.php',
|
||||
'Combodo\\iTop\\Controller\\Form\\FakeDataProvider' => __DIR__ . '/../..' . '/sources/Controller/Form/FakeDataProvider.php',
|
||||
'Combodo\\iTop\\Controller\\Form\\FormController' => __DIR__ . '/../..' . '/sources/Controller/Form/FormController.php',
|
||||
'Combodo\\iTop\\Controller\\Form\\Type\\Dependency\\AttributeChoiceType' => __DIR__ . '/../..' . '/sources/Controller/Form/Type/Dependency/AttributeChoiceType.php',
|
||||
'Combodo\\iTop\\Controller\\Form\\Type\\Dependency\\AttributeChoiceTypeData' => __DIR__ . '/../..' . '/sources/Controller/Form/Type/Dependency/AttributeChoiceTypeData.php',
|
||||
'Combodo\\iTop\\Controller\\Form\\Type\\Dependency\\ClassProviderInterface' => __DIR__ . '/../..' . '/sources/Controller/Form/Type/Dependency/ClassProviderInterface.php',
|
||||
'Combodo\\iTop\\Controller\\Form\\Type\\Dependency\\ContactType' => __DIR__ . '/../..' . '/sources/Controller/Form/Type/Dependency/ContactType.php',
|
||||
'Combodo\\iTop\\Controller\\Form\\Type\\Dependency\\ContactTypeData' => __DIR__ . '/../..' . '/sources/Controller/Form/Type/Dependency/ContactTypeData.php',
|
||||
'Combodo\\iTop\\Controller\\Form\\Type\\Dependency\\FakeChoiceType' => __DIR__ . '/../..' . '/sources/Controller/Form/Type/Dependency/FakeChoiceType.php',
|
||||
'Combodo\\iTop\\Controller\\Form\\Type\\Dependency\\FakeChoiceTypeData' => __DIR__ . '/../..' . '/sources/Controller/Form/Type/Dependency/FakeChoiceTypeData.php',
|
||||
'Combodo\\iTop\\Controller\\Form\\Type\\Dependency\\OQLData' => __DIR__ . '/../..' . '/sources/Controller/Form/Type/Dependency/OQLData.php',
|
||||
'Combodo\\iTop\\Controller\\Form\\Type\\Dependency\\OQLDataTransformer' => __DIR__ . '/../..' . '/sources/Controller/Form/Type/Dependency/OQLDataTransformer.php',
|
||||
'Combodo\\iTop\\Controller\\Form\\Type\\Dependency\\OQLType' => __DIR__ . '/../..' . '/sources/Controller/Form/Type/Dependency/OQLType.php',
|
||||
'Combodo\\iTop\\Controller\\Form\\Type\\Dependency\\OfficeType' => __DIR__ . '/../..' . '/sources/Controller/Form/Type/Dependency/OfficeType.php',
|
||||
'Combodo\\iTop\\Controller\\Form\\Type\\Dependency\\OfficeTypeData' => __DIR__ . '/../..' . '/sources/Controller/Form/Type/Dependency/OfficeTypeData.php',
|
||||
'Combodo\\iTop\\Controller\\Form\\Type\\Form\\MailType' => __DIR__ . '/../..' . '/sources/Controller/Form/Type/Form/MailType.php',
|
||||
'Combodo\\iTop\\Controller\\Form\\Type\\Form\\PhoneType' => __DIR__ . '/../..' . '/sources/Controller/Form/Type/Form/PhoneType.php',
|
||||
'Combodo\\iTop\\Controller\\Links\\LinkSetController' => __DIR__ . '/../..' . '/sources/Controller/Links/LinkSetController.php',
|
||||
'Combodo\\iTop\\Controller\\Newsroom\\iTopNewsroomController' => __DIR__ . '/../..' . '/sources/Controller/Newsroom/iTopNewsroomController.php',
|
||||
'Combodo\\iTop\\Controller\\Notifications\\ActionController' => __DIR__ . '/../..' . '/sources/Controller/Notifications/ActionController.php',
|
||||
@@ -1145,6 +1197,7 @@ class ComposerStaticInit7f81b4a2a468a061c306af5e447a9a9f
|
||||
'InputOutputTask' => __DIR__ . '/../..' . '/application/iotask.class.inc.php',
|
||||
'IntervalExpression' => __DIR__ . '/../..' . '/core/oql/expression.class.inc.php',
|
||||
'IntervalOqlExpression' => __DIR__ . '/../..' . '/core/oql/oqlquery.class.inc.php',
|
||||
'IntlDateFormatter' => __DIR__ . '/..' . '/symfony/polyfill-intl-icu/Resources/stubs/IntlDateFormatter.php',
|
||||
'Introspection' => __DIR__ . '/../..' . '/core/introspection.class.inc.php',
|
||||
'InvalidConfigParamException' => __DIR__ . '/../..' . '/application/exceptions/InvalidConfigParamException.php',
|
||||
'InvalidExternalKeyValueException' => __DIR__ . '/../..' . '/application/exceptions/InvalidExternalKeyValueException.php',
|
||||
@@ -1500,6 +1553,7 @@ class ComposerStaticInit7f81b4a2a468a061c306af5e447a9a9f
|
||||
'League\\OAuth2\\Client\\Tool\\RequiredParameterTrait' => __DIR__ . '/..' . '/league/oauth2-client/src/Tool/RequiredParameterTrait.php',
|
||||
'ListExpression' => __DIR__ . '/../..' . '/core/oql/expression.class.inc.php',
|
||||
'ListOqlExpression' => __DIR__ . '/../..' . '/core/oql/oqlquery.class.inc.php',
|
||||
'Locale' => __DIR__ . '/..' . '/symfony/polyfill-intl-icu/Resources/stubs/Locale.php',
|
||||
'LogAPI' => __DIR__ . '/../..' . '/core/log.class.inc.php',
|
||||
'LogChannels' => __DIR__ . '/../..' . '/core/log.class.inc.php',
|
||||
'LogFileNameBuilderFactory' => __DIR__ . '/../..' . '/core/log.class.inc.php',
|
||||
@@ -1534,6 +1588,7 @@ class ComposerStaticInit7f81b4a2a468a061c306af5e447a9a9f
|
||||
'NewsroomProviderBase' => __DIR__ . '/../..' . '/application/newsroomprovider.class.inc.php',
|
||||
'Normalizer' => __DIR__ . '/..' . '/symfony/polyfill-intl-normalizer/Resources/stubs/Normalizer.php',
|
||||
'NotYetEvaluatedExpression' => __DIR__ . '/../..' . '/core/oql/expression.class.inc.php',
|
||||
'NumberFormatter' => __DIR__ . '/..' . '/symfony/polyfill-intl-icu/Resources/stubs/NumberFormatter.php',
|
||||
'OQLActualClassTreeResolver' => __DIR__ . '/../..' . '/core/oqlactualclasstreeresolver.class.inc.php',
|
||||
'OQLClassNode' => __DIR__ . '/../..' . '/core/oqlclassnode.class.inc.php',
|
||||
'OQLClassTreeBuilder' => __DIR__ . '/../..' . '/core/oqlclasstreebuilder.class.inc.php',
|
||||
@@ -2773,6 +2828,241 @@ class ComposerStaticInit7f81b4a2a468a061c306af5e447a9a9f
|
||||
'Symfony\\Component\\Finder\\Iterator\\SortableIterator' => __DIR__ . '/..' . '/symfony/finder/Iterator/SortableIterator.php',
|
||||
'Symfony\\Component\\Finder\\Iterator\\VcsIgnoredFilterIterator' => __DIR__ . '/..' . '/symfony/finder/Iterator/VcsIgnoredFilterIterator.php',
|
||||
'Symfony\\Component\\Finder\\SplFileInfo' => __DIR__ . '/..' . '/symfony/finder/SplFileInfo.php',
|
||||
'Symfony\\Component\\Form\\AbstractExtension' => __DIR__ . '/..' . '/symfony/form/AbstractExtension.php',
|
||||
'Symfony\\Component\\Form\\AbstractRendererEngine' => __DIR__ . '/..' . '/symfony/form/AbstractRendererEngine.php',
|
||||
'Symfony\\Component\\Form\\AbstractType' => __DIR__ . '/..' . '/symfony/form/AbstractType.php',
|
||||
'Symfony\\Component\\Form\\AbstractTypeExtension' => __DIR__ . '/..' . '/symfony/form/AbstractTypeExtension.php',
|
||||
'Symfony\\Component\\Form\\Button' => __DIR__ . '/..' . '/symfony/form/Button.php',
|
||||
'Symfony\\Component\\Form\\ButtonBuilder' => __DIR__ . '/..' . '/symfony/form/ButtonBuilder.php',
|
||||
'Symfony\\Component\\Form\\ButtonTypeInterface' => __DIR__ . '/..' . '/symfony/form/ButtonTypeInterface.php',
|
||||
'Symfony\\Component\\Form\\CallbackTransformer' => __DIR__ . '/..' . '/symfony/form/CallbackTransformer.php',
|
||||
'Symfony\\Component\\Form\\ChoiceList\\ArrayChoiceList' => __DIR__ . '/..' . '/symfony/form/ChoiceList/ArrayChoiceList.php',
|
||||
'Symfony\\Component\\Form\\ChoiceList\\ChoiceList' => __DIR__ . '/..' . '/symfony/form/ChoiceList/ChoiceList.php',
|
||||
'Symfony\\Component\\Form\\ChoiceList\\ChoiceListInterface' => __DIR__ . '/..' . '/symfony/form/ChoiceList/ChoiceListInterface.php',
|
||||
'Symfony\\Component\\Form\\ChoiceList\\Factory\\Cache\\AbstractStaticOption' => __DIR__ . '/..' . '/symfony/form/ChoiceList/Factory/Cache/AbstractStaticOption.php',
|
||||
'Symfony\\Component\\Form\\ChoiceList\\Factory\\Cache\\ChoiceAttr' => __DIR__ . '/..' . '/symfony/form/ChoiceList/Factory/Cache/ChoiceAttr.php',
|
||||
'Symfony\\Component\\Form\\ChoiceList\\Factory\\Cache\\ChoiceFieldName' => __DIR__ . '/..' . '/symfony/form/ChoiceList/Factory/Cache/ChoiceFieldName.php',
|
||||
'Symfony\\Component\\Form\\ChoiceList\\Factory\\Cache\\ChoiceFilter' => __DIR__ . '/..' . '/symfony/form/ChoiceList/Factory/Cache/ChoiceFilter.php',
|
||||
'Symfony\\Component\\Form\\ChoiceList\\Factory\\Cache\\ChoiceLabel' => __DIR__ . '/..' . '/symfony/form/ChoiceList/Factory/Cache/ChoiceLabel.php',
|
||||
'Symfony\\Component\\Form\\ChoiceList\\Factory\\Cache\\ChoiceLoader' => __DIR__ . '/..' . '/symfony/form/ChoiceList/Factory/Cache/ChoiceLoader.php',
|
||||
'Symfony\\Component\\Form\\ChoiceList\\Factory\\Cache\\ChoiceTranslationParameters' => __DIR__ . '/..' . '/symfony/form/ChoiceList/Factory/Cache/ChoiceTranslationParameters.php',
|
||||
'Symfony\\Component\\Form\\ChoiceList\\Factory\\Cache\\ChoiceValue' => __DIR__ . '/..' . '/symfony/form/ChoiceList/Factory/Cache/ChoiceValue.php',
|
||||
'Symfony\\Component\\Form\\ChoiceList\\Factory\\Cache\\GroupBy' => __DIR__ . '/..' . '/symfony/form/ChoiceList/Factory/Cache/GroupBy.php',
|
||||
'Symfony\\Component\\Form\\ChoiceList\\Factory\\Cache\\PreferredChoice' => __DIR__ . '/..' . '/symfony/form/ChoiceList/Factory/Cache/PreferredChoice.php',
|
||||
'Symfony\\Component\\Form\\ChoiceList\\Factory\\CachingFactoryDecorator' => __DIR__ . '/..' . '/symfony/form/ChoiceList/Factory/CachingFactoryDecorator.php',
|
||||
'Symfony\\Component\\Form\\ChoiceList\\Factory\\ChoiceListFactoryInterface' => __DIR__ . '/..' . '/symfony/form/ChoiceList/Factory/ChoiceListFactoryInterface.php',
|
||||
'Symfony\\Component\\Form\\ChoiceList\\Factory\\DefaultChoiceListFactory' => __DIR__ . '/..' . '/symfony/form/ChoiceList/Factory/DefaultChoiceListFactory.php',
|
||||
'Symfony\\Component\\Form\\ChoiceList\\Factory\\PropertyAccessDecorator' => __DIR__ . '/..' . '/symfony/form/ChoiceList/Factory/PropertyAccessDecorator.php',
|
||||
'Symfony\\Component\\Form\\ChoiceList\\LazyChoiceList' => __DIR__ . '/..' . '/symfony/form/ChoiceList/LazyChoiceList.php',
|
||||
'Symfony\\Component\\Form\\ChoiceList\\Loader\\AbstractChoiceLoader' => __DIR__ . '/..' . '/symfony/form/ChoiceList/Loader/AbstractChoiceLoader.php',
|
||||
'Symfony\\Component\\Form\\ChoiceList\\Loader\\CallbackChoiceLoader' => __DIR__ . '/..' . '/symfony/form/ChoiceList/Loader/CallbackChoiceLoader.php',
|
||||
'Symfony\\Component\\Form\\ChoiceList\\Loader\\ChoiceLoaderInterface' => __DIR__ . '/..' . '/symfony/form/ChoiceList/Loader/ChoiceLoaderInterface.php',
|
||||
'Symfony\\Component\\Form\\ChoiceList\\Loader\\FilterChoiceLoaderDecorator' => __DIR__ . '/..' . '/symfony/form/ChoiceList/Loader/FilterChoiceLoaderDecorator.php',
|
||||
'Symfony\\Component\\Form\\ChoiceList\\Loader\\IntlCallbackChoiceLoader' => __DIR__ . '/..' . '/symfony/form/ChoiceList/Loader/IntlCallbackChoiceLoader.php',
|
||||
'Symfony\\Component\\Form\\ChoiceList\\View\\ChoiceGroupView' => __DIR__ . '/..' . '/symfony/form/ChoiceList/View/ChoiceGroupView.php',
|
||||
'Symfony\\Component\\Form\\ChoiceList\\View\\ChoiceListView' => __DIR__ . '/..' . '/symfony/form/ChoiceList/View/ChoiceListView.php',
|
||||
'Symfony\\Component\\Form\\ChoiceList\\View\\ChoiceView' => __DIR__ . '/..' . '/symfony/form/ChoiceList/View/ChoiceView.php',
|
||||
'Symfony\\Component\\Form\\ClearableErrorsInterface' => __DIR__ . '/..' . '/symfony/form/ClearableErrorsInterface.php',
|
||||
'Symfony\\Component\\Form\\ClickableInterface' => __DIR__ . '/..' . '/symfony/form/ClickableInterface.php',
|
||||
'Symfony\\Component\\Form\\Command\\DebugCommand' => __DIR__ . '/..' . '/symfony/form/Command/DebugCommand.php',
|
||||
'Symfony\\Component\\Form\\Console\\Descriptor\\Descriptor' => __DIR__ . '/..' . '/symfony/form/Console/Descriptor/Descriptor.php',
|
||||
'Symfony\\Component\\Form\\Console\\Descriptor\\JsonDescriptor' => __DIR__ . '/..' . '/symfony/form/Console/Descriptor/JsonDescriptor.php',
|
||||
'Symfony\\Component\\Form\\Console\\Descriptor\\TextDescriptor' => __DIR__ . '/..' . '/symfony/form/Console/Descriptor/TextDescriptor.php',
|
||||
'Symfony\\Component\\Form\\Console\\Helper\\DescriptorHelper' => __DIR__ . '/..' . '/symfony/form/Console/Helper/DescriptorHelper.php',
|
||||
'Symfony\\Component\\Form\\DataAccessorInterface' => __DIR__ . '/..' . '/symfony/form/DataAccessorInterface.php',
|
||||
'Symfony\\Component\\Form\\DataMapperInterface' => __DIR__ . '/..' . '/symfony/form/DataMapperInterface.php',
|
||||
'Symfony\\Component\\Form\\DataTransformerInterface' => __DIR__ . '/..' . '/symfony/form/DataTransformerInterface.php',
|
||||
'Symfony\\Component\\Form\\DependencyInjection\\FormPass' => __DIR__ . '/..' . '/symfony/form/DependencyInjection/FormPass.php',
|
||||
'Symfony\\Component\\Form\\Event\\PostSetDataEvent' => __DIR__ . '/..' . '/symfony/form/Event/PostSetDataEvent.php',
|
||||
'Symfony\\Component\\Form\\Event\\PostSubmitEvent' => __DIR__ . '/..' . '/symfony/form/Event/PostSubmitEvent.php',
|
||||
'Symfony\\Component\\Form\\Event\\PreSetDataEvent' => __DIR__ . '/..' . '/symfony/form/Event/PreSetDataEvent.php',
|
||||
'Symfony\\Component\\Form\\Event\\PreSubmitEvent' => __DIR__ . '/..' . '/symfony/form/Event/PreSubmitEvent.php',
|
||||
'Symfony\\Component\\Form\\Event\\SubmitEvent' => __DIR__ . '/..' . '/symfony/form/Event/SubmitEvent.php',
|
||||
'Symfony\\Component\\Form\\Exception\\AccessException' => __DIR__ . '/..' . '/symfony/form/Exception/AccessException.php',
|
||||
'Symfony\\Component\\Form\\Exception\\AlreadySubmittedException' => __DIR__ . '/..' . '/symfony/form/Exception/AlreadySubmittedException.php',
|
||||
'Symfony\\Component\\Form\\Exception\\BadMethodCallException' => __DIR__ . '/..' . '/symfony/form/Exception/BadMethodCallException.php',
|
||||
'Symfony\\Component\\Form\\Exception\\ErrorMappingException' => __DIR__ . '/..' . '/symfony/form/Exception/ErrorMappingException.php',
|
||||
'Symfony\\Component\\Form\\Exception\\ExceptionInterface' => __DIR__ . '/..' . '/symfony/form/Exception/ExceptionInterface.php',
|
||||
'Symfony\\Component\\Form\\Exception\\InvalidArgumentException' => __DIR__ . '/..' . '/symfony/form/Exception/InvalidArgumentException.php',
|
||||
'Symfony\\Component\\Form\\Exception\\InvalidConfigurationException' => __DIR__ . '/..' . '/symfony/form/Exception/InvalidConfigurationException.php',
|
||||
'Symfony\\Component\\Form\\Exception\\LogicException' => __DIR__ . '/..' . '/symfony/form/Exception/LogicException.php',
|
||||
'Symfony\\Component\\Form\\Exception\\OutOfBoundsException' => __DIR__ . '/..' . '/symfony/form/Exception/OutOfBoundsException.php',
|
||||
'Symfony\\Component\\Form\\Exception\\RuntimeException' => __DIR__ . '/..' . '/symfony/form/Exception/RuntimeException.php',
|
||||
'Symfony\\Component\\Form\\Exception\\StringCastException' => __DIR__ . '/..' . '/symfony/form/Exception/StringCastException.php',
|
||||
'Symfony\\Component\\Form\\Exception\\TransformationFailedException' => __DIR__ . '/..' . '/symfony/form/Exception/TransformationFailedException.php',
|
||||
'Symfony\\Component\\Form\\Exception\\UnexpectedTypeException' => __DIR__ . '/..' . '/symfony/form/Exception/UnexpectedTypeException.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\CoreExtension' => __DIR__ . '/..' . '/symfony/form/Extension/Core/CoreExtension.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\DataAccessor\\CallbackAccessor' => __DIR__ . '/..' . '/symfony/form/Extension/Core/DataAccessor/CallbackAccessor.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\DataAccessor\\ChainAccessor' => __DIR__ . '/..' . '/symfony/form/Extension/Core/DataAccessor/ChainAccessor.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\DataAccessor\\PropertyPathAccessor' => __DIR__ . '/..' . '/symfony/form/Extension/Core/DataAccessor/PropertyPathAccessor.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\DataMapper\\CheckboxListMapper' => __DIR__ . '/..' . '/symfony/form/Extension/Core/DataMapper/CheckboxListMapper.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\DataMapper\\DataMapper' => __DIR__ . '/..' . '/symfony/form/Extension/Core/DataMapper/DataMapper.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\DataMapper\\RadioListMapper' => __DIR__ . '/..' . '/symfony/form/Extension/Core/DataMapper/RadioListMapper.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\DataTransformer\\ArrayToPartsTransformer' => __DIR__ . '/..' . '/symfony/form/Extension/Core/DataTransformer/ArrayToPartsTransformer.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\DataTransformer\\BaseDateTimeTransformer' => __DIR__ . '/..' . '/symfony/form/Extension/Core/DataTransformer/BaseDateTimeTransformer.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\DataTransformer\\BooleanToStringTransformer' => __DIR__ . '/..' . '/symfony/form/Extension/Core/DataTransformer/BooleanToStringTransformer.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\DataTransformer\\ChoiceToValueTransformer' => __DIR__ . '/..' . '/symfony/form/Extension/Core/DataTransformer/ChoiceToValueTransformer.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\DataTransformer\\ChoicesToValuesTransformer' => __DIR__ . '/..' . '/symfony/form/Extension/Core/DataTransformer/ChoicesToValuesTransformer.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\DataTransformer\\DataTransformerChain' => __DIR__ . '/..' . '/symfony/form/Extension/Core/DataTransformer/DataTransformerChain.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\DataTransformer\\DateIntervalToArrayTransformer' => __DIR__ . '/..' . '/symfony/form/Extension/Core/DataTransformer/DateIntervalToArrayTransformer.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\DataTransformer\\DateIntervalToStringTransformer' => __DIR__ . '/..' . '/symfony/form/Extension/Core/DataTransformer/DateIntervalToStringTransformer.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\DataTransformer\\DateTimeImmutableToDateTimeTransformer' => __DIR__ . '/..' . '/symfony/form/Extension/Core/DataTransformer/DateTimeImmutableToDateTimeTransformer.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\DataTransformer\\DateTimeToArrayTransformer' => __DIR__ . '/..' . '/symfony/form/Extension/Core/DataTransformer/DateTimeToArrayTransformer.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\DataTransformer\\DateTimeToHtml5LocalDateTimeTransformer' => __DIR__ . '/..' . '/symfony/form/Extension/Core/DataTransformer/DateTimeToHtml5LocalDateTimeTransformer.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\DataTransformer\\DateTimeToLocalizedStringTransformer' => __DIR__ . '/..' . '/symfony/form/Extension/Core/DataTransformer/DateTimeToLocalizedStringTransformer.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\DataTransformer\\DateTimeToRfc3339Transformer' => __DIR__ . '/..' . '/symfony/form/Extension/Core/DataTransformer/DateTimeToRfc3339Transformer.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\DataTransformer\\DateTimeToStringTransformer' => __DIR__ . '/..' . '/symfony/form/Extension/Core/DataTransformer/DateTimeToStringTransformer.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\DataTransformer\\DateTimeToTimestampTransformer' => __DIR__ . '/..' . '/symfony/form/Extension/Core/DataTransformer/DateTimeToTimestampTransformer.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\DataTransformer\\DateTimeZoneToStringTransformer' => __DIR__ . '/..' . '/symfony/form/Extension/Core/DataTransformer/DateTimeZoneToStringTransformer.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\DataTransformer\\IntegerToLocalizedStringTransformer' => __DIR__ . '/..' . '/symfony/form/Extension/Core/DataTransformer/IntegerToLocalizedStringTransformer.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\DataTransformer\\IntlTimeZoneToStringTransformer' => __DIR__ . '/..' . '/symfony/form/Extension/Core/DataTransformer/IntlTimeZoneToStringTransformer.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\DataTransformer\\MoneyToLocalizedStringTransformer' => __DIR__ . '/..' . '/symfony/form/Extension/Core/DataTransformer/MoneyToLocalizedStringTransformer.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\DataTransformer\\NumberToLocalizedStringTransformer' => __DIR__ . '/..' . '/symfony/form/Extension/Core/DataTransformer/NumberToLocalizedStringTransformer.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\DataTransformer\\PercentToLocalizedStringTransformer' => __DIR__ . '/..' . '/symfony/form/Extension/Core/DataTransformer/PercentToLocalizedStringTransformer.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\DataTransformer\\StringToFloatTransformer' => __DIR__ . '/..' . '/symfony/form/Extension/Core/DataTransformer/StringToFloatTransformer.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\DataTransformer\\UlidToStringTransformer' => __DIR__ . '/..' . '/symfony/form/Extension/Core/DataTransformer/UlidToStringTransformer.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\DataTransformer\\UuidToStringTransformer' => __DIR__ . '/..' . '/symfony/form/Extension/Core/DataTransformer/UuidToStringTransformer.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\DataTransformer\\ValueToDuplicatesTransformer' => __DIR__ . '/..' . '/symfony/form/Extension/Core/DataTransformer/ValueToDuplicatesTransformer.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\DataTransformer\\WeekToArrayTransformer' => __DIR__ . '/..' . '/symfony/form/Extension/Core/DataTransformer/WeekToArrayTransformer.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\EventListener\\FixUrlProtocolListener' => __DIR__ . '/..' . '/symfony/form/Extension/Core/EventListener/FixUrlProtocolListener.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\EventListener\\MergeCollectionListener' => __DIR__ . '/..' . '/symfony/form/Extension/Core/EventListener/MergeCollectionListener.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\EventListener\\ResizeFormListener' => __DIR__ . '/..' . '/symfony/form/Extension/Core/EventListener/ResizeFormListener.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\EventListener\\TransformationFailureListener' => __DIR__ . '/..' . '/symfony/form/Extension/Core/EventListener/TransformationFailureListener.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\EventListener\\TrimListener' => __DIR__ . '/..' . '/symfony/form/Extension/Core/EventListener/TrimListener.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\Type\\BaseType' => __DIR__ . '/..' . '/symfony/form/Extension/Core/Type/BaseType.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\Type\\BirthdayType' => __DIR__ . '/..' . '/symfony/form/Extension/Core/Type/BirthdayType.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\Type\\ButtonType' => __DIR__ . '/..' . '/symfony/form/Extension/Core/Type/ButtonType.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\Type\\CheckboxType' => __DIR__ . '/..' . '/symfony/form/Extension/Core/Type/CheckboxType.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\Type\\ChoiceType' => __DIR__ . '/..' . '/symfony/form/Extension/Core/Type/ChoiceType.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\Type\\CollectionType' => __DIR__ . '/..' . '/symfony/form/Extension/Core/Type/CollectionType.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\Type\\ColorType' => __DIR__ . '/..' . '/symfony/form/Extension/Core/Type/ColorType.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\Type\\CountryType' => __DIR__ . '/..' . '/symfony/form/Extension/Core/Type/CountryType.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\Type\\CurrencyType' => __DIR__ . '/..' . '/symfony/form/Extension/Core/Type/CurrencyType.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\Type\\DateIntervalType' => __DIR__ . '/..' . '/symfony/form/Extension/Core/Type/DateIntervalType.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\Type\\DateTimeType' => __DIR__ . '/..' . '/symfony/form/Extension/Core/Type/DateTimeType.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\Type\\DateType' => __DIR__ . '/..' . '/symfony/form/Extension/Core/Type/DateType.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\Type\\EmailType' => __DIR__ . '/..' . '/symfony/form/Extension/Core/Type/EmailType.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\Type\\EnumType' => __DIR__ . '/..' . '/symfony/form/Extension/Core/Type/EnumType.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\Type\\FileType' => __DIR__ . '/..' . '/symfony/form/Extension/Core/Type/FileType.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\Type\\FormType' => __DIR__ . '/..' . '/symfony/form/Extension/Core/Type/FormType.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\Type\\HiddenType' => __DIR__ . '/..' . '/symfony/form/Extension/Core/Type/HiddenType.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\Type\\IntegerType' => __DIR__ . '/..' . '/symfony/form/Extension/Core/Type/IntegerType.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\Type\\LanguageType' => __DIR__ . '/..' . '/symfony/form/Extension/Core/Type/LanguageType.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\Type\\LocaleType' => __DIR__ . '/..' . '/symfony/form/Extension/Core/Type/LocaleType.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\Type\\MoneyType' => __DIR__ . '/..' . '/symfony/form/Extension/Core/Type/MoneyType.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\Type\\NumberType' => __DIR__ . '/..' . '/symfony/form/Extension/Core/Type/NumberType.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\Type\\PasswordType' => __DIR__ . '/..' . '/symfony/form/Extension/Core/Type/PasswordType.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\Type\\PercentType' => __DIR__ . '/..' . '/symfony/form/Extension/Core/Type/PercentType.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\Type\\RadioType' => __DIR__ . '/..' . '/symfony/form/Extension/Core/Type/RadioType.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\Type\\RangeType' => __DIR__ . '/..' . '/symfony/form/Extension/Core/Type/RangeType.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\Type\\RepeatedType' => __DIR__ . '/..' . '/symfony/form/Extension/Core/Type/RepeatedType.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\Type\\ResetType' => __DIR__ . '/..' . '/symfony/form/Extension/Core/Type/ResetType.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\Type\\SearchType' => __DIR__ . '/..' . '/symfony/form/Extension/Core/Type/SearchType.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\Type\\SubmitType' => __DIR__ . '/..' . '/symfony/form/Extension/Core/Type/SubmitType.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\Type\\TelType' => __DIR__ . '/..' . '/symfony/form/Extension/Core/Type/TelType.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\Type\\TextType' => __DIR__ . '/..' . '/symfony/form/Extension/Core/Type/TextType.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\Type\\TextareaType' => __DIR__ . '/..' . '/symfony/form/Extension/Core/Type/TextareaType.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\Type\\TimeType' => __DIR__ . '/..' . '/symfony/form/Extension/Core/Type/TimeType.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\Type\\TimezoneType' => __DIR__ . '/..' . '/symfony/form/Extension/Core/Type/TimezoneType.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\Type\\TransformationFailureExtension' => __DIR__ . '/..' . '/symfony/form/Extension/Core/Type/TransformationFailureExtension.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\Type\\UlidType' => __DIR__ . '/..' . '/symfony/form/Extension/Core/Type/UlidType.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\Type\\UrlType' => __DIR__ . '/..' . '/symfony/form/Extension/Core/Type/UrlType.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\Type\\UuidType' => __DIR__ . '/..' . '/symfony/form/Extension/Core/Type/UuidType.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Core\\Type\\WeekType' => __DIR__ . '/..' . '/symfony/form/Extension/Core/Type/WeekType.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Csrf\\CsrfExtension' => __DIR__ . '/..' . '/symfony/form/Extension/Csrf/CsrfExtension.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Csrf\\EventListener\\CsrfValidationListener' => __DIR__ . '/..' . '/symfony/form/Extension/Csrf/EventListener/CsrfValidationListener.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Csrf\\Type\\FormTypeCsrfExtension' => __DIR__ . '/..' . '/symfony/form/Extension/Csrf/Type/FormTypeCsrfExtension.php',
|
||||
'Symfony\\Component\\Form\\Extension\\DataCollector\\DataCollectorExtension' => __DIR__ . '/..' . '/symfony/form/Extension/DataCollector/DataCollectorExtension.php',
|
||||
'Symfony\\Component\\Form\\Extension\\DataCollector\\EventListener\\DataCollectorListener' => __DIR__ . '/..' . '/symfony/form/Extension/DataCollector/EventListener/DataCollectorListener.php',
|
||||
'Symfony\\Component\\Form\\Extension\\DataCollector\\FormDataCollector' => __DIR__ . '/..' . '/symfony/form/Extension/DataCollector/FormDataCollector.php',
|
||||
'Symfony\\Component\\Form\\Extension\\DataCollector\\FormDataCollectorInterface' => __DIR__ . '/..' . '/symfony/form/Extension/DataCollector/FormDataCollectorInterface.php',
|
||||
'Symfony\\Component\\Form\\Extension\\DataCollector\\FormDataExtractor' => __DIR__ . '/..' . '/symfony/form/Extension/DataCollector/FormDataExtractor.php',
|
||||
'Symfony\\Component\\Form\\Extension\\DataCollector\\FormDataExtractorInterface' => __DIR__ . '/..' . '/symfony/form/Extension/DataCollector/FormDataExtractorInterface.php',
|
||||
'Symfony\\Component\\Form\\Extension\\DataCollector\\Proxy\\ResolvedTypeDataCollectorProxy' => __DIR__ . '/..' . '/symfony/form/Extension/DataCollector/Proxy/ResolvedTypeDataCollectorProxy.php',
|
||||
'Symfony\\Component\\Form\\Extension\\DataCollector\\Proxy\\ResolvedTypeFactoryDataCollectorProxy' => __DIR__ . '/..' . '/symfony/form/Extension/DataCollector/Proxy/ResolvedTypeFactoryDataCollectorProxy.php',
|
||||
'Symfony\\Component\\Form\\Extension\\DataCollector\\Type\\DataCollectorTypeExtension' => __DIR__ . '/..' . '/symfony/form/Extension/DataCollector/Type/DataCollectorTypeExtension.php',
|
||||
'Symfony\\Component\\Form\\Extension\\DependencyInjection\\DependencyInjectionExtension' => __DIR__ . '/..' . '/symfony/form/Extension/DependencyInjection/DependencyInjectionExtension.php',
|
||||
'Symfony\\Component\\Form\\Extension\\HtmlSanitizer\\HtmlSanitizerExtension' => __DIR__ . '/..' . '/symfony/form/Extension/HtmlSanitizer/HtmlSanitizerExtension.php',
|
||||
'Symfony\\Component\\Form\\Extension\\HtmlSanitizer\\Type\\TextTypeHtmlSanitizerExtension' => __DIR__ . '/..' . '/symfony/form/Extension/HtmlSanitizer/Type/TextTypeHtmlSanitizerExtension.php',
|
||||
'Symfony\\Component\\Form\\Extension\\HttpFoundation\\HttpFoundationExtension' => __DIR__ . '/..' . '/symfony/form/Extension/HttpFoundation/HttpFoundationExtension.php',
|
||||
'Symfony\\Component\\Form\\Extension\\HttpFoundation\\HttpFoundationRequestHandler' => __DIR__ . '/..' . '/symfony/form/Extension/HttpFoundation/HttpFoundationRequestHandler.php',
|
||||
'Symfony\\Component\\Form\\Extension\\HttpFoundation\\Type\\FormTypeHttpFoundationExtension' => __DIR__ . '/..' . '/symfony/form/Extension/HttpFoundation/Type/FormTypeHttpFoundationExtension.php',
|
||||
'Symfony\\Component\\Form\\Extension\\PasswordHasher\\EventListener\\PasswordHasherListener' => __DIR__ . '/..' . '/symfony/form/Extension/PasswordHasher/EventListener/PasswordHasherListener.php',
|
||||
'Symfony\\Component\\Form\\Extension\\PasswordHasher\\PasswordHasherExtension' => __DIR__ . '/..' . '/symfony/form/Extension/PasswordHasher/PasswordHasherExtension.php',
|
||||
'Symfony\\Component\\Form\\Extension\\PasswordHasher\\Type\\FormTypePasswordHasherExtension' => __DIR__ . '/..' . '/symfony/form/Extension/PasswordHasher/Type/FormTypePasswordHasherExtension.php',
|
||||
'Symfony\\Component\\Form\\Extension\\PasswordHasher\\Type\\PasswordTypePasswordHasherExtension' => __DIR__ . '/..' . '/symfony/form/Extension/PasswordHasher/Type/PasswordTypePasswordHasherExtension.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Validator\\Constraints\\Form' => __DIR__ . '/..' . '/symfony/form/Extension/Validator/Constraints/Form.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Validator\\Constraints\\FormValidator' => __DIR__ . '/..' . '/symfony/form/Extension/Validator/Constraints/FormValidator.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Validator\\EventListener\\ValidationListener' => __DIR__ . '/..' . '/symfony/form/Extension/Validator/EventListener/ValidationListener.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Validator\\Type\\BaseValidatorExtension' => __DIR__ . '/..' . '/symfony/form/Extension/Validator/Type/BaseValidatorExtension.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Validator\\Type\\FormTypeValidatorExtension' => __DIR__ . '/..' . '/symfony/form/Extension/Validator/Type/FormTypeValidatorExtension.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Validator\\Type\\RepeatedTypeValidatorExtension' => __DIR__ . '/..' . '/symfony/form/Extension/Validator/Type/RepeatedTypeValidatorExtension.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Validator\\Type\\SubmitTypeValidatorExtension' => __DIR__ . '/..' . '/symfony/form/Extension/Validator/Type/SubmitTypeValidatorExtension.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Validator\\Type\\UploadValidatorExtension' => __DIR__ . '/..' . '/symfony/form/Extension/Validator/Type/UploadValidatorExtension.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Validator\\ValidatorExtension' => __DIR__ . '/..' . '/symfony/form/Extension/Validator/ValidatorExtension.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Validator\\ValidatorTypeGuesser' => __DIR__ . '/..' . '/symfony/form/Extension/Validator/ValidatorTypeGuesser.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Validator\\ViolationMapper\\MappingRule' => __DIR__ . '/..' . '/symfony/form/Extension/Validator/ViolationMapper/MappingRule.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Validator\\ViolationMapper\\RelativePath' => __DIR__ . '/..' . '/symfony/form/Extension/Validator/ViolationMapper/RelativePath.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Validator\\ViolationMapper\\ViolationMapper' => __DIR__ . '/..' . '/symfony/form/Extension/Validator/ViolationMapper/ViolationMapper.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Validator\\ViolationMapper\\ViolationMapperInterface' => __DIR__ . '/..' . '/symfony/form/Extension/Validator/ViolationMapper/ViolationMapperInterface.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Validator\\ViolationMapper\\ViolationPath' => __DIR__ . '/..' . '/symfony/form/Extension/Validator/ViolationMapper/ViolationPath.php',
|
||||
'Symfony\\Component\\Form\\Extension\\Validator\\ViolationMapper\\ViolationPathIterator' => __DIR__ . '/..' . '/symfony/form/Extension/Validator/ViolationMapper/ViolationPathIterator.php',
|
||||
'Symfony\\Component\\Form\\FileUploadError' => __DIR__ . '/..' . '/symfony/form/FileUploadError.php',
|
||||
'Symfony\\Component\\Form\\Form' => __DIR__ . '/..' . '/symfony/form/Form.php',
|
||||
'Symfony\\Component\\Form\\FormBuilder' => __DIR__ . '/..' . '/symfony/form/FormBuilder.php',
|
||||
'Symfony\\Component\\Form\\FormBuilderInterface' => __DIR__ . '/..' . '/symfony/form/FormBuilderInterface.php',
|
||||
'Symfony\\Component\\Form\\FormConfigBuilder' => __DIR__ . '/..' . '/symfony/form/FormConfigBuilder.php',
|
||||
'Symfony\\Component\\Form\\FormConfigBuilderInterface' => __DIR__ . '/..' . '/symfony/form/FormConfigBuilderInterface.php',
|
||||
'Symfony\\Component\\Form\\FormConfigInterface' => __DIR__ . '/..' . '/symfony/form/FormConfigInterface.php',
|
||||
'Symfony\\Component\\Form\\FormError' => __DIR__ . '/..' . '/symfony/form/FormError.php',
|
||||
'Symfony\\Component\\Form\\FormErrorIterator' => __DIR__ . '/..' . '/symfony/form/FormErrorIterator.php',
|
||||
'Symfony\\Component\\Form\\FormEvent' => __DIR__ . '/..' . '/symfony/form/FormEvent.php',
|
||||
'Symfony\\Component\\Form\\FormEvents' => __DIR__ . '/..' . '/symfony/form/FormEvents.php',
|
||||
'Symfony\\Component\\Form\\FormExtensionInterface' => __DIR__ . '/..' . '/symfony/form/FormExtensionInterface.php',
|
||||
'Symfony\\Component\\Form\\FormFactory' => __DIR__ . '/..' . '/symfony/form/FormFactory.php',
|
||||
'Symfony\\Component\\Form\\FormFactoryBuilder' => __DIR__ . '/..' . '/symfony/form/FormFactoryBuilder.php',
|
||||
'Symfony\\Component\\Form\\FormFactoryBuilderInterface' => __DIR__ . '/..' . '/symfony/form/FormFactoryBuilderInterface.php',
|
||||
'Symfony\\Component\\Form\\FormFactoryInterface' => __DIR__ . '/..' . '/symfony/form/FormFactoryInterface.php',
|
||||
'Symfony\\Component\\Form\\FormInterface' => __DIR__ . '/..' . '/symfony/form/FormInterface.php',
|
||||
'Symfony\\Component\\Form\\FormRegistry' => __DIR__ . '/..' . '/symfony/form/FormRegistry.php',
|
||||
'Symfony\\Component\\Form\\FormRegistryInterface' => __DIR__ . '/..' . '/symfony/form/FormRegistryInterface.php',
|
||||
'Symfony\\Component\\Form\\FormRenderer' => __DIR__ . '/..' . '/symfony/form/FormRenderer.php',
|
||||
'Symfony\\Component\\Form\\FormRendererEngineInterface' => __DIR__ . '/..' . '/symfony/form/FormRendererEngineInterface.php',
|
||||
'Symfony\\Component\\Form\\FormRendererInterface' => __DIR__ . '/..' . '/symfony/form/FormRendererInterface.php',
|
||||
'Symfony\\Component\\Form\\FormTypeExtensionInterface' => __DIR__ . '/..' . '/symfony/form/FormTypeExtensionInterface.php',
|
||||
'Symfony\\Component\\Form\\FormTypeGuesserChain' => __DIR__ . '/..' . '/symfony/form/FormTypeGuesserChain.php',
|
||||
'Symfony\\Component\\Form\\FormTypeGuesserInterface' => __DIR__ . '/..' . '/symfony/form/FormTypeGuesserInterface.php',
|
||||
'Symfony\\Component\\Form\\FormTypeInterface' => __DIR__ . '/..' . '/symfony/form/FormTypeInterface.php',
|
||||
'Symfony\\Component\\Form\\FormView' => __DIR__ . '/..' . '/symfony/form/FormView.php',
|
||||
'Symfony\\Component\\Form\\Forms' => __DIR__ . '/..' . '/symfony/form/Forms.php',
|
||||
'Symfony\\Component\\Form\\Guess\\Guess' => __DIR__ . '/..' . '/symfony/form/Guess/Guess.php',
|
||||
'Symfony\\Component\\Form\\Guess\\TypeGuess' => __DIR__ . '/..' . '/symfony/form/Guess/TypeGuess.php',
|
||||
'Symfony\\Component\\Form\\Guess\\ValueGuess' => __DIR__ . '/..' . '/symfony/form/Guess/ValueGuess.php',
|
||||
'Symfony\\Component\\Form\\NativeRequestHandler' => __DIR__ . '/..' . '/symfony/form/NativeRequestHandler.php',
|
||||
'Symfony\\Component\\Form\\PreloadedExtension' => __DIR__ . '/..' . '/symfony/form/PreloadedExtension.php',
|
||||
'Symfony\\Component\\Form\\RequestHandlerInterface' => __DIR__ . '/..' . '/symfony/form/RequestHandlerInterface.php',
|
||||
'Symfony\\Component\\Form\\ResolvedFormType' => __DIR__ . '/..' . '/symfony/form/ResolvedFormType.php',
|
||||
'Symfony\\Component\\Form\\ResolvedFormTypeFactory' => __DIR__ . '/..' . '/symfony/form/ResolvedFormTypeFactory.php',
|
||||
'Symfony\\Component\\Form\\ResolvedFormTypeFactoryInterface' => __DIR__ . '/..' . '/symfony/form/ResolvedFormTypeFactoryInterface.php',
|
||||
'Symfony\\Component\\Form\\ResolvedFormTypeInterface' => __DIR__ . '/..' . '/symfony/form/ResolvedFormTypeInterface.php',
|
||||
'Symfony\\Component\\Form\\ReversedTransformer' => __DIR__ . '/..' . '/symfony/form/ReversedTransformer.php',
|
||||
'Symfony\\Component\\Form\\SubmitButton' => __DIR__ . '/..' . '/symfony/form/SubmitButton.php',
|
||||
'Symfony\\Component\\Form\\SubmitButtonBuilder' => __DIR__ . '/..' . '/symfony/form/SubmitButtonBuilder.php',
|
||||
'Symfony\\Component\\Form\\SubmitButtonTypeInterface' => __DIR__ . '/..' . '/symfony/form/SubmitButtonTypeInterface.php',
|
||||
'Symfony\\Component\\Form\\Test\\FormBuilderInterface' => __DIR__ . '/..' . '/symfony/form/Test/FormBuilderInterface.php',
|
||||
'Symfony\\Component\\Form\\Test\\FormIntegrationTestCase' => __DIR__ . '/..' . '/symfony/form/Test/FormIntegrationTestCase.php',
|
||||
'Symfony\\Component\\Form\\Test\\FormInterface' => __DIR__ . '/..' . '/symfony/form/Test/FormInterface.php',
|
||||
'Symfony\\Component\\Form\\Test\\FormPerformanceTestCase' => __DIR__ . '/..' . '/symfony/form/Test/FormPerformanceTestCase.php',
|
||||
'Symfony\\Component\\Form\\Test\\Traits\\RunTestTrait' => __DIR__ . '/..' . '/symfony/form/Test/Traits/RunTestTrait.php',
|
||||
'Symfony\\Component\\Form\\Test\\Traits\\ValidatorExtensionTrait' => __DIR__ . '/..' . '/symfony/form/Test/Traits/ValidatorExtensionTrait.php',
|
||||
'Symfony\\Component\\Form\\Test\\TypeTestCase' => __DIR__ . '/..' . '/symfony/form/Test/TypeTestCase.php',
|
||||
'Symfony\\Component\\Form\\Util\\FormUtil' => __DIR__ . '/..' . '/symfony/form/Util/FormUtil.php',
|
||||
'Symfony\\Component\\Form\\Util\\InheritDataAwareIterator' => __DIR__ . '/..' . '/symfony/form/Util/InheritDataAwareIterator.php',
|
||||
'Symfony\\Component\\Form\\Util\\OptionsResolverWrapper' => __DIR__ . '/..' . '/symfony/form/Util/OptionsResolverWrapper.php',
|
||||
'Symfony\\Component\\Form\\Util\\OrderedHashMap' => __DIR__ . '/..' . '/symfony/form/Util/OrderedHashMap.php',
|
||||
'Symfony\\Component\\Form\\Util\\OrderedHashMapIterator' => __DIR__ . '/..' . '/symfony/form/Util/OrderedHashMapIterator.php',
|
||||
'Symfony\\Component\\Form\\Util\\ServerParams' => __DIR__ . '/..' . '/symfony/form/Util/ServerParams.php',
|
||||
'Symfony\\Component\\Form\\Util\\StringUtil' => __DIR__ . '/..' . '/symfony/form/Util/StringUtil.php',
|
||||
'Symfony\\Component\\HttpFoundation\\AcceptHeader' => __DIR__ . '/..' . '/symfony/http-foundation/AcceptHeader.php',
|
||||
'Symfony\\Component\\HttpFoundation\\AcceptHeaderItem' => __DIR__ . '/..' . '/symfony/http-foundation/AcceptHeaderItem.php',
|
||||
'Symfony\\Component\\HttpFoundation\\BinaryFileResponse' => __DIR__ . '/..' . '/symfony/http-foundation/BinaryFileResponse.php',
|
||||
@@ -3033,6 +3323,63 @@ class ComposerStaticInit7f81b4a2a468a061c306af5e447a9a9f
|
||||
'Symfony\\Component\\HttpKernel\\RebootableInterface' => __DIR__ . '/..' . '/symfony/http-kernel/RebootableInterface.php',
|
||||
'Symfony\\Component\\HttpKernel\\TerminableInterface' => __DIR__ . '/..' . '/symfony/http-kernel/TerminableInterface.php',
|
||||
'Symfony\\Component\\HttpKernel\\UriSigner' => __DIR__ . '/..' . '/symfony/http-kernel/UriSigner.php',
|
||||
'Symfony\\Component\\OptionsResolver\\Debug\\OptionsResolverIntrospector' => __DIR__ . '/..' . '/symfony/options-resolver/Debug/OptionsResolverIntrospector.php',
|
||||
'Symfony\\Component\\OptionsResolver\\Exception\\AccessException' => __DIR__ . '/..' . '/symfony/options-resolver/Exception/AccessException.php',
|
||||
'Symfony\\Component\\OptionsResolver\\Exception\\ExceptionInterface' => __DIR__ . '/..' . '/symfony/options-resolver/Exception/ExceptionInterface.php',
|
||||
'Symfony\\Component\\OptionsResolver\\Exception\\InvalidArgumentException' => __DIR__ . '/..' . '/symfony/options-resolver/Exception/InvalidArgumentException.php',
|
||||
'Symfony\\Component\\OptionsResolver\\Exception\\InvalidOptionsException' => __DIR__ . '/..' . '/symfony/options-resolver/Exception/InvalidOptionsException.php',
|
||||
'Symfony\\Component\\OptionsResolver\\Exception\\MissingOptionsException' => __DIR__ . '/..' . '/symfony/options-resolver/Exception/MissingOptionsException.php',
|
||||
'Symfony\\Component\\OptionsResolver\\Exception\\NoConfigurationException' => __DIR__ . '/..' . '/symfony/options-resolver/Exception/NoConfigurationException.php',
|
||||
'Symfony\\Component\\OptionsResolver\\Exception\\NoSuchOptionException' => __DIR__ . '/..' . '/symfony/options-resolver/Exception/NoSuchOptionException.php',
|
||||
'Symfony\\Component\\OptionsResolver\\Exception\\OptionDefinitionException' => __DIR__ . '/..' . '/symfony/options-resolver/Exception/OptionDefinitionException.php',
|
||||
'Symfony\\Component\\OptionsResolver\\Exception\\UndefinedOptionsException' => __DIR__ . '/..' . '/symfony/options-resolver/Exception/UndefinedOptionsException.php',
|
||||
'Symfony\\Component\\OptionsResolver\\OptionConfigurator' => __DIR__ . '/..' . '/symfony/options-resolver/OptionConfigurator.php',
|
||||
'Symfony\\Component\\OptionsResolver\\Options' => __DIR__ . '/..' . '/symfony/options-resolver/Options.php',
|
||||
'Symfony\\Component\\OptionsResolver\\OptionsResolver' => __DIR__ . '/..' . '/symfony/options-resolver/OptionsResolver.php',
|
||||
'Symfony\\Component\\PropertyAccess\\Exception\\AccessException' => __DIR__ . '/..' . '/symfony/property-access/Exception/AccessException.php',
|
||||
'Symfony\\Component\\PropertyAccess\\Exception\\ExceptionInterface' => __DIR__ . '/..' . '/symfony/property-access/Exception/ExceptionInterface.php',
|
||||
'Symfony\\Component\\PropertyAccess\\Exception\\InvalidArgumentException' => __DIR__ . '/..' . '/symfony/property-access/Exception/InvalidArgumentException.php',
|
||||
'Symfony\\Component\\PropertyAccess\\Exception\\InvalidPropertyPathException' => __DIR__ . '/..' . '/symfony/property-access/Exception/InvalidPropertyPathException.php',
|
||||
'Symfony\\Component\\PropertyAccess\\Exception\\NoSuchIndexException' => __DIR__ . '/..' . '/symfony/property-access/Exception/NoSuchIndexException.php',
|
||||
'Symfony\\Component\\PropertyAccess\\Exception\\NoSuchPropertyException' => __DIR__ . '/..' . '/symfony/property-access/Exception/NoSuchPropertyException.php',
|
||||
'Symfony\\Component\\PropertyAccess\\Exception\\OutOfBoundsException' => __DIR__ . '/..' . '/symfony/property-access/Exception/OutOfBoundsException.php',
|
||||
'Symfony\\Component\\PropertyAccess\\Exception\\RuntimeException' => __DIR__ . '/..' . '/symfony/property-access/Exception/RuntimeException.php',
|
||||
'Symfony\\Component\\PropertyAccess\\Exception\\UnexpectedTypeException' => __DIR__ . '/..' . '/symfony/property-access/Exception/UnexpectedTypeException.php',
|
||||
'Symfony\\Component\\PropertyAccess\\Exception\\UninitializedPropertyException' => __DIR__ . '/..' . '/symfony/property-access/Exception/UninitializedPropertyException.php',
|
||||
'Symfony\\Component\\PropertyAccess\\PropertyAccess' => __DIR__ . '/..' . '/symfony/property-access/PropertyAccess.php',
|
||||
'Symfony\\Component\\PropertyAccess\\PropertyAccessor' => __DIR__ . '/..' . '/symfony/property-access/PropertyAccessor.php',
|
||||
'Symfony\\Component\\PropertyAccess\\PropertyAccessorBuilder' => __DIR__ . '/..' . '/symfony/property-access/PropertyAccessorBuilder.php',
|
||||
'Symfony\\Component\\PropertyAccess\\PropertyAccessorInterface' => __DIR__ . '/..' . '/symfony/property-access/PropertyAccessorInterface.php',
|
||||
'Symfony\\Component\\PropertyAccess\\PropertyPath' => __DIR__ . '/..' . '/symfony/property-access/PropertyPath.php',
|
||||
'Symfony\\Component\\PropertyAccess\\PropertyPathBuilder' => __DIR__ . '/..' . '/symfony/property-access/PropertyPathBuilder.php',
|
||||
'Symfony\\Component\\PropertyAccess\\PropertyPathInterface' => __DIR__ . '/..' . '/symfony/property-access/PropertyPathInterface.php',
|
||||
'Symfony\\Component\\PropertyAccess\\PropertyPathIterator' => __DIR__ . '/..' . '/symfony/property-access/PropertyPathIterator.php',
|
||||
'Symfony\\Component\\PropertyAccess\\PropertyPathIteratorInterface' => __DIR__ . '/..' . '/symfony/property-access/PropertyPathIteratorInterface.php',
|
||||
'Symfony\\Component\\PropertyInfo\\DependencyInjection\\PropertyInfoConstructorPass' => __DIR__ . '/..' . '/symfony/property-info/DependencyInjection/PropertyInfoConstructorPass.php',
|
||||
'Symfony\\Component\\PropertyInfo\\DependencyInjection\\PropertyInfoPass' => __DIR__ . '/..' . '/symfony/property-info/DependencyInjection/PropertyInfoPass.php',
|
||||
'Symfony\\Component\\PropertyInfo\\Extractor\\ConstructorArgumentTypeExtractorInterface' => __DIR__ . '/..' . '/symfony/property-info/Extractor/ConstructorArgumentTypeExtractorInterface.php',
|
||||
'Symfony\\Component\\PropertyInfo\\Extractor\\ConstructorExtractor' => __DIR__ . '/..' . '/symfony/property-info/Extractor/ConstructorExtractor.php',
|
||||
'Symfony\\Component\\PropertyInfo\\Extractor\\PhpDocExtractor' => __DIR__ . '/..' . '/symfony/property-info/Extractor/PhpDocExtractor.php',
|
||||
'Symfony\\Component\\PropertyInfo\\Extractor\\PhpStanExtractor' => __DIR__ . '/..' . '/symfony/property-info/Extractor/PhpStanExtractor.php',
|
||||
'Symfony\\Component\\PropertyInfo\\Extractor\\ReflectionExtractor' => __DIR__ . '/..' . '/symfony/property-info/Extractor/ReflectionExtractor.php',
|
||||
'Symfony\\Component\\PropertyInfo\\Extractor\\SerializerExtractor' => __DIR__ . '/..' . '/symfony/property-info/Extractor/SerializerExtractor.php',
|
||||
'Symfony\\Component\\PropertyInfo\\PhpStan\\NameScope' => __DIR__ . '/..' . '/symfony/property-info/PhpStan/NameScope.php',
|
||||
'Symfony\\Component\\PropertyInfo\\PhpStan\\NameScopeFactory' => __DIR__ . '/..' . '/symfony/property-info/PhpStan/NameScopeFactory.php',
|
||||
'Symfony\\Component\\PropertyInfo\\PropertyAccessExtractorInterface' => __DIR__ . '/..' . '/symfony/property-info/PropertyAccessExtractorInterface.php',
|
||||
'Symfony\\Component\\PropertyInfo\\PropertyDescriptionExtractorInterface' => __DIR__ . '/..' . '/symfony/property-info/PropertyDescriptionExtractorInterface.php',
|
||||
'Symfony\\Component\\PropertyInfo\\PropertyInfoCacheExtractor' => __DIR__ . '/..' . '/symfony/property-info/PropertyInfoCacheExtractor.php',
|
||||
'Symfony\\Component\\PropertyInfo\\PropertyInfoExtractor' => __DIR__ . '/..' . '/symfony/property-info/PropertyInfoExtractor.php',
|
||||
'Symfony\\Component\\PropertyInfo\\PropertyInfoExtractorInterface' => __DIR__ . '/..' . '/symfony/property-info/PropertyInfoExtractorInterface.php',
|
||||
'Symfony\\Component\\PropertyInfo\\PropertyInitializableExtractorInterface' => __DIR__ . '/..' . '/symfony/property-info/PropertyInitializableExtractorInterface.php',
|
||||
'Symfony\\Component\\PropertyInfo\\PropertyListExtractorInterface' => __DIR__ . '/..' . '/symfony/property-info/PropertyListExtractorInterface.php',
|
||||
'Symfony\\Component\\PropertyInfo\\PropertyReadInfo' => __DIR__ . '/..' . '/symfony/property-info/PropertyReadInfo.php',
|
||||
'Symfony\\Component\\PropertyInfo\\PropertyReadInfoExtractorInterface' => __DIR__ . '/..' . '/symfony/property-info/PropertyReadInfoExtractorInterface.php',
|
||||
'Symfony\\Component\\PropertyInfo\\PropertyTypeExtractorInterface' => __DIR__ . '/..' . '/symfony/property-info/PropertyTypeExtractorInterface.php',
|
||||
'Symfony\\Component\\PropertyInfo\\PropertyWriteInfo' => __DIR__ . '/..' . '/symfony/property-info/PropertyWriteInfo.php',
|
||||
'Symfony\\Component\\PropertyInfo\\PropertyWriteInfoExtractorInterface' => __DIR__ . '/..' . '/symfony/property-info/PropertyWriteInfoExtractorInterface.php',
|
||||
'Symfony\\Component\\PropertyInfo\\Type' => __DIR__ . '/..' . '/symfony/property-info/Type.php',
|
||||
'Symfony\\Component\\PropertyInfo\\Util\\PhpDocTypeHelper' => __DIR__ . '/..' . '/symfony/property-info/Util/PhpDocTypeHelper.php',
|
||||
'Symfony\\Component\\PropertyInfo\\Util\\PhpStanTypeHelper' => __DIR__ . '/..' . '/symfony/property-info/Util/PhpStanTypeHelper.php',
|
||||
'Symfony\\Component\\Routing\\Alias' => __DIR__ . '/..' . '/symfony/routing/Alias.php',
|
||||
'Symfony\\Component\\Routing\\Annotation\\Route' => __DIR__ . '/..' . '/symfony/routing/Annotation/Route.php',
|
||||
'Symfony\\Component\\Routing\\Attribute\\Route' => __DIR__ . '/..' . '/symfony/routing/Attribute/Route.php',
|
||||
@@ -3253,6 +3600,35 @@ class ComposerStaticInit7f81b4a2a468a061c306af5e447a9a9f
|
||||
'Symfony\\Contracts\\Translation\\TranslatorTrait' => __DIR__ . '/..' . '/symfony/translation-contracts/TranslatorTrait.php',
|
||||
'Symfony\\Polyfill\\Ctype\\Ctype' => __DIR__ . '/..' . '/symfony/polyfill-ctype/Ctype.php',
|
||||
'Symfony\\Polyfill\\Intl\\Grapheme\\Grapheme' => __DIR__ . '/..' . '/symfony/polyfill-intl-grapheme/Grapheme.php',
|
||||
'Symfony\\Polyfill\\Intl\\Icu\\Collator' => __DIR__ . '/..' . '/symfony/polyfill-intl-icu/Collator.php',
|
||||
'Symfony\\Polyfill\\Intl\\Icu\\Currencies' => __DIR__ . '/..' . '/symfony/polyfill-intl-icu/Currencies.php',
|
||||
'Symfony\\Polyfill\\Intl\\Icu\\DateFormat\\AmPmTransformer' => __DIR__ . '/..' . '/symfony/polyfill-intl-icu/DateFormat/AmPmTransformer.php',
|
||||
'Symfony\\Polyfill\\Intl\\Icu\\DateFormat\\DayOfWeekTransformer' => __DIR__ . '/..' . '/symfony/polyfill-intl-icu/DateFormat/DayOfWeekTransformer.php',
|
||||
'Symfony\\Polyfill\\Intl\\Icu\\DateFormat\\DayOfYearTransformer' => __DIR__ . '/..' . '/symfony/polyfill-intl-icu/DateFormat/DayOfYearTransformer.php',
|
||||
'Symfony\\Polyfill\\Intl\\Icu\\DateFormat\\DayTransformer' => __DIR__ . '/..' . '/symfony/polyfill-intl-icu/DateFormat/DayTransformer.php',
|
||||
'Symfony\\Polyfill\\Intl\\Icu\\DateFormat\\FullTransformer' => __DIR__ . '/..' . '/symfony/polyfill-intl-icu/DateFormat/FullTransformer.php',
|
||||
'Symfony\\Polyfill\\Intl\\Icu\\DateFormat\\Hour1200Transformer' => __DIR__ . '/..' . '/symfony/polyfill-intl-icu/DateFormat/Hour1200Transformer.php',
|
||||
'Symfony\\Polyfill\\Intl\\Icu\\DateFormat\\Hour1201Transformer' => __DIR__ . '/..' . '/symfony/polyfill-intl-icu/DateFormat/Hour1201Transformer.php',
|
||||
'Symfony\\Polyfill\\Intl\\Icu\\DateFormat\\Hour2400Transformer' => __DIR__ . '/..' . '/symfony/polyfill-intl-icu/DateFormat/Hour2400Transformer.php',
|
||||
'Symfony\\Polyfill\\Intl\\Icu\\DateFormat\\Hour2401Transformer' => __DIR__ . '/..' . '/symfony/polyfill-intl-icu/DateFormat/Hour2401Transformer.php',
|
||||
'Symfony\\Polyfill\\Intl\\Icu\\DateFormat\\HourTransformer' => __DIR__ . '/..' . '/symfony/polyfill-intl-icu/DateFormat/HourTransformer.php',
|
||||
'Symfony\\Polyfill\\Intl\\Icu\\DateFormat\\MinuteTransformer' => __DIR__ . '/..' . '/symfony/polyfill-intl-icu/DateFormat/MinuteTransformer.php',
|
||||
'Symfony\\Polyfill\\Intl\\Icu\\DateFormat\\MonthTransformer' => __DIR__ . '/..' . '/symfony/polyfill-intl-icu/DateFormat/MonthTransformer.php',
|
||||
'Symfony\\Polyfill\\Intl\\Icu\\DateFormat\\QuarterTransformer' => __DIR__ . '/..' . '/symfony/polyfill-intl-icu/DateFormat/QuarterTransformer.php',
|
||||
'Symfony\\Polyfill\\Intl\\Icu\\DateFormat\\SecondTransformer' => __DIR__ . '/..' . '/symfony/polyfill-intl-icu/DateFormat/SecondTransformer.php',
|
||||
'Symfony\\Polyfill\\Intl\\Icu\\DateFormat\\TimezoneTransformer' => __DIR__ . '/..' . '/symfony/polyfill-intl-icu/DateFormat/TimezoneTransformer.php',
|
||||
'Symfony\\Polyfill\\Intl\\Icu\\DateFormat\\Transformer' => __DIR__ . '/..' . '/symfony/polyfill-intl-icu/DateFormat/Transformer.php',
|
||||
'Symfony\\Polyfill\\Intl\\Icu\\DateFormat\\YearTransformer' => __DIR__ . '/..' . '/symfony/polyfill-intl-icu/DateFormat/YearTransformer.php',
|
||||
'Symfony\\Polyfill\\Intl\\Icu\\Exception\\ExceptionInterface' => __DIR__ . '/..' . '/symfony/polyfill-intl-icu/Exception/ExceptionInterface.php',
|
||||
'Symfony\\Polyfill\\Intl\\Icu\\Exception\\MethodArgumentNotImplementedException' => __DIR__ . '/..' . '/symfony/polyfill-intl-icu/Exception/MethodArgumentNotImplementedException.php',
|
||||
'Symfony\\Polyfill\\Intl\\Icu\\Exception\\MethodArgumentValueNotImplementedException' => __DIR__ . '/..' . '/symfony/polyfill-intl-icu/Exception/MethodArgumentValueNotImplementedException.php',
|
||||
'Symfony\\Polyfill\\Intl\\Icu\\Exception\\MethodNotImplementedException' => __DIR__ . '/..' . '/symfony/polyfill-intl-icu/Exception/MethodNotImplementedException.php',
|
||||
'Symfony\\Polyfill\\Intl\\Icu\\Exception\\NotImplementedException' => __DIR__ . '/..' . '/symfony/polyfill-intl-icu/Exception/NotImplementedException.php',
|
||||
'Symfony\\Polyfill\\Intl\\Icu\\Exception\\RuntimeException' => __DIR__ . '/..' . '/symfony/polyfill-intl-icu/Exception/RuntimeException.php',
|
||||
'Symfony\\Polyfill\\Intl\\Icu\\Icu' => __DIR__ . '/..' . '/symfony/polyfill-intl-icu/Icu.php',
|
||||
'Symfony\\Polyfill\\Intl\\Icu\\IntlDateFormatter' => __DIR__ . '/..' . '/symfony/polyfill-intl-icu/IntlDateFormatter.php',
|
||||
'Symfony\\Polyfill\\Intl\\Icu\\Locale' => __DIR__ . '/..' . '/symfony/polyfill-intl-icu/Locale.php',
|
||||
'Symfony\\Polyfill\\Intl\\Icu\\NumberFormatter' => __DIR__ . '/..' . '/symfony/polyfill-intl-icu/NumberFormatter.php',
|
||||
'Symfony\\Polyfill\\Intl\\Idn\\Idn' => __DIR__ . '/..' . '/symfony/polyfill-intl-idn/Idn.php',
|
||||
'Symfony\\Polyfill\\Intl\\Idn\\Info' => __DIR__ . '/..' . '/symfony/polyfill-intl-idn/Info.php',
|
||||
'Symfony\\Polyfill\\Intl\\Idn\\Resources\\unidata\\DisallowedRanges' => __DIR__ . '/..' . '/symfony/polyfill-intl-idn/Resources/unidata/DisallowedRanges.php',
|
||||
|
||||
@@ -3218,6 +3218,106 @@
|
||||
],
|
||||
"install-path": "../symfony/finder"
|
||||
},
|
||||
{
|
||||
"name": "symfony/form",
|
||||
"version": "v6.4.20",
|
||||
"version_normalized": "6.4.20.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/symfony/form.git",
|
||||
"reference": "3929e2a60a828f39df6765fb49d224cc629fa529"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/symfony/form/zipball/3929e2a60a828f39df6765fb49d224cc629fa529",
|
||||
"reference": "3929e2a60a828f39df6765fb49d224cc629fa529",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"php": ">=8.1",
|
||||
"symfony/deprecation-contracts": "^2.5|^3",
|
||||
"symfony/event-dispatcher": "^5.4|^6.0|^7.0",
|
||||
"symfony/options-resolver": "^5.4|^6.0|^7.0",
|
||||
"symfony/polyfill-ctype": "~1.8",
|
||||
"symfony/polyfill-intl-icu": "^1.21",
|
||||
"symfony/polyfill-mbstring": "~1.0",
|
||||
"symfony/property-access": "^5.4|^6.0|^7.0",
|
||||
"symfony/service-contracts": "^2.5|^3"
|
||||
},
|
||||
"conflict": {
|
||||
"symfony/console": "<5.4",
|
||||
"symfony/dependency-injection": "<5.4",
|
||||
"symfony/doctrine-bridge": "<5.4.21|>=6,<6.2.7",
|
||||
"symfony/error-handler": "<5.4",
|
||||
"symfony/framework-bundle": "<5.4",
|
||||
"symfony/http-kernel": "<5.4",
|
||||
"symfony/translation": "<5.4.35|>=6.0,<6.3.12|>=6.4,<6.4.3|>=7.0,<7.0.3",
|
||||
"symfony/translation-contracts": "<2.5",
|
||||
"symfony/twig-bridge": "<6.3"
|
||||
},
|
||||
"require-dev": {
|
||||
"doctrine/collections": "^1.0|^2.0",
|
||||
"symfony/config": "^5.4|^6.0|^7.0",
|
||||
"symfony/console": "^5.4|^6.0|^7.0",
|
||||
"symfony/dependency-injection": "^5.4|^6.0|^7.0",
|
||||
"symfony/expression-language": "^5.4|^6.0|^7.0",
|
||||
"symfony/html-sanitizer": "^6.1|^7.0",
|
||||
"symfony/http-foundation": "^5.4|^6.0|^7.0",
|
||||
"symfony/http-kernel": "^5.4|^6.0|^7.0",
|
||||
"symfony/intl": "^5.4|^6.0|^7.0",
|
||||
"symfony/security-core": "^6.2|^7.0",
|
||||
"symfony/security-csrf": "^5.4|^6.0|^7.0",
|
||||
"symfony/translation": "^5.4.35|~6.3.12|^6.4.3|^7.0.3",
|
||||
"symfony/uid": "^5.4|^6.0|^7.0",
|
||||
"symfony/validator": "^5.4|^6.0|^7.0",
|
||||
"symfony/var-dumper": "^5.4|^6.0|^7.0"
|
||||
},
|
||||
"time": "2025-03-27T10:21:45+00:00",
|
||||
"type": "library",
|
||||
"installation-source": "source",
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"Symfony\\Component\\Form\\": ""
|
||||
},
|
||||
"exclude-from-classmap": [
|
||||
"/Tests/"
|
||||
]
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Fabien Potencier",
|
||||
"email": "fabien@symfony.com"
|
||||
},
|
||||
{
|
||||
"name": "Symfony Community",
|
||||
"homepage": "https://symfony.com/contributors"
|
||||
}
|
||||
],
|
||||
"description": "Allows to easily create, process and reuse HTML forms",
|
||||
"homepage": "https://symfony.com",
|
||||
"support": {
|
||||
"source": "https://github.com/symfony/form/tree/v6.4.20"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
"url": "https://symfony.com/sponsor",
|
||||
"type": "custom"
|
||||
},
|
||||
{
|
||||
"url": "https://github.com/fabpot",
|
||||
"type": "github"
|
||||
},
|
||||
{
|
||||
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
|
||||
"type": "tidelift"
|
||||
}
|
||||
],
|
||||
"install-path": "../symfony/form"
|
||||
},
|
||||
{
|
||||
"name": "symfony/framework-bundle",
|
||||
"version": "v6.4.2",
|
||||
@@ -3565,6 +3665,76 @@
|
||||
],
|
||||
"install-path": "../symfony/http-kernel"
|
||||
},
|
||||
{
|
||||
"name": "symfony/options-resolver",
|
||||
"version": "v6.4.16",
|
||||
"version_normalized": "6.4.16.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/symfony/options-resolver.git",
|
||||
"reference": "368128ad168f20e22c32159b9f761e456cec0c78"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/symfony/options-resolver/zipball/368128ad168f20e22c32159b9f761e456cec0c78",
|
||||
"reference": "368128ad168f20e22c32159b9f761e456cec0c78",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"php": ">=8.1",
|
||||
"symfony/deprecation-contracts": "^2.5|^3"
|
||||
},
|
||||
"time": "2024-11-20T10:57:02+00:00",
|
||||
"type": "library",
|
||||
"installation-source": "source",
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"Symfony\\Component\\OptionsResolver\\": ""
|
||||
},
|
||||
"exclude-from-classmap": [
|
||||
"/Tests/"
|
||||
]
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Fabien Potencier",
|
||||
"email": "fabien@symfony.com"
|
||||
},
|
||||
{
|
||||
"name": "Symfony Community",
|
||||
"homepage": "https://symfony.com/contributors"
|
||||
}
|
||||
],
|
||||
"description": "Provides an improved replacement for the array_replace PHP function",
|
||||
"homepage": "https://symfony.com",
|
||||
"keywords": [
|
||||
"config",
|
||||
"configuration",
|
||||
"options"
|
||||
],
|
||||
"support": {
|
||||
"source": "https://github.com/symfony/options-resolver/tree/v6.4.16"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
"url": "https://symfony.com/sponsor",
|
||||
"type": "custom"
|
||||
},
|
||||
{
|
||||
"url": "https://github.com/fabpot",
|
||||
"type": "github"
|
||||
},
|
||||
{
|
||||
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
|
||||
"type": "tidelift"
|
||||
}
|
||||
],
|
||||
"install-path": "../symfony/options-resolver"
|
||||
},
|
||||
{
|
||||
"name": "symfony/polyfill-ctype",
|
||||
"version": "v1.28.0",
|
||||
@@ -3734,6 +3904,93 @@
|
||||
],
|
||||
"install-path": "../symfony/polyfill-intl-grapheme"
|
||||
},
|
||||
{
|
||||
"name": "symfony/polyfill-intl-icu",
|
||||
"version": "v1.31.0",
|
||||
"version_normalized": "1.31.0.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/symfony/polyfill-intl-icu.git",
|
||||
"reference": "d80a05e9904d2c2b9b95929f3e4b5d3a8f418d78"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/d80a05e9904d2c2b9b95929f3e4b5d3a8f418d78",
|
||||
"reference": "d80a05e9904d2c2b9b95929f3e4b5d3a8f418d78",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"php": ">=7.2"
|
||||
},
|
||||
"suggest": {
|
||||
"ext-intl": "For best performance and support of other locales than \"en\""
|
||||
},
|
||||
"time": "2024-09-09T11:45:10+00:00",
|
||||
"type": "library",
|
||||
"extra": {
|
||||
"thanks": {
|
||||
"url": "https://github.com/symfony/polyfill",
|
||||
"name": "symfony/polyfill"
|
||||
}
|
||||
},
|
||||
"installation-source": "source",
|
||||
"autoload": {
|
||||
"files": [
|
||||
"bootstrap.php"
|
||||
],
|
||||
"psr-4": {
|
||||
"Symfony\\Polyfill\\Intl\\Icu\\": ""
|
||||
},
|
||||
"classmap": [
|
||||
"Resources/stubs"
|
||||
],
|
||||
"exclude-from-classmap": [
|
||||
"/Tests/"
|
||||
]
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Nicolas Grekas",
|
||||
"email": "p@tchwork.com"
|
||||
},
|
||||
{
|
||||
"name": "Symfony Community",
|
||||
"homepage": "https://symfony.com/contributors"
|
||||
}
|
||||
],
|
||||
"description": "Symfony polyfill for intl's ICU-related data and classes",
|
||||
"homepage": "https://symfony.com",
|
||||
"keywords": [
|
||||
"compatibility",
|
||||
"icu",
|
||||
"intl",
|
||||
"polyfill",
|
||||
"portable",
|
||||
"shim"
|
||||
],
|
||||
"support": {
|
||||
"source": "https://github.com/symfony/polyfill-intl-icu/tree/v1.31.0"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
"url": "https://symfony.com/sponsor",
|
||||
"type": "custom"
|
||||
},
|
||||
{
|
||||
"url": "https://github.com/fabpot",
|
||||
"type": "github"
|
||||
},
|
||||
{
|
||||
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
|
||||
"type": "tidelift"
|
||||
}
|
||||
],
|
||||
"install-path": "../symfony/polyfill-intl-icu"
|
||||
},
|
||||
{
|
||||
"name": "symfony/polyfill-intl-idn",
|
||||
"version": "v1.28.0",
|
||||
@@ -4324,6 +4581,175 @@
|
||||
],
|
||||
"install-path": "../symfony/polyfill-php83"
|
||||
},
|
||||
{
|
||||
"name": "symfony/property-access",
|
||||
"version": "v6.4.18",
|
||||
"version_normalized": "6.4.18.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/symfony/property-access.git",
|
||||
"reference": "80e0378f2f058b60d87dedc3c760caec882e992c"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/symfony/property-access/zipball/80e0378f2f058b60d87dedc3c760caec882e992c",
|
||||
"reference": "80e0378f2f058b60d87dedc3c760caec882e992c",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"php": ">=8.1",
|
||||
"symfony/deprecation-contracts": "^2.5|^3",
|
||||
"symfony/property-info": "^5.4|^6.0|^7.0"
|
||||
},
|
||||
"require-dev": {
|
||||
"symfony/cache": "^5.4|^6.0|^7.0"
|
||||
},
|
||||
"time": "2024-12-16T14:42:05+00:00",
|
||||
"type": "library",
|
||||
"installation-source": "source",
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"Symfony\\Component\\PropertyAccess\\": ""
|
||||
},
|
||||
"exclude-from-classmap": [
|
||||
"/Tests/"
|
||||
]
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Fabien Potencier",
|
||||
"email": "fabien@symfony.com"
|
||||
},
|
||||
{
|
||||
"name": "Symfony Community",
|
||||
"homepage": "https://symfony.com/contributors"
|
||||
}
|
||||
],
|
||||
"description": "Provides functions to read and write from/to an object or array using a simple string notation",
|
||||
"homepage": "https://symfony.com",
|
||||
"keywords": [
|
||||
"access",
|
||||
"array",
|
||||
"extraction",
|
||||
"index",
|
||||
"injection",
|
||||
"object",
|
||||
"property",
|
||||
"property-path",
|
||||
"reflection"
|
||||
],
|
||||
"support": {
|
||||
"source": "https://github.com/symfony/property-access/tree/v6.4.18"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
"url": "https://symfony.com/sponsor",
|
||||
"type": "custom"
|
||||
},
|
||||
{
|
||||
"url": "https://github.com/fabpot",
|
||||
"type": "github"
|
||||
},
|
||||
{
|
||||
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
|
||||
"type": "tidelift"
|
||||
}
|
||||
],
|
||||
"install-path": "../symfony/property-access"
|
||||
},
|
||||
{
|
||||
"name": "symfony/property-info",
|
||||
"version": "v6.4.18",
|
||||
"version_normalized": "6.4.18.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/symfony/property-info.git",
|
||||
"reference": "94d18e5cc11a37fd92856d38b61d9cdf72536a1e"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/symfony/property-info/zipball/94d18e5cc11a37fd92856d38b61d9cdf72536a1e",
|
||||
"reference": "94d18e5cc11a37fd92856d38b61d9cdf72536a1e",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"php": ">=8.1",
|
||||
"symfony/string": "^5.4|^6.0|^7.0"
|
||||
},
|
||||
"conflict": {
|
||||
"doctrine/annotations": "<1.12",
|
||||
"phpdocumentor/reflection-docblock": "<5.2",
|
||||
"phpdocumentor/type-resolver": "<1.5.1",
|
||||
"symfony/cache": "<5.4",
|
||||
"symfony/dependency-injection": "<5.4|>=6.0,<6.4",
|
||||
"symfony/serializer": "<5.4"
|
||||
},
|
||||
"require-dev": {
|
||||
"doctrine/annotations": "^1.12|^2",
|
||||
"phpdocumentor/reflection-docblock": "^5.2",
|
||||
"phpstan/phpdoc-parser": "^1.0|^2.0",
|
||||
"symfony/cache": "^5.4|^6.0|^7.0",
|
||||
"symfony/dependency-injection": "^5.4|^6.0|^7.0",
|
||||
"symfony/serializer": "^5.4|^6.4|^7.0"
|
||||
},
|
||||
"time": "2025-01-21T10:52:27+00:00",
|
||||
"type": "library",
|
||||
"installation-source": "source",
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"Symfony\\Component\\PropertyInfo\\": ""
|
||||
},
|
||||
"exclude-from-classmap": [
|
||||
"/Tests/"
|
||||
]
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Kévin Dunglas",
|
||||
"email": "dunglas@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "Symfony Community",
|
||||
"homepage": "https://symfony.com/contributors"
|
||||
}
|
||||
],
|
||||
"description": "Extracts information about PHP class' properties using metadata of popular sources",
|
||||
"homepage": "https://symfony.com",
|
||||
"keywords": [
|
||||
"doctrine",
|
||||
"phpdoc",
|
||||
"property",
|
||||
"symfony",
|
||||
"type",
|
||||
"validator"
|
||||
],
|
||||
"support": {
|
||||
"source": "https://github.com/symfony/property-info/tree/v6.4.18"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
"url": "https://symfony.com/sponsor",
|
||||
"type": "custom"
|
||||
},
|
||||
{
|
||||
"url": "https://github.com/fabpot",
|
||||
"type": "github"
|
||||
},
|
||||
{
|
||||
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
|
||||
"type": "tidelift"
|
||||
}
|
||||
],
|
||||
"install-path": "../symfony/property-info"
|
||||
},
|
||||
{
|
||||
"name": "symfony/routing",
|
||||
"version": "v6.4.2",
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
'name' => 'combodo/itop',
|
||||
'pretty_version' => 'dev-develop',
|
||||
'version' => 'dev-develop',
|
||||
'reference' => '1bf53bae2a481c76bba07e2f6d3447b4008efacd',
|
||||
'reference' => 'aed5d3b873f1c40b8043dee73ac122b4f69b579f',
|
||||
'type' => 'project',
|
||||
'install_path' => __DIR__ . '/../../',
|
||||
'aliases' => array(),
|
||||
@@ -22,7 +22,7 @@
|
||||
'combodo/itop' => array(
|
||||
'pretty_version' => 'dev-develop',
|
||||
'version' => 'dev-develop',
|
||||
'reference' => '1bf53bae2a481c76bba07e2f6d3447b4008efacd',
|
||||
'reference' => 'aed5d3b873f1c40b8043dee73ac122b4f69b579f',
|
||||
'type' => 'project',
|
||||
'install_path' => __DIR__ . '/../../',
|
||||
'aliases' => array(),
|
||||
@@ -232,8 +232,8 @@
|
||||
'psr/container-implementation' => array(
|
||||
'dev_requirement' => false,
|
||||
'provided' => array(
|
||||
0 => '^1.0',
|
||||
1 => '1.1|2.0',
|
||||
0 => '1.1|2.0',
|
||||
1 => '^1.0',
|
||||
),
|
||||
),
|
||||
'psr/event-dispatcher' => array(
|
||||
@@ -497,6 +497,15 @@
|
||||
'aliases' => array(),
|
||||
'dev_requirement' => false,
|
||||
),
|
||||
'symfony/form' => array(
|
||||
'pretty_version' => 'v6.4.20',
|
||||
'version' => '6.4.20.0',
|
||||
'reference' => '3929e2a60a828f39df6765fb49d224cc629fa529',
|
||||
'type' => 'library',
|
||||
'install_path' => __DIR__ . '/../symfony/form',
|
||||
'aliases' => array(),
|
||||
'dev_requirement' => false,
|
||||
),
|
||||
'symfony/framework-bundle' => array(
|
||||
'pretty_version' => 'v6.4.2',
|
||||
'version' => '6.4.2.0',
|
||||
@@ -524,6 +533,15 @@
|
||||
'aliases' => array(),
|
||||
'dev_requirement' => false,
|
||||
),
|
||||
'symfony/options-resolver' => array(
|
||||
'pretty_version' => 'v6.4.16',
|
||||
'version' => '6.4.16.0',
|
||||
'reference' => '368128ad168f20e22c32159b9f761e456cec0c78',
|
||||
'type' => 'library',
|
||||
'install_path' => __DIR__ . '/../symfony/options-resolver',
|
||||
'aliases' => array(),
|
||||
'dev_requirement' => false,
|
||||
),
|
||||
'symfony/polyfill-ctype' => array(
|
||||
'pretty_version' => 'v1.28.0',
|
||||
'version' => '1.28.0.0',
|
||||
@@ -542,6 +560,15 @@
|
||||
'aliases' => array(),
|
||||
'dev_requirement' => false,
|
||||
),
|
||||
'symfony/polyfill-intl-icu' => array(
|
||||
'pretty_version' => 'v1.31.0',
|
||||
'version' => '1.31.0.0',
|
||||
'reference' => 'd80a05e9904d2c2b9b95929f3e4b5d3a8f418d78',
|
||||
'type' => 'library',
|
||||
'install_path' => __DIR__ . '/../symfony/polyfill-intl-icu',
|
||||
'aliases' => array(),
|
||||
'dev_requirement' => false,
|
||||
),
|
||||
'symfony/polyfill-intl-idn' => array(
|
||||
'pretty_version' => 'v1.28.0',
|
||||
'version' => '1.28.0.0',
|
||||
@@ -605,6 +632,24 @@
|
||||
'aliases' => array(),
|
||||
'dev_requirement' => false,
|
||||
),
|
||||
'symfony/property-access' => array(
|
||||
'pretty_version' => 'v6.4.18',
|
||||
'version' => '6.4.18.0',
|
||||
'reference' => '80e0378f2f058b60d87dedc3c760caec882e992c',
|
||||
'type' => 'library',
|
||||
'install_path' => __DIR__ . '/../symfony/property-access',
|
||||
'aliases' => array(),
|
||||
'dev_requirement' => false,
|
||||
),
|
||||
'symfony/property-info' => array(
|
||||
'pretty_version' => 'v6.4.18',
|
||||
'version' => '6.4.18.0',
|
||||
'reference' => '94d18e5cc11a37fd92856d38b61d9cdf72536a1e',
|
||||
'type' => 'library',
|
||||
'install_path' => __DIR__ . '/../symfony/property-info',
|
||||
'aliases' => array(),
|
||||
'dev_requirement' => false,
|
||||
),
|
||||
'symfony/routing' => array(
|
||||
'pretty_version' => 'v6.4.2',
|
||||
'version' => '6.4.2.0',
|
||||
|
||||
@@ -36,8 +36,7 @@ if ($issues) {
|
||||
echo 'Composer detected issues in your platform:' . PHP_EOL.PHP_EOL . str_replace('You are running '.PHP_VERSION.'.', '', implode(PHP_EOL, $issues)) . PHP_EOL.PHP_EOL;
|
||||
}
|
||||
}
|
||||
trigger_error(
|
||||
'Composer detected issues in your platform: ' . implode(' ', $issues),
|
||||
E_USER_ERROR
|
||||
throw new \RuntimeException(
|
||||
'Composer detected issues in your platform: ' . implode(' ', $issues)
|
||||
);
|
||||
}
|
||||
|
||||
2
lib/symfony/cache/Traits/ValueWrapper.php
vendored
2
lib/symfony/cache/Traits/ValueWrapper.php
vendored
@@ -16,7 +16,7 @@
|
||||
*
|
||||
* @internal
|
||||
*/
|
||||
class ©
|
||||
class <EFBFBD>
|
||||
{
|
||||
private const EXPIRY_OFFSET = 1648206727;
|
||||
private const INT32_MAX = 2147483647;
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user