x25 3.0.0 → 17.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Account/Load.js +75 -0
- package/Account/actions.js +15 -0
- package/Account/index.js +20 -0
- package/Account/reducer.js +122 -0
- package/Account/request.js +44 -0
- package/Async/InitModule.js +190 -0
- package/Async/RouteLoading.js +64 -0
- package/Async/SimulatedException.js +44 -0
- package/Async/index.js +95 -0
- package/Async/types.js +1 -0
- package/Company/Load.js +82 -0
- package/Company/actions.js +15 -0
- package/Company/index.js +20 -0
- package/Company/reducer.js +165 -0
- package/Company/request.js +36 -0
- package/Company/util.js +10 -0
- package/Header/AccountOptionsContainer.js +144 -0
- package/Header/AdminSelectCompany.js +109 -0
- package/Header/ClientSelectCompany.js +104 -0
- package/Header/Header.js +127 -0
- package/Header/HeaderContainer.js +39 -0
- package/Header/Logo.js +30 -0
- package/Header/LogoutButton.js +39 -0
- package/Header/index.js +19 -0
- package/Header/request.js +26 -0
- package/Header/types.js +1 -0
- package/Header/util.js +58 -0
- package/Inputs/Business/BankAccount.js +48 -0
- package/Inputs/Business/BankName.js +49 -0
- package/Inputs/Business/CifField.js +112 -0
- package/Inputs/Business/CifFieldContainer.js +157 -0
- package/Inputs/Business/Email.js +37 -0
- package/Inputs/Business/NidField.js +91 -0
- package/Inputs/Business/Phone.js +37 -0
- package/Inputs/Business/index.js +34 -0
- package/Inputs/Business/request.js +39 -0
- package/Inputs/CaptchaBox.js +151 -0
- package/Inputs/DateInput.js +172 -0
- package/Inputs/DateTemplate.js +200 -0
- package/Inputs/DelayInputChange.js +135 -0
- package/Inputs/FocusTemplate.js +47 -0
- package/Inputs/InputTemplate.js +78 -0
- package/Inputs/LabelTemplate.js +59 -0
- package/Inputs/NumericInput.js +139 -0
- package/Inputs/NumericTemplate.js +148 -0
- package/Inputs/Selects/County.js +29 -0
- package/Inputs/Selects/Custom.js +56 -0
- package/Inputs/Selects/Simple.js +75 -0
- package/Inputs/Selects/index.js +52 -0
- package/Inputs/SimpleInput.js +42 -0
- package/Inputs/SimpleTextarea.js +47 -0
- package/Inputs/TextareaTemplate.js +55 -0
- package/Inputs/Tooltip.js +82 -0
- package/Inputs/index.js +185 -0
- package/Messages/Error.js +106 -0
- package/Messages/Loading.js +68 -0
- package/Messages/index.js +29 -0
- package/Modal/Delete.js +240 -0
- package/Modal/Root.js +81 -0
- package/Modal/SimpleModal.js +57 -0
- package/Modal/actions.js +10 -0
- package/Modal/getComponent.js +42 -0
- package/Modal/index.js +22 -0
- package/Modal/reducer.js +53 -0
- package/Modal/types.js +7 -0
- package/Modal/util.js +17 -0
- package/Payment/EstimatePrice/Description.js +92 -0
- package/Payment/EstimatePrice/PayBox.js +220 -0
- package/Payment/EstimatePrice/index.js +92 -0
- package/Payment/EstimatePrice/util.js +21 -0
- package/Payment/MobilpayForm.js +86 -0
- package/Payment/Modal/BankTransfer.js +233 -0
- package/Payment/Modal/CompanyValability.js +28 -0
- package/Payment/Modal/DoneForm.js +222 -0
- package/Payment/Modal/PaymentDone.js +53 -0
- package/Payment/Modal/index.js +27 -0
- package/Payment/actions.js +23 -0
- package/{src/Payment → Payment}/codes.js +19 -16
- package/Payment/index.js +141 -0
- package/Payment/request.js +49 -0
- package/Payment/types.js +1 -0
- package/Payment/util.js +50 -0
- package/Payment/validate.js +23 -0
- package/Sidebar.js +156 -0
- package/Things.js +53 -0
- package/actions.js +73 -0
- package/config.js +10 -0
- package/dev/ErrorBoundary.js +109 -0
- package/dev/TheError.js +113 -0
- package/dev/index.js +132 -0
- package/dev/types.js +1 -0
- package/package.json +13 -13
- package/prod/SentryErrorBoundary.js +150 -0
- package/reducer/captchas.js +51 -0
- package/reducer/counties.js +57 -0
- package/reducer/index.js +38 -0
- package/reducer/module.js +48 -0
- package/style/index.css +1 -0
- package/style/sidebar.css +1 -0
- package/types.js +1 -0
- package/utility/calendar.js +45 -0
- package/utility/date.js +111 -0
- package/utility/index.js +125 -0
- package/utility/language.js +20 -0
- package/utility/mql.js +6 -0
- package/utility/normalize-test.js +54 -0
- package/utility/normalize.js +108 -0
- package/utility/numbers.js +93 -0
- package/utility/numeric.js +103 -0
- package/utility/others.js +142 -0
- package/utility/strings-test.js +216 -0
- package/utility/strings.js +85 -0
- package/utility/validation/common.js +278 -0
- package/utility/validation/index.js +110 -0
- package/utility/validation/specific.js +14 -0
- package/utility/validation/validate/bank-test.js +41 -0
- package/utility/validation/validate/bank.js +176 -0
- package/utility/validation/validate/cif-test.js +37 -0
- package/utility/validation/validate/cif.js +44 -0
- package/utility/validation/validate/cnp-test.js +68 -0
- package/utility/validation/validate/cnp.js +193 -0
- package/{src/utility → utility}/validation/validate/date.js +61 -73
- package/utility/validation/validate/email-test.js +30 -0
- package/utility/validation/validate/email.js +11 -0
- package/utility/validation/validate/index.js +65 -0
- package/.eslintignore +0 -2
- package/.eslintrc.json +0 -275
- package/.flowconfig +0 -23
- package/conf/dev.js +0 -19
- package/conf/dist.js +0 -19
- package/conf/polyfills/tempPolyfills.js +0 -7
- package/src/Account/Load.jsx +0 -79
- package/src/Account/actions.js +0 -10
- package/src/Account/index.js +0 -11
- package/src/Account/reducer.js +0 -139
- package/src/Account/request.js +0 -36
- package/src/Async/InitModule.jsx +0 -114
- package/src/Async/RouteLoading.jsx +0 -52
- package/src/Async/SimulatedException.jsx +0 -19
- package/src/Async/index.jsx +0 -75
- package/src/Async/types.js +0 -39
- package/src/Company/Load.jsx +0 -84
- package/src/Company/actions.js +0 -10
- package/src/Company/index.js +0 -11
- package/src/Company/reducer.js +0 -201
- package/src/Company/request.js +0 -30
- package/src/Company/util.js +0 -7
- package/src/Header/AccountOptionsContainer.jsx +0 -124
- package/src/Header/AdminSelectCompany.jsx +0 -101
- package/src/Header/ClientSelectCompany.jsx +0 -90
- package/src/Header/Header.jsx +0 -120
- package/src/Header/HeaderContainer.jsx +0 -30
- package/src/Header/Logo.jsx +0 -16
- package/src/Header/LogoutButton.jsx +0 -34
- package/src/Header/index.jsx +0 -9
- package/src/Header/request.js +0 -28
- package/src/Header/types.js +0 -6
- package/src/Header/util.jsx +0 -61
- package/src/Inputs/Business/BankAccount.jsx +0 -39
- package/src/Inputs/Business/BankName.jsx +0 -40
- package/src/Inputs/Business/CifField.jsx +0 -93
- package/src/Inputs/Business/CifFieldContainer.jsx +0 -142
- package/src/Inputs/Business/Email.jsx +0 -23
- package/src/Inputs/Business/NidField.jsx +0 -77
- package/src/Inputs/Business/Phone.jsx +0 -23
- package/src/Inputs/Business/index.js +0 -16
- package/src/Inputs/Business/request.js +0 -39
- package/src/Inputs/CaptchaBox.jsx +0 -131
- package/src/Inputs/DateInput.jsx +0 -188
- package/src/Inputs/DateTemplate.jsx +0 -213
- package/src/Inputs/DelayInputChange.jsx +0 -130
- package/src/Inputs/FocusTemplate.jsx +0 -41
- package/src/Inputs/InputTemplate.jsx +0 -79
- package/src/Inputs/LabelTemplate.jsx +0 -47
- package/src/Inputs/NumericInput.jsx +0 -142
- package/src/Inputs/NumericTemplate.jsx +0 -155
- package/src/Inputs/Selects/County.jsx +0 -19
- package/src/Inputs/Selects/Custom.jsx +0 -55
- package/src/Inputs/Selects/Simple.jsx +0 -73
- package/src/Inputs/Selects/index.jsx +0 -37
- package/src/Inputs/SimpleInput.jsx +0 -40
- package/src/Inputs/SimpleTextarea.jsx +0 -55
- package/src/Inputs/TextareaTemplate.jsx +0 -57
- package/src/Inputs/Tooltip.jsx +0 -61
- package/src/Inputs/index.js +0 -22
- package/src/Messages/Error.jsx +0 -83
- package/src/Messages/Loading.jsx +0 -43
- package/src/Messages/index.jsx +0 -4
- package/src/Modal/Delete.jsx +0 -237
- package/src/Modal/Root.jsx +0 -57
- package/src/Modal/SimpleModal.jsx +0 -47
- package/src/Modal/actions.js +0 -7
- package/src/Modal/getComponent.jsx +0 -32
- package/src/Modal/index.jsx +0 -12
- package/src/Modal/reducer.js +0 -40
- package/src/Modal/types.js +0 -6
- package/src/Modal/util.js +0 -15
- package/src/Payment/EstimatePrice/Description.jsx +0 -101
- package/src/Payment/EstimatePrice/PayBox.jsx +0 -173
- package/src/Payment/EstimatePrice/index.jsx +0 -63
- package/src/Payment/EstimatePrice/util.js +0 -15
- package/src/Payment/MobilpayForm.jsx +0 -77
- package/src/Payment/Modal/BankTransfer.jsx +0 -129
- package/src/Payment/Modal/CompanyValability.jsx +0 -14
- package/src/Payment/Modal/DoneForm.jsx +0 -209
- package/src/Payment/Modal/PaymentDone.jsx +0 -27
- package/src/Payment/Modal/index.js +0 -13
- package/src/Payment/actions.jsx +0 -22
- package/src/Payment/index.jsx +0 -124
- package/src/Payment/request.js +0 -50
- package/src/Payment/types.js +0 -14
- package/src/Payment/util.jsx +0 -52
- package/src/Payment/validate.js +0 -25
- package/src/Sidebar.jsx +0 -158
- package/src/Things.jsx +0 -35
- package/src/actions.js +0 -36
- package/src/config.js +0 -7
- package/src/dev/ErrorBoundary.jsx +0 -98
- package/src/dev/TheError.jsx +0 -87
- package/src/dev/index.js +0 -127
- package/src/dev/types.js +0 -10
- package/src/prod/SentryErrorBoundary.jsx +0 -98
- package/src/reducer/captchas.js +0 -44
- package/src/reducer/counties.js +0 -46
- package/src/reducer/index.js +0 -25
- package/src/reducer/module.jsx +0 -43
- package/src/style/.sass-lint.yml +0 -84
- package/src/style/.stylelintrc.json +0 -161
- package/src/style/_fancy-text.scss +0 -37
- package/src/style/_fix_bootstrap_placeholder_color.scss +0 -14
- package/src/style/_header-company.scss +0 -69
- package/src/style/_inputs.scss +0 -12
- package/src/style/_minimal.scss +0 -31
- package/src/style/_navigation.scss +0 -24
- package/src/style/_others.scss +0 -79
- package/src/style/index.scss +0 -7
- package/src/style/sidebar/_animations.scss +0 -21
- package/src/style/sidebar/_dark-theme.scss +0 -77
- package/src/style/sidebar/_scroll.scss +0 -37
- package/src/style/sidebar/_structure.scss +0 -299
- package/src/style/sidebar.scss +0 -4
- package/src/types.js +0 -31
- package/src/utility/calendar.js +0 -39
- package/src/utility/date.js +0 -100
- package/src/utility/index.js +0 -12
- package/src/utility/language.js +0 -17
- package/src/utility/mql.js +0 -3
- package/src/utility/normalize-test.js +0 -58
- package/src/utility/normalize.js +0 -119
- package/src/utility/numbers.js +0 -87
- package/src/utility/numeric.js +0 -114
- package/src/utility/others.jsx +0 -160
- package/src/utility/strings-test.js +0 -136
- package/src/utility/strings.js +0 -80
- package/src/utility/validation/common.js +0 -360
- package/src/utility/validation/index.js +0 -70
- package/src/utility/validation/specific.js +0 -9
- package/src/utility/validation/validate/bank-test.js +0 -129
- package/src/utility/validation/validate/bank.js +0 -176
- package/src/utility/validation/validate/cif-test.js +0 -105
- package/src/utility/validation/validate/cif.js +0 -44
- package/src/utility/validation/validate/cnp-test.js +0 -216
- package/src/utility/validation/validate/cnp.js +0 -261
- package/src/utility/validation/validate/email-test.js +0 -36
- package/src/utility/validation/validate/email.js +0 -6
- package/src/utility/validation/validate/index.js +0 -7
- package/webpack.config.js +0 -90
- package/x25.wiki/Account.md +0 -41
- package/x25.wiki/Company.md +0 -39
- package/x25.wiki/Header.md +0 -21
- package/x25.wiki/Home.md +0 -1
- package/x25.wiki/Inputs.md +0 -33
- package/x25.wiki/Messages.md +0 -27
- package/x25.wiki/Payment.md +0 -42
package/src/style/.sass-lint.yml
DELETED
|
@@ -1,84 +0,0 @@
|
|
|
1
|
-
options:
|
|
2
|
-
formatter: stylish
|
|
3
|
-
files:
|
|
4
|
-
include: '**/*.s+(a|c)ss'
|
|
5
|
-
rules:
|
|
6
|
-
# Extends
|
|
7
|
-
extends-before-mixins: 1
|
|
8
|
-
extends-before-declarations: 1
|
|
9
|
-
placeholder-in-extend: 1
|
|
10
|
-
|
|
11
|
-
# Mixins
|
|
12
|
-
mixins-before-declarations: 1
|
|
13
|
-
|
|
14
|
-
# Line Spacing
|
|
15
|
-
one-declaration-per-line: 1
|
|
16
|
-
empty-line-between-blocks: 0
|
|
17
|
-
single-line-per-selector: 1
|
|
18
|
-
|
|
19
|
-
# Disallows
|
|
20
|
-
no-color-keywords: 1
|
|
21
|
-
no-color-literals: 1
|
|
22
|
-
no-css-comments: 1
|
|
23
|
-
no-debug: 1
|
|
24
|
-
no-duplicate-properties: 1
|
|
25
|
-
no-empty-rulesets: 1
|
|
26
|
-
no-extends: 0
|
|
27
|
-
no-ids: 1
|
|
28
|
-
no-important: 0
|
|
29
|
-
no-invalid-hex: 1
|
|
30
|
-
no-mergeable-selectors: 1
|
|
31
|
-
no-misspelled-properties: 1
|
|
32
|
-
no-qualifying-elements: 1
|
|
33
|
-
no-trailing-whitespace: 0
|
|
34
|
-
no-trailing-zero: 1
|
|
35
|
-
no-transition-all: 1
|
|
36
|
-
no-url-protocols: 1
|
|
37
|
-
no-vendor-prefixes: 0
|
|
38
|
-
no-warn: 1
|
|
39
|
-
property-units: 0
|
|
40
|
-
|
|
41
|
-
# Nesting
|
|
42
|
-
force-attribute-nesting: 1
|
|
43
|
-
force-element-nesting: 1
|
|
44
|
-
force-pseudo-nesting: 1
|
|
45
|
-
|
|
46
|
-
# Name Formats
|
|
47
|
-
class-name-format: 1
|
|
48
|
-
function-name-format: 1
|
|
49
|
-
id-name-format: 0
|
|
50
|
-
mixin-name-format: 1
|
|
51
|
-
placeholder-name-format: 1
|
|
52
|
-
variable-name-format: 1
|
|
53
|
-
|
|
54
|
-
# Style Guide
|
|
55
|
-
bem-depth: 0
|
|
56
|
-
border-zero: 1
|
|
57
|
-
brace-style: 1
|
|
58
|
-
clean-import-paths: 1
|
|
59
|
-
empty-args: 1
|
|
60
|
-
hex-length: 1
|
|
61
|
-
hex-notation: 1
|
|
62
|
-
indentation: 0
|
|
63
|
-
leading-zero: 1
|
|
64
|
-
nesting-depth: 0
|
|
65
|
-
property-sort-order: 0
|
|
66
|
-
quotes: 1
|
|
67
|
-
shorthand-values: 1
|
|
68
|
-
url-quotes: 1
|
|
69
|
-
variable-for-property: 1
|
|
70
|
-
zero-unit: 1
|
|
71
|
-
|
|
72
|
-
# Inner Spacing
|
|
73
|
-
space-after-comma: 1
|
|
74
|
-
space-before-colon: 1
|
|
75
|
-
space-after-colon: 1
|
|
76
|
-
space-before-brace: 1
|
|
77
|
-
space-before-bang: 1
|
|
78
|
-
space-after-bang: 1
|
|
79
|
-
space-between-parens: 1
|
|
80
|
-
space-around-operator: 1
|
|
81
|
-
|
|
82
|
-
# Final Items
|
|
83
|
-
trailing-semicolon: 1
|
|
84
|
-
final-newline: 1
|
|
@@ -1,161 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"rules": {
|
|
3
|
-
"block-no-empty": true,
|
|
4
|
-
"color-no-invalid-hex": true,
|
|
5
|
-
"comment-no-empty": true,
|
|
6
|
-
"declaration-block-no-duplicate-properties": [
|
|
7
|
-
true,
|
|
8
|
-
{
|
|
9
|
-
"ignore": [
|
|
10
|
-
"consecutive-duplicates-with-different-values"
|
|
11
|
-
]
|
|
12
|
-
}
|
|
13
|
-
],
|
|
14
|
-
"declaration-block-no-shorthand-property-overrides": true,
|
|
15
|
-
"font-family-no-duplicate-names": true,
|
|
16
|
-
"font-family-no-missing-generic-family-keyword": true,
|
|
17
|
-
"function-calc-no-unspaced-operator": true,
|
|
18
|
-
"function-linear-gradient-no-nonstandard-direction": true,
|
|
19
|
-
"keyframe-declaration-no-important": true,
|
|
20
|
-
"media-feature-name-no-unknown": true,
|
|
21
|
-
"no-descending-specificity": true,
|
|
22
|
-
"no-duplicate-at-import-rules": true,
|
|
23
|
-
"no-duplicate-selectors": true,
|
|
24
|
-
"no-empty-source": true,
|
|
25
|
-
"no-extra-semicolons": true,
|
|
26
|
-
"no-invalid-double-slash-comments": true,
|
|
27
|
-
"property-no-unknown": true,
|
|
28
|
-
"selector-pseudo-class-no-unknown": true,
|
|
29
|
-
"selector-pseudo-element-no-unknown": true,
|
|
30
|
-
"selector-type-no-unknown": true,
|
|
31
|
-
"string-no-newline": true,
|
|
32
|
-
"unit-no-unknown": true,
|
|
33
|
-
"at-rule-empty-line-before": [
|
|
34
|
-
"always",
|
|
35
|
-
{
|
|
36
|
-
"except": [
|
|
37
|
-
"blockless-after-same-name-blockless",
|
|
38
|
-
"first-nested"
|
|
39
|
-
],
|
|
40
|
-
"ignore": [
|
|
41
|
-
"after-comment"
|
|
42
|
-
]
|
|
43
|
-
}
|
|
44
|
-
],
|
|
45
|
-
"at-rule-name-case": "lower",
|
|
46
|
-
"at-rule-name-space-after": "always-single-line",
|
|
47
|
-
"at-rule-semicolon-newline-after": "always",
|
|
48
|
-
"block-closing-brace-empty-line-before": "never",
|
|
49
|
-
"block-closing-brace-newline-after": "always",
|
|
50
|
-
"block-closing-brace-newline-before": "always-multi-line",
|
|
51
|
-
"block-closing-brace-space-before": "always-single-line",
|
|
52
|
-
"block-opening-brace-newline-after": "always-multi-line",
|
|
53
|
-
"block-opening-brace-space-after": "always-single-line",
|
|
54
|
-
"block-opening-brace-space-before": "always",
|
|
55
|
-
"color-hex-case": "lower",
|
|
56
|
-
"color-hex-length": "short",
|
|
57
|
-
"comment-empty-line-before": [
|
|
58
|
-
"always",
|
|
59
|
-
{
|
|
60
|
-
"except": [
|
|
61
|
-
"first-nested"
|
|
62
|
-
],
|
|
63
|
-
"ignore": [
|
|
64
|
-
"stylelint-commands"
|
|
65
|
-
]
|
|
66
|
-
}
|
|
67
|
-
],
|
|
68
|
-
"comment-whitespace-inside": "always",
|
|
69
|
-
"custom-property-empty-line-before": [
|
|
70
|
-
"always",
|
|
71
|
-
{
|
|
72
|
-
"except": [
|
|
73
|
-
"after-custom-property",
|
|
74
|
-
"first-nested"
|
|
75
|
-
],
|
|
76
|
-
"ignore": [
|
|
77
|
-
"after-comment",
|
|
78
|
-
"inside-single-line-block"
|
|
79
|
-
]
|
|
80
|
-
}
|
|
81
|
-
],
|
|
82
|
-
"declaration-bang-space-after": "never",
|
|
83
|
-
"declaration-bang-space-before": "always",
|
|
84
|
-
"declaration-block-semicolon-newline-after": "always-multi-line",
|
|
85
|
-
"declaration-block-semicolon-space-after": "always-single-line",
|
|
86
|
-
"declaration-block-semicolon-space-before": "never",
|
|
87
|
-
"declaration-block-single-line-max-declarations": 1,
|
|
88
|
-
"declaration-block-trailing-semicolon": "always",
|
|
89
|
-
"declaration-colon-newline-after": "always-multi-line",
|
|
90
|
-
"declaration-colon-space-after": "always-single-line",
|
|
91
|
-
"declaration-colon-space-before": "never",
|
|
92
|
-
"declaration-empty-line-before": [
|
|
93
|
-
"always",
|
|
94
|
-
{
|
|
95
|
-
"except": [
|
|
96
|
-
"after-declaration",
|
|
97
|
-
"first-nested"
|
|
98
|
-
],
|
|
99
|
-
"ignore": [
|
|
100
|
-
"after-comment",
|
|
101
|
-
"inside-single-line-block"
|
|
102
|
-
]
|
|
103
|
-
}
|
|
104
|
-
],
|
|
105
|
-
"function-comma-newline-after": "always-multi-line",
|
|
106
|
-
"function-comma-space-after": "always-single-line",
|
|
107
|
-
"function-comma-space-before": "never",
|
|
108
|
-
"function-max-empty-lines": 0,
|
|
109
|
-
"function-name-case": "lower",
|
|
110
|
-
"function-parentheses-newline-inside": "always-multi-line",
|
|
111
|
-
"function-parentheses-space-inside": "never-single-line",
|
|
112
|
-
"function-whitespace-after": "always",
|
|
113
|
-
"indentation": 2,
|
|
114
|
-
"length-zero-no-unit": true,
|
|
115
|
-
"max-empty-lines": 1,
|
|
116
|
-
"media-feature-colon-space-after": "always",
|
|
117
|
-
"media-feature-colon-space-before": "never",
|
|
118
|
-
"media-feature-name-case": "lower",
|
|
119
|
-
"media-feature-parentheses-space-inside": "never",
|
|
120
|
-
"media-feature-range-operator-space-after": "always",
|
|
121
|
-
"media-feature-range-operator-space-before": "always",
|
|
122
|
-
"media-query-list-comma-newline-after": "always-multi-line",
|
|
123
|
-
"media-query-list-comma-space-after": "always-single-line",
|
|
124
|
-
"media-query-list-comma-space-before": "never",
|
|
125
|
-
"no-eol-whitespace": true,
|
|
126
|
-
"no-missing-end-of-source-newline": true,
|
|
127
|
-
"number-leading-zero": "always",
|
|
128
|
-
"number-no-trailing-zeros": true,
|
|
129
|
-
"property-case": "lower",
|
|
130
|
-
"rule-empty-line-before": [
|
|
131
|
-
"always-multi-line",
|
|
132
|
-
{
|
|
133
|
-
"except": [
|
|
134
|
-
"first-nested"
|
|
135
|
-
],
|
|
136
|
-
"ignore": [
|
|
137
|
-
"after-comment"
|
|
138
|
-
]
|
|
139
|
-
}
|
|
140
|
-
],
|
|
141
|
-
"selector-attribute-brackets-space-inside": "never",
|
|
142
|
-
"selector-attribute-operator-space-after": "never",
|
|
143
|
-
"selector-attribute-operator-space-before": "never",
|
|
144
|
-
"selector-combinator-space-after": "always",
|
|
145
|
-
"selector-combinator-space-before": "always",
|
|
146
|
-
"selector-descendant-combinator-no-non-space": true,
|
|
147
|
-
"selector-list-comma-newline-after": "always",
|
|
148
|
-
"selector-list-comma-space-before": "never",
|
|
149
|
-
"selector-max-empty-lines": 0,
|
|
150
|
-
"selector-pseudo-class-case": "lower",
|
|
151
|
-
"selector-pseudo-class-parentheses-space-inside": "never",
|
|
152
|
-
"selector-pseudo-element-case": "lower",
|
|
153
|
-
"selector-pseudo-element-colon-notation": "double",
|
|
154
|
-
"selector-type-case": "lower",
|
|
155
|
-
"unit-case": "lower",
|
|
156
|
-
"value-list-comma-newline-after": "always-multi-line",
|
|
157
|
-
"value-list-comma-space-after": "always-single-line",
|
|
158
|
-
"value-list-comma-space-before": "never",
|
|
159
|
-
"value-list-max-empty-lines": 0
|
|
160
|
-
}
|
|
161
|
-
}
|
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
$bombay: #b1b2b3;
|
|
2
|
-
$general-font: 'Lucida Grande', 'Segoe UI', Ubuntu, Cantarell, sans-serif;
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
%fancy-text {
|
|
6
|
-
-webkit-user-select: none;
|
|
7
|
-
box-sizing: border-box;
|
|
8
|
-
color: $bombay;
|
|
9
|
-
cursor: default;
|
|
10
|
-
font-family: $general-font;
|
|
11
|
-
font-weight: bold;
|
|
12
|
-
list-style-image: none;
|
|
13
|
-
list-style-position: outside;
|
|
14
|
-
list-style-type: none;
|
|
15
|
-
opacity: 1;
|
|
16
|
-
text-align: center;
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
.text-fancy {
|
|
20
|
-
@extend %fancy-text;
|
|
21
|
-
margin-top: 5px;
|
|
22
|
-
color: gray;
|
|
23
|
-
font-size: 20px;
|
|
24
|
-
font-weight: 500;
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
.fancy-text {
|
|
28
|
-
@extend %fancy-text;
|
|
29
|
-
font-size: 31px;
|
|
30
|
-
line-height: 34px;
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
.fancy-text-sm {
|
|
34
|
-
@extend %fancy-text;
|
|
35
|
-
font-size: 16px;
|
|
36
|
-
line-height: 23.5px;
|
|
37
|
-
}
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
|
|
4
|
-
color: #e0e0e0 !important;
|
|
5
|
-
}
|
|
6
|
-
::-moz-placeholder { /* Firefox 19+ */
|
|
7
|
-
color: #e0e0e0 !important;
|
|
8
|
-
}
|
|
9
|
-
:-ms-input-placeholder { /* IE 10+ */
|
|
10
|
-
color: #e0e0e0 !important;
|
|
11
|
-
}
|
|
12
|
-
:-moz-placeholder { /* Firefox 18- */
|
|
13
|
-
color: #e0e0e0 !important;
|
|
14
|
-
}
|
|
@@ -1,69 +0,0 @@
|
|
|
1
|
-
.truncate {
|
|
2
|
-
display:inline-block;
|
|
3
|
-
width:100%;
|
|
4
|
-
white-space: nowrap;
|
|
5
|
-
overflow: hidden;
|
|
6
|
-
text-overflow: ellipsis;
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
@media screen and (min-width: 1201px) {
|
|
11
|
-
.brand-wrapper {
|
|
12
|
-
width: 500px;
|
|
13
|
-
}
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
@media screen and (min-width: 980px) and (max-width: 1200px) {
|
|
17
|
-
.brand-wrapper {
|
|
18
|
-
width: 350px;
|
|
19
|
-
}
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
@media screen and (min-width: 850px) and (max-width: 979px) {
|
|
23
|
-
.brand-wrapper {
|
|
24
|
-
width: 200px;
|
|
25
|
-
}
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
@media screen and (min-width: 798px) and (max-width: 849px) {
|
|
29
|
-
.brand-wrapper {
|
|
30
|
-
width: 100px;
|
|
31
|
-
}
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
@media screen and (min-width: 765px) and (max-width: 797px) {
|
|
35
|
-
.brand-wrapper {
|
|
36
|
-
width: 200px;
|
|
37
|
-
}
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
@media screen and (min-width: 580px) and (max-width: 764px) {
|
|
41
|
-
.brand-wrapper {
|
|
42
|
-
width: 400px;
|
|
43
|
-
}
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
@media screen and (min-width: 401px) and (max-width: 579px) {
|
|
47
|
-
.brand-wrapper {
|
|
48
|
-
width: 240px;
|
|
49
|
-
}
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
@media screen and (min-width: 350px) and (max-width: 400px) {
|
|
53
|
-
.brand-wrapper {
|
|
54
|
-
width: 230px;
|
|
55
|
-
}
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
@media screen and (max-width: 349px) {
|
|
59
|
-
.brand-wrapper {
|
|
60
|
-
width: 100px;
|
|
61
|
-
}
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
@media only screen and (min-device-width: 770px) {
|
|
66
|
-
.search-bar {
|
|
67
|
-
width: 220px !important;
|
|
68
|
-
}
|
|
69
|
-
}
|
package/src/style/_inputs.scss
DELETED
package/src/style/_minimal.scss
DELETED
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
.min-height-form {
|
|
2
|
-
min-height: 20rem;
|
|
3
|
-
}
|
|
4
|
-
|
|
5
|
-
.min-300 {
|
|
6
|
-
min-width: 300px;
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
.min-200 {
|
|
10
|
-
min-width: 200px;
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
.min-150 {
|
|
14
|
-
min-width: 150px;
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
.min-100 {
|
|
18
|
-
min-width: 100px;
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
.min-80 {
|
|
22
|
-
min-width: 80px;
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
.min-50 {
|
|
26
|
-
min-width: 50px;
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
.width-13rem {
|
|
30
|
-
max-width: 25rem;
|
|
31
|
-
}
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
$white: #fff;
|
|
2
|
-
$gallery: #eee;
|
|
3
|
-
$boston-blue: #428bca;
|
|
4
|
-
|
|
5
|
-
.navbar {
|
|
6
|
-
.nav-toggler {
|
|
7
|
-
background: #292b2c;
|
|
8
|
-
}
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
.main {
|
|
12
|
-
padding: 20px;
|
|
13
|
-
|
|
14
|
-
.page-header {
|
|
15
|
-
margin-top: 0;
|
|
16
|
-
}
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
@media (min-width: 768px) {
|
|
20
|
-
.main {
|
|
21
|
-
padding-right: 40px;
|
|
22
|
-
padding-left: 40px;
|
|
23
|
-
}
|
|
24
|
-
}
|
package/src/style/_others.scss
DELETED
|
@@ -1,79 +0,0 @@
|
|
|
1
|
-
$bombay: #b1b2b3;
|
|
2
|
-
$mine-shaft: #333;
|
|
3
|
-
$cod-gray: #1b1b1b;
|
|
4
|
-
$white: #fff;
|
|
5
|
-
|
|
6
|
-
$general-font: 'Lucida Grande', 'Segoe UI', Ubuntu, Cantarell, sans-serif;
|
|
7
|
-
|
|
8
|
-
.sidework-logo {
|
|
9
|
-
.first-char {
|
|
10
|
-
color: #ff007b;
|
|
11
|
-
font-size: 32px;
|
|
12
|
-
font-weight: 500;
|
|
13
|
-
}
|
|
14
|
-
.color {
|
|
15
|
-
color: #ff007b;
|
|
16
|
-
}
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
input::-webkit-outer-spin-button,
|
|
20
|
-
input::-webkit-inner-spin-button {
|
|
21
|
-
/* display: none; <- Crashes Chrome on hover */
|
|
22
|
-
-webkit-appearance: none;
|
|
23
|
-
margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
.no-hover {
|
|
27
|
-
text-decoration: none !important;
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
.cursor-pointer {
|
|
32
|
-
cursor: pointer;
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
.no-wrap {
|
|
36
|
-
white-space: nowrap;
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
.content {
|
|
40
|
-
margin-bottom: 3rem;
|
|
41
|
-
margin-top: 10px;
|
|
42
|
-
margin-left: 10px;
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
.hr-sm {
|
|
46
|
-
margin-top: .5rem;
|
|
47
|
-
margin-bottom: .5rem;
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
%fancy-text {
|
|
51
|
-
-webkit-user-select: none;
|
|
52
|
-
box-sizing: border-box;
|
|
53
|
-
color: $bombay;
|
|
54
|
-
cursor: default;
|
|
55
|
-
font-family: $general-font;
|
|
56
|
-
font-weight: bold;
|
|
57
|
-
list-style-image: none;
|
|
58
|
-
list-style-position: outside;
|
|
59
|
-
list-style-type: none;
|
|
60
|
-
opacity: 1;
|
|
61
|
-
text-align: center;
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
.fancy-text {
|
|
65
|
-
@extend %fancy-text;
|
|
66
|
-
font-size: 31px;
|
|
67
|
-
line-height: 34px;
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
.fancy-text-sm {
|
|
71
|
-
@extend %fancy-text;
|
|
72
|
-
font-size: 16px;
|
|
73
|
-
line-height: 23.5px;
|
|
74
|
-
}
|
|
75
|
-
|
|
76
|
-
// to fix
|
|
77
|
-
.invalid-feedback {
|
|
78
|
-
display: block !important;
|
|
79
|
-
}
|
package/src/style/index.scss
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
.sidebar-item-enter {
|
|
2
|
-
opacity: 0.01;
|
|
3
|
-
height: 10px;
|
|
4
|
-
}
|
|
5
|
-
|
|
6
|
-
.sidebar-item-enter.sidebar-item-enter-active {
|
|
7
|
-
opacity: 1;
|
|
8
|
-
height: 100%;
|
|
9
|
-
transition: all 350ms ease;
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
.sidebar-item-leave {
|
|
13
|
-
opacity: 0;
|
|
14
|
-
height: 0;
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
.sidebar-item-leave.sidebar-item-leave-active {
|
|
18
|
-
opacity: 0.01;
|
|
19
|
-
height: 0;
|
|
20
|
-
transition: all 200ms ease;
|
|
21
|
-
}
|
|
@@ -1,77 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
.dark-theme {
|
|
3
|
-
.sidebar-wrapper {
|
|
4
|
-
background: #31353d;
|
|
5
|
-
|
|
6
|
-
.sidebar-brand {
|
|
7
|
-
i {
|
|
8
|
-
color: #b8bfce;
|
|
9
|
-
}
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
.sidebar-footer {
|
|
13
|
-
background: #3a3f48;
|
|
14
|
-
box-shadow: 0 -1px 5px #282c33;
|
|
15
|
-
border-top: 1px solid #464a52;
|
|
16
|
-
|
|
17
|
-
a {
|
|
18
|
-
color: #818896;
|
|
19
|
-
|
|
20
|
-
i {
|
|
21
|
-
color: #b8bfce;
|
|
22
|
-
}
|
|
23
|
-
}
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
.sidebar-menu {
|
|
27
|
-
ul li {
|
|
28
|
-
a {
|
|
29
|
-
color: #818896;
|
|
30
|
-
|
|
31
|
-
i {
|
|
32
|
-
background: #3a3f48;
|
|
33
|
-
}
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
&:hover > a {
|
|
37
|
-
color: #b8bfce;
|
|
38
|
-
|
|
39
|
-
i {
|
|
40
|
-
color: #16c7ff;
|
|
41
|
-
text-shadow: 0 0 10px rgba(22, 199, 255, 0.5);
|
|
42
|
-
}
|
|
43
|
-
}
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
border-top: 1px solid #3a3f48;
|
|
47
|
-
|
|
48
|
-
.one-page a.active i,
|
|
49
|
-
.sidebar-dropdown.active a i {
|
|
50
|
-
color: #16c7ff;
|
|
51
|
-
text-shadow: 0 0 10px rgba(22, 199, 255, 0.5);
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
.sidebar-dropdown div {
|
|
55
|
-
background: #3a3f48;
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
.header-menu span {
|
|
59
|
-
color: #6c7b88;
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
.sidebar-dropdown.active > a {
|
|
63
|
-
color: #b8bfce;
|
|
64
|
-
}
|
|
65
|
-
}
|
|
66
|
-
|
|
67
|
-
.sidebar-dropdown .sidebar-submenu li a:hover::before {
|
|
68
|
-
color: #16c7ff;
|
|
69
|
-
text-shadow: 0 0 10px rgba(22, 199, 255, 0.5);
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
.one-page a.active,
|
|
73
|
-
.sidebar-dropdown .sidebar-submenu li a.active {
|
|
74
|
-
color: #bdbdbd;
|
|
75
|
-
}
|
|
76
|
-
}
|
|
77
|
-
}
|
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
::-webkit-scrollbar {
|
|
2
|
-
width: 5px;
|
|
3
|
-
height: 7px;
|
|
4
|
-
}
|
|
5
|
-
|
|
6
|
-
::-webkit-scrollbar-corner {
|
|
7
|
-
background: transparent;
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
::-webkit-scrollbar-button {
|
|
11
|
-
width: 0;
|
|
12
|
-
height: 0;
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
::-webkit-scrollbar-thumb {
|
|
16
|
-
background: #c7c7c7;
|
|
17
|
-
border: 0 none #fff;
|
|
18
|
-
border-radius: 10px;
|
|
19
|
-
|
|
20
|
-
&:hover,
|
|
21
|
-
&:active {
|
|
22
|
-
background: #525965;
|
|
23
|
-
}
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
// stylelint-disable-next-line
|
|
27
|
-
::-webkit-scrollbar-track {
|
|
28
|
-
background: transparent;
|
|
29
|
-
border: 0 none #fff;
|
|
30
|
-
border-radius: 50px;
|
|
31
|
-
border-radius: 10px;
|
|
32
|
-
|
|
33
|
-
&:hover,
|
|
34
|
-
&:active {
|
|
35
|
-
background: transparent;
|
|
36
|
-
}
|
|
37
|
-
}
|