keevo-components 1.8.495 → 1.8.496

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 (22) hide show
  1. package/package.json +1 -1
  2. package/src/lib/components/keevo-components-styles.scss +0 -44
  3. package/src/lib/components/keevo-components.module.ts +2 -5
  4. package/src/lib/components/kv-carousel/kv-carousel.component.html +1 -0
  5. package/src/lib/components/kv-layout/dropdown-master/dropdown-master.component.html +1 -10
  6. package/src/lib/components/kv-layout/dropdown-master/dropdown-master.component.scss +0 -18
  7. package/src/lib/components/kv-layout/kv-layout.module.ts +9 -18
  8. package/src/lib/components/kv-layout/layout/kv-layout.component.html +387 -349
  9. package/src/lib/components/kv-layout/layout/kv-layout.component.scss +230 -356
  10. package/src/lib/components/kv-layout/layout/kv-layout.component.ts +32 -104
  11. package/src/lib/components/kv-pick-list/kv-pick-list.component.html +2 -0
  12. package/src/lib/components/kv-pick-list/kv-pick-list.component.ts +11 -0
  13. package/src/public-api.ts +1 -8
  14. package/src/lib/components/kv-icon/kv-icon.component.html +0 -15
  15. package/src/lib/components/kv-icon/kv-icon.component.scss +0 -48
  16. package/src/lib/components/kv-icon/kv-icon.component.spec.ts +0 -23
  17. package/src/lib/components/kv-icon/kv-icon.component.ts +0 -20
  18. package/src/lib/components/kv-icon/kv-icon.module.ts +0 -18
  19. package/src/lib/components/kv-layout/top-icons/top-icons.component.html +0 -14
  20. package/src/lib/components/kv-layout/top-icons/top-icons.component.scss +0 -7
  21. package/src/lib/components/kv-layout/top-icons/top-icons.component.spec.ts +0 -23
  22. package/src/lib/components/kv-layout/top-icons/top-icons.component.ts +0 -25
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "keevo-components",
3
- "version": "1.8.495",
3
+ "version": "1.8.496",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^17.3.8",
6
6
  "@angular/core": "^17.3.8",
@@ -2,61 +2,17 @@
2
2
  @import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
3
3
  @import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
4
4
 
5
- @import url("https://cdn.jsdelivr.net/npm/@tabler/icons-webfont@latest/dist/tabler-icons.min.css");
6
- // @import url("./styles/tabler-icons.css");
7
-
8
5
  $font-family-keevo: "Inter var", "Inter", sans-serif;
9
6
 
10
7
  // Importar outras fontes
11
8
  @import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0");
12
9
 
13
10
  ::ng-deep :root {
14
- --kv-color-system: 10,58,120;
15
- --kv-background-system: 248,250,253;
16
- --kv-background-card: 255,255,255;
17
-
18
11
  --kv-primary-color: 41, 185, 45;
19
12
  --kv-secondary-color: 0, 37, 66;
20
13
  --kv-tertiary-color: 165, 165, 165;
21
14
  }
22
15
 
23
- ::ng-deep .padrao {
24
- --kv-color-system: 10,58,120;
25
- --kv-background-system: 248,250,253;
26
- --kv-background-card: 255,255,255;
27
- }
28
-
29
- ::ng-deep .theme-keevocenter {
30
- --kv-color-system: 88,25,153;
31
- --kv-background-system: 248,250,253;
32
- --kv-background-card: 255,255,255;
33
- }
34
-
35
- ::ng-deep .theme-holos {
36
- --kv-color-system: 241,90,36;
37
- --kv-background-system: 240,240,240;
38
- --kv-background-card: 2255,255,255;
39
- }
40
-
41
-
42
-
43
- .system-color{
44
- color: rgb(var(--kv-color-system), 1);
45
- }
46
-
47
- .bg-system-100{
48
- background: rgb(var(--kv-color-system), 1);
49
- }
50
- .bg-system-75{
51
- background: rgb(var(--kv-color-system), .75);
52
- }
53
- .bg-system-50{
54
- background: rgb(var(--kv-color-system), .5);
55
- }
56
- .bg-system-25{
57
- background: rgb(var(--kv-color-system), .25);
58
- }
59
-
60
16
  .material-symbols-outlined {
61
17
  font-family: "Material Symbols Outlined" !important;
62
18
  }
@@ -28,7 +28,6 @@ import { KvButtonModule } from './kv-button/kv-button.module';
28
28
  import { KvFilterFieldsetModule } from './kv-filter-fieldset/kv-filter-fieldset.module';
29
29
  import { KvFileViewerNovoModule } from './kv-file-viewer-novo/kv-file-viewer-novo.module';
30
30
  import { KvCardSelectionModule } from './kv-card-selection/kv-card-selection.module';
31
- import { KvIconModule } from './kv-icon/kv-icon.module';
32
31
 
33
32
  @NgModule({
34
33
  declarations: [],
@@ -59,8 +58,7 @@ import { KvIconModule } from './kv-icon/kv-icon.module';
59
58
  KvFileViewerModule,
60
59
  KvFileViewerNovoModule,
61
60
  KvFilterFieldsetModule,
62
- KvCardSelectionModule,
63
- KvIconModule,
61
+ KvCardSelectionModule
64
62
  ],
65
63
  exports: [
66
64
  KvAvatarModule,
@@ -90,8 +88,7 @@ import { KvIconModule } from './kv-icon/kv-icon.module';
90
88
  KvFileViewerModule,
91
89
  KvFilterFieldsetModule,
92
90
  KvFileViewerNovoModule,
93
- KvCardSelectionModule,
94
- KvIconModule,
91
+ KvCardSelectionModule
95
92
  ],
96
93
  })
97
94
  export class KeevoComponentsModule {}
@@ -18,6 +18,7 @@
18
18
  <img
19
19
  [src]="banner.img"
20
20
  class="w-full border-round-banner"
21
+ [style.cursor]="banner.link ? 'pointer' : 'default'"
21
22
  [style.height.px]="heightComputed()"
22
23
  (click)="navigateToLink(banner.link)"
23
24
  />
@@ -1,14 +1,5 @@
1
- <div [formGroup]="formGroup" class="flex flex-row input-container">
2
- <div class="flex flex-row align-items-center gap-1 px-1 bg-white logo-input">
3
- <kv-icon
4
- icon="rosette-discount-check"
5
- />
6
- <span class="font-medium">
7
- Licença
8
- </span>
9
- </div>
1
+ <div [formGroup]="formGroup">
10
2
  <kv-dropdown
11
- class="kv-dropdown"
12
3
  componentId="idmaster"
13
4
  optionLabel="idmasternome"
14
5
  optionValue="idmaster"
@@ -1,18 +0,0 @@
1
- .input-container{
2
-
3
- }
4
-
5
- .logo-input{
6
- border-top: 1px solid #d1d5db;
7
- border-left: 1px solid #d1d5db;
8
- border-bottom: 1px solid #d1d5db;
9
- border-radius: 6px 0 0 6px;
10
- }
11
-
12
- .kv-dropdown{
13
- border-radius: 0 !important;
14
- }
15
-
16
- ::ng-deep .p-dropdown{
17
- border-radius: 0 6px 6px 0 !important;
18
- }
@@ -13,32 +13,23 @@ import { KvLayoutComponent } from './layout/kv-layout.component';
13
13
  import { PipesModule } from "../../api/pipes/pipes.module";
14
14
  import { PrimeNgModule } from '../../api/modules/primeng.module';
15
15
  import { DropdownMasterComponent } from './dropdown-master/dropdown-master.component';
16
- import { KvIconComponent } from '../kv-icon/kv-icon.component';
17
- import { TopIconsComponent } from "./top-icons/top-icons.component";
18
- import { KvIconModule } from '../kv-icon/kv-icon.module';
19
- import { KvButtonModule } from "../kv-button/kv-button.module";
20
16
 
21
17
  @NgModule({
22
18
  declarations: [
23
19
  DropdownMasterComponent,
24
- KvLayoutComponent,
20
+ KvLayoutComponent
25
21
  ],
26
22
  exports: [
27
23
  KvLayoutComponent
28
24
  ],
29
25
  imports: [
30
- CommonModule,
31
- FormsModule,
32
- KvButtonsModule,
33
- KvButtonModule,
34
- KvIconModule,
35
- KvInputsModule,
36
- PipesModule,
37
- PrimeNgModule,
38
- ReactiveFormsModule,
39
- TopIconsComponent,
40
- KvButtonModule,
41
- PrimeNgModule
42
- ]
26
+ CommonModule,
27
+ FormsModule,
28
+ KvButtonsModule,
29
+ KvInputsModule,
30
+ PipesModule,
31
+ PrimeNgModule,
32
+ ReactiveFormsModule,
33
+ ]
43
34
  })
44
35
  export class KvLayoutModule { }