carriera-intern-components 1.1.45 → 1.1.47
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/app/components/dispatch-dropdown/dispatch-dropdown.component.d.ts +35 -0
- package/app/components/dispatch-dropdown/interfaces/dispatch-dropdown-config.interface.d.ts +4 -0
- package/app/components/dispatch-dropdown/interfaces/dispatch-dropdown-option.interface.d.ts +4 -0
- package/app/components/dispatch-dropdown/interfaces/index.d.ts +2 -0
- package/app/components/dispatch-dropdown/pipes/dispatch-search-filter.pipe.d.ts +8 -0
- package/app/utils/constants/input-character-sets.constants.d.ts +3 -3
- package/fesm2022/carriera-intern-components.mjs +291 -154
- package/fesm2022/carriera-intern-components.mjs.map +1 -1
- package/package.json +1 -1
- package/public/assets/icons/interaction/cai-drag.svg +3 -0
- package/public/assets/json/icons.json +4 -0
- package/public/pdfjs/pdf.worker.min.mjs +4 -6
- package/public-api.d.ts +2 -0
- package/src/styles/popover.scss +101 -3
package/public-api.d.ts
CHANGED
|
@@ -19,3 +19,5 @@ export * from './app/components/toolbar-dropdown/interval-dropdown.component';
|
|
|
19
19
|
export * from './app/components/toolbar-dropdown/interfaces';
|
|
20
20
|
export * from './app/components/sticky-scrollbar/sticky-scrollbar.component';
|
|
21
21
|
export * from './app/components/sticky-scrollbar/enums';
|
|
22
|
+
export * from './app/components/dispatch-dropdown/dispatch-dropdown.component';
|
|
23
|
+
export * from './app/components/dispatch-dropdown/interfaces';
|
package/src/styles/popover.scss
CHANGED
|
@@ -1,9 +1,19 @@
|
|
|
1
1
|
@import "variables";
|
|
2
2
|
|
|
3
3
|
.tagPopover {
|
|
4
|
-
font-family:
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
font-family:
|
|
5
|
+
"Montserrat",
|
|
6
|
+
ui-sans-serif,
|
|
7
|
+
system-ui,
|
|
8
|
+
-apple-system,
|
|
9
|
+
BlinkMacSystemFont,
|
|
10
|
+
"Segoe UI",
|
|
11
|
+
Roboto,
|
|
12
|
+
Helvetica,
|
|
13
|
+
Arial,
|
|
14
|
+
sans-serif,
|
|
15
|
+
"Apple Color Emoji",
|
|
16
|
+
"Segoe UI Emoji" !important;
|
|
7
17
|
--bs-body-bg: #2f2f2f !important;
|
|
8
18
|
border: none !important;
|
|
9
19
|
|
|
@@ -58,3 +68,91 @@
|
|
|
58
68
|
white-space: normal !important;
|
|
59
69
|
}
|
|
60
70
|
}
|
|
71
|
+
|
|
72
|
+
[data-popper-placement^="top-start"] .dropdown-menu.dispatch-dropdown-menu {
|
|
73
|
+
margin-bottom: -2px;
|
|
74
|
+
padding-bottom: 2px !important;
|
|
75
|
+
border-radius: 3px 3px 0 0;
|
|
76
|
+
|
|
77
|
+
// Left inverted corner
|
|
78
|
+
&::before {
|
|
79
|
+
content: "";
|
|
80
|
+
position: absolute;
|
|
81
|
+
bottom: -5px;
|
|
82
|
+
left: 0px;
|
|
83
|
+
width: 3px;
|
|
84
|
+
height: 3px;
|
|
85
|
+
background: radial-gradient(
|
|
86
|
+
circle at 100% 100%,
|
|
87
|
+
transparent 3px,
|
|
88
|
+
$color-black-500 3px
|
|
89
|
+
);
|
|
90
|
+
pointer-events: none;
|
|
91
|
+
user-select: none;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
// Right inverted corner
|
|
95
|
+
&::after {
|
|
96
|
+
content: "";
|
|
97
|
+
position: absolute;
|
|
98
|
+
bottom: -5px;
|
|
99
|
+
right: 0px;
|
|
100
|
+
width: 3px;
|
|
101
|
+
height: 3px;
|
|
102
|
+
background: radial-gradient(
|
|
103
|
+
circle at 0 100%,
|
|
104
|
+
transparent 3px,
|
|
105
|
+
$color-black-500 3px
|
|
106
|
+
);
|
|
107
|
+
pointer-events: none;
|
|
108
|
+
user-select: none;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
.dropdown-menu-separator {
|
|
112
|
+
bottom: -4px;
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
[data-popper-placement^="bottom-start"] .dropdown-menu.dispatch-dropdown-menu {
|
|
117
|
+
margin-top: -2px;
|
|
118
|
+
padding-top: 2px !important;
|
|
119
|
+
border-radius: 0 0 3px 3px;
|
|
120
|
+
|
|
121
|
+
// Left inverted corner
|
|
122
|
+
&::before {
|
|
123
|
+
content: "";
|
|
124
|
+
position: absolute;
|
|
125
|
+
top: -5px;
|
|
126
|
+
left: 0px;
|
|
127
|
+
width: 3px;
|
|
128
|
+
height: 3px;
|
|
129
|
+
background: radial-gradient(
|
|
130
|
+
circle at 100% 0,
|
|
131
|
+
transparent 3px,
|
|
132
|
+
$color-black-500 3px
|
|
133
|
+
);
|
|
134
|
+
pointer-events: none;
|
|
135
|
+
user-select: none;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
// Right inverted corner
|
|
139
|
+
&::after {
|
|
140
|
+
content: "";
|
|
141
|
+
position: absolute;
|
|
142
|
+
top: -5px;
|
|
143
|
+
right: 0px;
|
|
144
|
+
width: 3px;
|
|
145
|
+
height: 3px;
|
|
146
|
+
background: radial-gradient(
|
|
147
|
+
circle at 0 0,
|
|
148
|
+
transparent 3px,
|
|
149
|
+
$color-black-500 3px
|
|
150
|
+
);
|
|
151
|
+
pointer-events: none;
|
|
152
|
+
user-select: none;
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
.dropdown-menu-separator {
|
|
156
|
+
top: -2px;
|
|
157
|
+
}
|
|
158
|
+
}
|