@salesmind-ai/design-system 0.1.9 → 0.1.10
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/core/index.cjs +23 -6
- package/dist/core/index.cjs.map +1 -1
- package/dist/core/index.css +147 -2
- package/dist/core/index.css.map +1 -1
- package/dist/core/index.d.cts +12 -0
- package/dist/core/index.d.ts +12 -0
- package/dist/core/index.js +23 -6
- package/dist/core/index.js.map +1 -1
- package/dist/index.cjs +37 -7
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +416 -2
- package/dist/index.css.map +1 -1
- package/dist/index.d.cts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +37 -7
- package/dist/index.js.map +1 -1
- package/dist/marketing/index.cjs +13 -2
- package/dist/marketing/index.cjs.map +1 -1
- package/dist/marketing/index.css +286 -2
- package/dist/marketing/index.css.map +1 -1
- package/dist/marketing/index.js +13 -2
- package/dist/marketing/index.js.map +1 -1
- package/dist/styles/styles.css +40 -14
- package/package.json +1 -1
package/dist/core/index.css
CHANGED
|
@@ -3814,6 +3814,11 @@
|
|
|
3814
3814
|
color: var(--text-primary);
|
|
3815
3815
|
line-height: var(--line-height-normal);
|
|
3816
3816
|
}
|
|
3817
|
+
.ds-command__input:focus,
|
|
3818
|
+
.ds-command__input:focus-visible {
|
|
3819
|
+
outline: none;
|
|
3820
|
+
box-shadow: none;
|
|
3821
|
+
}
|
|
3817
3822
|
.ds-command__input::placeholder {
|
|
3818
3823
|
color: var(--text-secondary);
|
|
3819
3824
|
}
|
|
@@ -4366,12 +4371,152 @@
|
|
|
4366
4371
|
.ds-grid {
|
|
4367
4372
|
display: grid;
|
|
4368
4373
|
}
|
|
4374
|
+
.ds-grid--cols-1 {
|
|
4375
|
+
grid-template-columns: repeat(1, 1fr);
|
|
4376
|
+
}
|
|
4377
|
+
.ds-grid--cols-2 {
|
|
4378
|
+
grid-template-columns: repeat(1, 1fr);
|
|
4379
|
+
}
|
|
4380
|
+
@media (min-width: 640px) {
|
|
4381
|
+
.ds-grid--cols-2 {
|
|
4382
|
+
grid-template-columns: repeat(2, 1fr);
|
|
4383
|
+
}
|
|
4384
|
+
}
|
|
4385
|
+
.ds-grid--cols-3 {
|
|
4386
|
+
grid-template-columns: repeat(1, 1fr);
|
|
4387
|
+
}
|
|
4388
|
+
@media (min-width: 640px) {
|
|
4389
|
+
.ds-grid--cols-3 {
|
|
4390
|
+
grid-template-columns: repeat(2, 1fr);
|
|
4391
|
+
}
|
|
4392
|
+
}
|
|
4393
|
+
@media (min-width: 1024px) {
|
|
4394
|
+
.ds-grid--cols-3 {
|
|
4395
|
+
grid-template-columns: repeat(3, 1fr);
|
|
4396
|
+
}
|
|
4397
|
+
}
|
|
4398
|
+
.ds-grid--cols-4 {
|
|
4399
|
+
grid-template-columns: repeat(1, 1fr);
|
|
4400
|
+
}
|
|
4401
|
+
@media (min-width: 640px) {
|
|
4402
|
+
.ds-grid--cols-4 {
|
|
4403
|
+
grid-template-columns: repeat(2, 1fr);
|
|
4404
|
+
}
|
|
4405
|
+
}
|
|
4406
|
+
@media (min-width: 1024px) {
|
|
4407
|
+
.ds-grid--cols-4 {
|
|
4408
|
+
grid-template-columns: repeat(4, 1fr);
|
|
4409
|
+
}
|
|
4410
|
+
}
|
|
4411
|
+
.ds-grid--cols-5 {
|
|
4412
|
+
grid-template-columns: repeat(1, 1fr);
|
|
4413
|
+
}
|
|
4414
|
+
@media (min-width: 640px) {
|
|
4415
|
+
.ds-grid--cols-5 {
|
|
4416
|
+
grid-template-columns: repeat(2, 1fr);
|
|
4417
|
+
}
|
|
4418
|
+
}
|
|
4419
|
+
@media (min-width: 768px) {
|
|
4420
|
+
.ds-grid--cols-5 {
|
|
4421
|
+
grid-template-columns: repeat(3, 1fr);
|
|
4422
|
+
}
|
|
4423
|
+
}
|
|
4424
|
+
@media (min-width: 1280px) {
|
|
4425
|
+
.ds-grid--cols-5 {
|
|
4426
|
+
grid-template-columns: repeat(5, 1fr);
|
|
4427
|
+
}
|
|
4428
|
+
}
|
|
4429
|
+
.ds-grid--cols-6 {
|
|
4430
|
+
grid-template-columns: repeat(1, 1fr);
|
|
4431
|
+
}
|
|
4432
|
+
@media (min-width: 640px) {
|
|
4433
|
+
.ds-grid--cols-6 {
|
|
4434
|
+
grid-template-columns: repeat(2, 1fr);
|
|
4435
|
+
}
|
|
4436
|
+
}
|
|
4437
|
+
@media (min-width: 768px) {
|
|
4438
|
+
.ds-grid--cols-6 {
|
|
4439
|
+
grid-template-columns: repeat(3, 1fr);
|
|
4440
|
+
}
|
|
4441
|
+
}
|
|
4442
|
+
@media (min-width: 1280px) {
|
|
4443
|
+
.ds-grid--cols-6 {
|
|
4444
|
+
grid-template-columns: repeat(6, 1fr);
|
|
4445
|
+
}
|
|
4446
|
+
}
|
|
4447
|
+
@media (min-width: 1920px) {
|
|
4448
|
+
.ds-grid--cols-3:not(.ds-grid--fixed) {
|
|
4449
|
+
grid-template-columns: repeat(4, 1fr);
|
|
4450
|
+
}
|
|
4451
|
+
}
|
|
4452
|
+
@media (min-width: 2560px) {
|
|
4453
|
+
.ds-grid--cols-2:not(.ds-grid--fixed) {
|
|
4454
|
+
grid-template-columns: repeat(3, 1fr);
|
|
4455
|
+
}
|
|
4456
|
+
.ds-grid--cols-3:not(.ds-grid--fixed) {
|
|
4457
|
+
grid-template-columns: repeat(4, 1fr);
|
|
4458
|
+
}
|
|
4459
|
+
.ds-grid--cols-4:not(.ds-grid--fixed) {
|
|
4460
|
+
grid-template-columns: repeat(5, 1fr);
|
|
4461
|
+
}
|
|
4462
|
+
.ds-grid--cols-5:not(.ds-grid--fixed) {
|
|
4463
|
+
grid-template-columns: repeat(6, 1fr);
|
|
4464
|
+
}
|
|
4465
|
+
.ds-grid--cols-6:not(.ds-grid--fixed) {
|
|
4466
|
+
grid-template-columns: repeat(8, 1fr);
|
|
4467
|
+
}
|
|
4468
|
+
}
|
|
4469
|
+
@media (min-width: 3840px) {
|
|
4470
|
+
.ds-grid--cols-2:not(.ds-grid--fixed) {
|
|
4471
|
+
grid-template-columns: repeat(3, 1fr);
|
|
4472
|
+
}
|
|
4473
|
+
.ds-grid--cols-3:not(.ds-grid--fixed) {
|
|
4474
|
+
grid-template-columns: repeat(5, 1fr);
|
|
4475
|
+
}
|
|
4476
|
+
.ds-grid--cols-4:not(.ds-grid--fixed) {
|
|
4477
|
+
grid-template-columns: repeat(6, 1fr);
|
|
4478
|
+
}
|
|
4479
|
+
.ds-grid--cols-5:not(.ds-grid--fixed) {
|
|
4480
|
+
grid-template-columns: repeat(8, 1fr);
|
|
4481
|
+
}
|
|
4482
|
+
.ds-grid--cols-6:not(.ds-grid--fixed) {
|
|
4483
|
+
grid-template-columns: repeat(10, 1fr);
|
|
4484
|
+
}
|
|
4485
|
+
}
|
|
4486
|
+
:root {
|
|
4487
|
+
--container-default-max: 1200px;
|
|
4488
|
+
}
|
|
4489
|
+
@media (min-width: 1537px) {
|
|
4490
|
+
:root {
|
|
4491
|
+
--container-default-max: 1400px;
|
|
4492
|
+
}
|
|
4493
|
+
}
|
|
4494
|
+
@media (min-width: 1921px) {
|
|
4495
|
+
:root {
|
|
4496
|
+
--container-default-max: 1600px;
|
|
4497
|
+
}
|
|
4498
|
+
}
|
|
4499
|
+
@media (min-width: 2561px) {
|
|
4500
|
+
:root {
|
|
4501
|
+
--container-default-max: 1920px;
|
|
4502
|
+
}
|
|
4503
|
+
}
|
|
4369
4504
|
.ds-container {
|
|
4370
4505
|
width: 100%;
|
|
4371
4506
|
margin-left: auto;
|
|
4372
4507
|
margin-right: auto;
|
|
4373
|
-
padding-left: var(--space-4);
|
|
4374
|
-
padding-right: var(--space-4);
|
|
4508
|
+
padding-left: var(--container-padding-x, var(--space-4));
|
|
4509
|
+
padding-right: var(--container-padding-x, var(--space-4));
|
|
4510
|
+
}
|
|
4511
|
+
@media (min-width: 1537px) {
|
|
4512
|
+
.ds-container {
|
|
4513
|
+
--container-padding-x: var(--space-6);
|
|
4514
|
+
}
|
|
4515
|
+
}
|
|
4516
|
+
@media (min-width: 2561px) {
|
|
4517
|
+
.ds-container {
|
|
4518
|
+
--container-padding-x: var(--space-8);
|
|
4519
|
+
}
|
|
4375
4520
|
}
|
|
4376
4521
|
.ds-section-block {
|
|
4377
4522
|
position: relative;
|