@dev-tcloud/tcloud-ui 0.1.3 → 0.1.4
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/esm2020/lib/_modules/tcloud-ui-accordion/components/tcloud-ui-accordion-body/tcloud-ui-accordion-body.component.mjs +3 -3
- package/esm2020/lib/_modules/tcloud-ui-accordion/components/tcloud-ui-accordion-title/tcloud-ui-accordion-title.component.mjs +3 -3
- package/esm2020/lib/_modules/tcloud-ui-accordion/tcloud-ui-accordion.component.mjs +3 -3
- package/esm2020/lib/_modules/tcloud-ui-choice-issues/tcloud-ui-choice-issues.component.mjs +3 -3
- package/esm2020/lib/_modules/tcloud-ui-data-list/tcloud-ui-data-list-option/tcloud-ui-data-list-option.component.mjs +3 -3
- package/esm2020/lib/_modules/tcloud-ui-data-list/tcloud-ui-data-list.component.mjs +3 -3
- package/esm2020/lib/_modules/tcloud-ui-datepicker/tcloud-ui-datepicker.component.mjs +3 -3
- package/esm2020/lib/_modules/tcloud-ui-datepicker-time/tcloud-ui-datepicker-time.component.mjs +3 -3
- package/esm2020/lib/_modules/tcloud-ui-filters/components/range-date/range-date.component.mjs +3 -3
- package/esm2020/lib/_modules/tcloud-ui-filters/tcloud-ui-filters.component.mjs +3 -3
- package/esm2020/lib/_modules/tcloud-ui-input-search/tcloud-ui-input-search.component.mjs +3 -3
- package/esm2020/lib/_modules/tcloud-ui-line-step-circle/tcloud-ui-line-step-circle.component.mjs +3 -3
- package/esm2020/lib/_modules/tcloud-ui-linha-logo/tcloud-ui-linha-logo.component.mjs +3 -3
- package/esm2020/lib/_modules/tcloud-ui-modal/components/tcloud-ui-modal-body/tcloud-ui-modal-body.component.mjs +3 -3
- package/esm2020/lib/_modules/tcloud-ui-modal/components/tcloud-ui-modal-footer/tcloud-ui-modal-footer.component.mjs +3 -3
- package/esm2020/lib/_modules/tcloud-ui-modal/components/tcloud-ui-modal-header/tcloud-ui-modal-header.component.mjs +3 -3
- package/esm2020/lib/_modules/tcloud-ui-modal/tcloud-ui-modal.component.mjs +3 -3
- package/esm2020/lib/_modules/tcloud-ui-multi-input/tcloud-ui-multi-input.component.mjs +3 -3
- package/esm2020/lib/_modules/tcloud-ui-multi-select/tcloud-ui-multi-select.component.mjs +3 -3
- package/esm2020/lib/_modules/tcloud-ui-multiples-values/tcloud-ui-multiples-values.component.mjs +3 -3
- package/esm2020/lib/_modules/tcloud-ui-not-found/tcloud-ui-not-found.component.mjs +3 -3
- package/esm2020/lib/_modules/tcloud-ui-number-step/tcloud-ui-number-step.component.mjs +3 -3
- package/esm2020/lib/_modules/tcloud-ui-scroll-box/tcloud-ui-scroll-box.component.mjs +3 -3
- package/esm2020/lib/_modules/tcloud-ui-tab-menu/components/tcloud-ui-tab-content/tcloud-ui-tab-content.component.mjs +3 -3
- package/esm2020/lib/_modules/tcloud-ui-tab-menu/components/tcloud-ui-tab-head/tcloud-ui-tab-head.component.mjs +3 -3
- package/esm2020/lib/_modules/tcloud-ui-tab-menu/components/tcloud-ui-tab-subtitle/tcloud-ui-tab-subtitle.component.mjs +3 -3
- package/esm2020/lib/_modules/tcloud-ui-tab-menu/components/tcloud-ui-tab-title/tcloud-ui-tab-title.component.mjs +3 -3
- package/esm2020/lib/_modules/tcloud-ui-tab-menu/tcloud-ui-tab-menu.component.mjs +3 -3
- package/esm2020/lib/_modules/tcloud-ui-welcome/tcloud-ui-welcome.component.mjs +9 -3
- package/fesm2015/dev-tcloud-tcloud-ui.mjs +64 -58
- package/fesm2015/dev-tcloud-tcloud-ui.mjs.map +1 -1
- package/fesm2020/dev-tcloud-tcloud-ui.mjs +64 -58
- package/fesm2020/dev-tcloud-tcloud-ui.mjs.map +1 -1
- package/lib/_modules/tcloud-ui-welcome/tcloud-ui-welcome.component.d.ts +5 -1
- package/package.json +1 -1
- package/scss/components/custom/table.scss +1 -1
- package/scss/tcloud/custom/buttons.scss +37 -43
- package/scss/tcloud/custom/card.scss +3 -3
- package/scss/tcloud/custom/colors.scss +4 -9
- package/scss/tcloud/custom/forms.scss +3 -3
- package/scss/tcloud/custom/mixins.scss +15 -11
- package/scss/tcloud/custom/tcloud-prime.scss +673 -738
- package/scss/tcloud/custom/tcloud-standard.scss +2 -2
- package/scss/tcloud/custom/variables.scss +0 -20
- package/scss/tcloud/styles.scss +3 -2
- package/scss/tcloud/custom/colors-prime.scss +0 -15
- package/scss/tcloud/custom/colors-standard.scss +0 -22
|
@@ -45,7 +45,7 @@ body {
|
|
|
45
45
|
}
|
|
46
46
|
|
|
47
47
|
.card.shadow {
|
|
48
|
-
box-shadow: 2px 3px 20px rgba(var(--black), .1)
|
|
48
|
+
box-shadow: 2px 3px 20px rgba(var(--black), .1)!important;
|
|
49
49
|
}
|
|
50
50
|
|
|
51
51
|
.card.card-shadow {
|
|
@@ -58,7 +58,7 @@ body {
|
|
|
58
58
|
|
|
59
59
|
.card-shadow {
|
|
60
60
|
background: var(--white);
|
|
61
|
-
border-radius:
|
|
61
|
+
border-radius: 10px;
|
|
62
62
|
box-shadow: 2px 3px 20px rgba(var(--black), .1);
|
|
63
63
|
padding: 20px;
|
|
64
64
|
margin-bottom: 20px;
|
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
@import './colors-standard.scss';
|
|
2
|
-
@import './colors-prime.scss';
|
|
3
1
|
@import './colors.scss';
|
|
4
2
|
|
|
5
3
|
|
|
@@ -57,21 +55,3 @@ $nav-text-color: #fafafa;
|
|
|
57
55
|
@function getColorWithOpacity($color, $opacity) {
|
|
58
56
|
@return rgba($color, $opacity);
|
|
59
57
|
}
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
//Cores baseadas no UI-Kit do Adobe XD
|
|
64
|
-
$primary: #37B6C4;
|
|
65
|
-
$primary-hover: #037F9C;
|
|
66
|
-
$tc-white-1: #FFF;
|
|
67
|
-
$tc-white-2: #F1F1F1;
|
|
68
|
-
$grey-1: #D5CCC3;
|
|
69
|
-
$grey-2: #B9B9B9;
|
|
70
|
-
$grey-3: #8A817B;
|
|
71
|
-
$grey-4: #707070;
|
|
72
|
-
$grey-5: #484440;
|
|
73
|
-
|
|
74
|
-
$success: #1E8E3E;
|
|
75
|
-
$warning: #ED9C2E;
|
|
76
|
-
$danger: #D93025;
|
|
77
|
-
$complimentary: #039BE5;
|
package/scss/tcloud/styles.scss
CHANGED
|
@@ -2,10 +2,11 @@
|
|
|
2
2
|
@import 'custom/mixins.scss';
|
|
3
3
|
|
|
4
4
|
@import 'custom/buttons.scss';
|
|
5
|
+
|
|
5
6
|
@import 'custom/card.scss';
|
|
6
7
|
@import 'custom/forms.scss';
|
|
7
8
|
@import 'custom/layout.scss';
|
|
8
9
|
@import 'custom/text.scss';
|
|
9
10
|
|
|
10
|
-
@import 'custom/tcloud-
|
|
11
|
-
@import 'custom/tcloud-
|
|
11
|
+
@import 'custom/tcloud-standard.scss';
|
|
12
|
+
@import 'custom/tcloud-prime.scss';
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
$prime-primary: #6B48FF;
|
|
3
|
-
$prime-primary2: #0897E9;
|
|
4
|
-
$prime-complemt: #0ADBE3;
|
|
5
|
-
$prime-complemt-2: #5B35FC;
|
|
6
|
-
$prime-second: #FEAC0E;
|
|
7
|
-
$prime-second2: #EEEEEE;
|
|
8
|
-
$prime-white: #fff;
|
|
9
|
-
$prime-black: #363636;
|
|
10
|
-
$prime-gray-10: #f9f9f9;
|
|
11
|
-
$prime-gray-50: #EEEEEE;
|
|
12
|
-
$prime-gray-100: #C7C7C7;
|
|
13
|
-
$prime-red: #cb0000;
|
|
14
|
-
$prime-green: #1E8E3E;
|
|
15
|
-
*/
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
$tc-primary: #37b6c4;
|
|
3
|
-
$tc-primary2: #136e92;
|
|
4
|
-
$tc-complemt-3: #136e92;
|
|
5
|
-
$tc-gray-700: #363636;
|
|
6
|
-
$tc-gray-600: #4e4944;
|
|
7
|
-
$tc-gray-500: #8a817b;
|
|
8
|
-
$tc-gray-400: #cabfb5;
|
|
9
|
-
$tc-gray-300: #d5ccc3;
|
|
10
|
-
$tc-gray-200: #e5e3e1;
|
|
11
|
-
$tc-gray-100: #f1f1f1;
|
|
12
|
-
$tc-gray-50: #f8f9fa;
|
|
13
|
-
$tc-black: #000;
|
|
14
|
-
$tc-white: #fff;
|
|
15
|
-
$tc-blue: #0897E9;
|
|
16
|
-
$tc-dark: #363636;
|
|
17
|
-
$tc-orange: orange;
|
|
18
|
-
$tc-warning: orange;
|
|
19
|
-
$tc-danger: #D93025;
|
|
20
|
-
$tc-success :#1E8E3E;
|
|
21
|
-
$tc-complete :#039BE5;
|
|
22
|
-
*/
|