@dev-tcloud/tcloud-ui 5.1.1 → 5.1.3

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.
Files changed (20) hide show
  1. package/fesm2022/dev-tcloud-tcloud-ui.mjs +266 -98
  2. package/fesm2022/dev-tcloud-tcloud-ui.mjs.map +1 -1
  3. package/lib/revitalizacao/components/tc-rev-card-accordion/tc-rev-card-accordion.component.d.ts +16 -0
  4. package/lib/revitalizacao/components/tc-rev-card-title/tc-rev-card-title.component.d.ts +1 -1
  5. package/lib/revitalizacao/components/tc-rev-checkbox/tc-rev-checkbox.directive.d.ts +6 -0
  6. package/lib/revitalizacao/components/tc-rev-components.module.d.ts +27 -22
  7. package/lib/revitalizacao/components/tc-rev-progress-status-bar/tc-rev-progress-status-bar.component.d.ts +22 -0
  8. package/lib/revitalizacao/components/tc-rev-radio/tc-rev-radio.directive.d.ts +6 -0
  9. package/lib/revitalizacao/components/tc-rev-wizard-steps/tc-rev-wizard-steps.component.d.ts +13 -0
  10. package/lib/revitalizacao/components/tc-sub-navbar/component/tc-sub-navbar-item/tc-sub-navbar-item.component.d.ts +1 -1
  11. package/package.json +1 -1
  12. package/public-api.d.ts +6 -1
  13. package/scss/tcloud-revitalizacao/components/_tc-rev-button.scss +3 -3
  14. package/scss/tcloud-revitalizacao/components/_tc-rev-checkbox.scss +103 -0
  15. package/scss/tcloud-revitalizacao/components/_tc-rev-input-control.scss +3 -283
  16. package/scss/tcloud-revitalizacao/components/_tc-rev-radio.scss +64 -0
  17. package/scss/tcloud-revitalizacao/components/_tc-rev-search-input.scss +49 -0
  18. package/scss/tcloud-revitalizacao/components/_tc-rev-slide-toggle.scss +60 -0
  19. package/scss/tcloud-revitalizacao/components/_tc-rev-tab-item.scss +1 -1
  20. package/scss/tcloud-revitalizacao/tc-rev-styles.scss +5 -1
@@ -0,0 +1,64 @@
1
+ // RESET RADIO INPUT START
2
+ input[type='radio'].tc-rev-input-control, input[type='radio'].tc-rev-radio {
3
+ position: initial;
4
+ margin: initial;
5
+
6
+ &:after,
7
+ &:before {
8
+ content: '';
9
+ position: initial;
10
+ border-radius: initial;
11
+ background: initial;
12
+ z-index: initial;
13
+ }
14
+
15
+ &:after {
16
+ height: initial;
17
+ width: initial;
18
+ left: initial;
19
+ margin: initial;
20
+ border: initial;
21
+ }
22
+
23
+ &:checked:before {
24
+ background: initial;
25
+ height: initial;
26
+ width: initial;
27
+ margin: initial;
28
+ z-index: initial;
29
+ }
30
+ }
31
+ // RESET RADIO INPUT END
32
+
33
+ input[type='radio'].tc-rev-input-control, input[type='radio'].tc-rev-radio {
34
+ appearance: none;
35
+ -webkit-appearance: none;
36
+ -moz-appearance: none;
37
+ width: var(--size-20);
38
+ height: var(--size-20);
39
+ min-width: var(--size-20);
40
+ min-height: var(--size-20);
41
+ border: 1px solid var(--c-neutral-700);
42
+ border-radius: var(--bor-radius-rounded);
43
+ display: flex;
44
+ align-items: center;
45
+ justify-content: center;
46
+ position: relative;
47
+ cursor: pointer;
48
+
49
+ &:checked {
50
+ border: 1px solid var(--c-primary-500);
51
+ }
52
+
53
+ &:checked::before {
54
+ content: '';
55
+ background-color: var(--c-primary-500);
56
+ border-radius: var(--bor-radius-rounded);
57
+ left: 50%;
58
+ height: var(--size-14);
59
+ position: absolute;
60
+ top: 50%;
61
+ transform: translate(-50%, -50%);
62
+ width: var(--size-14);
63
+ }
64
+ }
@@ -0,0 +1,49 @@
1
+ .tc-rev-search-input-container {
2
+ position: relative;
3
+ max-height: var(--size-40);
4
+ min-height: var(--size-40);
5
+ height: var(--size-40);
6
+ min-width: 7.5rem;
7
+
8
+ .tc-rev-search-input-control {
9
+ border: 1px solid var(--c-neutral-400);
10
+ border-radius: var(--bor-radius-pill);
11
+ color: var(--c-neutral-700);
12
+ display: inline-block;
13
+ font-family: var(--f-family);
14
+ font-size: var(--f-size-14);
15
+ line-height: var(--l-height-20);
16
+ outline: none;
17
+ height: var(--size-40);
18
+ transition: 200ms ease;
19
+ padding: 0 var(--size-16);
20
+ position: absolute;
21
+ top: 0;
22
+ left: 0;
23
+ padding-right: var(--size-44);
24
+ width: 100%;
25
+ z-index: 1;
26
+
27
+ &:hover,
28
+ &:focus {
29
+ border-color: var(--c-primary-500);
30
+ }
31
+ }
32
+
33
+ .tc-rev-search-input-btn {
34
+ cursor: pointer;
35
+ display: block;
36
+ position: absolute;
37
+ right: 4px;
38
+ top: 4px;
39
+ z-index: 2;
40
+ font-size: var(--f-size-16);
41
+ background-color: var(--c-primary-500);
42
+ border-radius: var(--bor-radius-rounded);
43
+ border: none;
44
+ width: var(--size-32);
45
+ height: var(--size-32);
46
+ color: var(--c-neutral-50);
47
+ font-size: var(--f-size-16);
48
+ }
49
+ }
@@ -0,0 +1,60 @@
1
+ // RESET SLIDE TOGGLE START
2
+ input.tc-rev-slide-toggle {
3
+ appearance: none;
4
+ -webkit-appearance: none;
5
+ -moz-appearance: none;
6
+ background: none;
7
+ border: none;
8
+ box-shadow: none;
9
+ margin: 0;
10
+ outline: none;
11
+ padding: 0;
12
+
13
+ &::after {
14
+ content: initial;
15
+ }
16
+
17
+ &:checked:before {
18
+ left: initial;
19
+ top: 2px;
20
+ width: 20px;
21
+ height: 20px;
22
+ border-radius: var(--bor-radius-rounded);
23
+ transform: initial;
24
+ z-index: initial;
25
+ }
26
+ }
27
+ // RESET SLIDE TOGGLE END
28
+
29
+ input.tc-rev-slide-toggle {
30
+ width: 40px;
31
+ height: 24px;
32
+ border-radius: var(--bor-radius-pill);
33
+ background-color: var(--c-neutral-300);
34
+ cursor: pointer;
35
+ position: relative;
36
+ transition: background-color 0.2s ease;
37
+ display: inline-block;
38
+ }
39
+
40
+ input.tc-rev-slide-toggle::before {
41
+ content: '';
42
+ position: absolute;
43
+ top: 50%;
44
+ left: 2px;
45
+ transform: translateY(-50%);
46
+ width: 20px;
47
+ height: 20px;
48
+ border-radius: var(--bor-radius-rounded);
49
+ background-color: var(--c-neutral-50);
50
+ transition: left 0.2s ease, right 0.2s ease;
51
+ }
52
+
53
+ input.tc-rev-slide-toggle:checked {
54
+ background-color: var(--c-primary-500);
55
+ }
56
+
57
+ input.tc-rev-slide-toggle:checked::before {
58
+ left: auto;
59
+ right: 2px;
60
+ }
@@ -4,7 +4,7 @@
4
4
  background-color: var(--c-neutral-50);
5
5
  border: var(--bor-size-1) solid var(--c-neutral-400);
6
6
  border-radius: var(--bor-radius-8);
7
- color: var(--c-neutral-900);
7
+ color: var(--c-neutral-700);
8
8
  cursor: pointer;
9
9
  display: inline-flex;
10
10
  font-family: var(--f-family);
@@ -7,7 +7,11 @@
7
7
  @use './components/tc-rev-ag-grid-table';
8
8
  @use './components/tc-rev-table';
9
9
  @use './components/tc-rev-button';
10
+ @use './components/tc-rev-checkbox';
10
11
  @use './components/tc-rev-input-control';
12
+ @use './components/tc-rev-radio';
13
+ @use './components/tc-rev-search-input';
14
+ @use './components/tc-rev-slide-toggle';
11
15
  @use './components/tc-rev-tab-item';
12
16
  @use './components/tc-rev-util';
13
17
  @use './_tc-rev-opacity';
@@ -23,5 +27,5 @@
23
27
  // Purpose (e.g., “welding,” “polishing,” “sports”)
24
28
 
25
29
  .power-bi-container .report-container{
26
- height: 1200px;;
30
+ height: 1200px;
27
31
  }