@gyramais/gyra-design 0.2.0 → 0.2.2
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/dist/components/Card/Card.d.ts +8 -1
- package/dist/components/Card/index.js +6 -6
- package/dist/components/Card/index.js.map +1 -1
- package/dist/components/Email/index.js +2 -0
- package/dist/components/Email/index.js.map +1 -0
- package/dist/components/Filter/index.js +6 -6
- package/dist/components/Filter/index.js.map +1 -1
- package/dist/components/FloatingCard/index.js +7 -7
- package/dist/components/FloatingCard/index.js.map +1 -1
- package/dist/components/Input/index.js +1 -1
- package/dist/components/Input/index.js.map +1 -1
- package/dist/components/MultiSelectPicker/MultiSelectPicker.d.ts +3 -0
- package/dist/components/MultiSelectPicker/index.js +1 -1
- package/dist/components/MultiSelectPicker/index.js.map +1 -1
- package/dist/components/SelectTree/index.js +1 -1
- package/dist/components/SelectTree/index.js.map +1 -1
- package/dist/index.css +36 -0
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -920,6 +920,9 @@ video {
|
|
|
920
920
|
--tw-text-opacity: 1;
|
|
921
921
|
color: rgb(59 57 64 / var(--tw-text-opacity, 1));
|
|
922
922
|
}
|
|
923
|
+
.text-\[var\(--color-text-secondary\)\] {
|
|
924
|
+
color: var(--color-text-secondary);
|
|
925
|
+
}
|
|
923
926
|
.text-\[var\(--primary-button-color\)\] {
|
|
924
927
|
color: var(--primary-button-color);
|
|
925
928
|
}
|
|
@@ -4314,6 +4317,23 @@ h6 {
|
|
|
4314
4317
|
display: flex;
|
|
4315
4318
|
flex-direction: column;
|
|
4316
4319
|
}
|
|
4320
|
+
/* Variante com mídia (ícone/badge): mídia à esquerda, texto à direita. */
|
|
4321
|
+
.gyramais-card .gyramais-card-header-left.with-media {
|
|
4322
|
+
flex-direction: row;
|
|
4323
|
+
align-items: center;
|
|
4324
|
+
gap: 0.75rem;
|
|
4325
|
+
}
|
|
4326
|
+
.gyramais-card .gyramais-card-header-media {
|
|
4327
|
+
display: flex;
|
|
4328
|
+
flex-shrink: 0;
|
|
4329
|
+
align-items: center;
|
|
4330
|
+
justify-content: center;
|
|
4331
|
+
}
|
|
4332
|
+
.gyramais-card .gyramais-card-header-text {
|
|
4333
|
+
display: flex;
|
|
4334
|
+
min-width: 0px;
|
|
4335
|
+
flex-direction: column;
|
|
4336
|
+
}
|
|
4317
4337
|
.gyramais-card:not(.gyramais-card-disabled)
|
|
4318
4338
|
.gyramais-card-header-left.with-collapse {
|
|
4319
4339
|
cursor: pointer;
|
|
@@ -9206,6 +9226,22 @@ h6 {
|
|
|
9206
9226
|
color: var(--color-text-tertiary);
|
|
9207
9227
|
}
|
|
9208
9228
|
|
|
9229
|
+
/* ── Group (categorias: Cargos, Pessoas, ...) ─────────────────────── */
|
|
9230
|
+
.gyramais-multi-select-picker-group + .gyramais-multi-select-picker-group {
|
|
9231
|
+
margin-top: 2px;
|
|
9232
|
+
}
|
|
9233
|
+
.gyramais-multi-select-picker-group-head {
|
|
9234
|
+
padding-left: 14px;
|
|
9235
|
+
padding-right: 14px;
|
|
9236
|
+
padding-top: 10px;
|
|
9237
|
+
padding-bottom: 4px;
|
|
9238
|
+
font-size: 10.5px;
|
|
9239
|
+
font-weight: 700;
|
|
9240
|
+
text-transform: uppercase;
|
|
9241
|
+
letter-spacing: 0.07em;
|
|
9242
|
+
color: var(--color-text-tertiary);
|
|
9243
|
+
}
|
|
9244
|
+
|
|
9209
9245
|
/* ── Footer overrides ─────────────────────────────────────────────── */
|
|
9210
9246
|
.gyramais-multi-select-picker-count {
|
|
9211
9247
|
font-family: var(--font-mono);
|