@snmt-react-ui/async-select 1.7.0 → 1.7.1
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/async-select.js +258 -188
- package/package.json +3 -3
package/dist/async-select.js
CHANGED
|
@@ -3270,6 +3270,39 @@ const i2 = ({
|
|
|
3270
3270
|
}
|
|
3271
3271
|
)
|
|
3272
3272
|
}
|
|
3273
|
+
), I5 = ({
|
|
3274
|
+
width: o = 24,
|
|
3275
|
+
height: i = 24,
|
|
3276
|
+
color: e = "#131314",
|
|
3277
|
+
className: l,
|
|
3278
|
+
onClick: r
|
|
3279
|
+
}) => /* @__PURE__ */ c(
|
|
3280
|
+
"svg",
|
|
3281
|
+
{
|
|
3282
|
+
width: o,
|
|
3283
|
+
height: i,
|
|
3284
|
+
viewBox: "0 0 24 24",
|
|
3285
|
+
fill: "none",
|
|
3286
|
+
className: l,
|
|
3287
|
+
onClick: r,
|
|
3288
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3289
|
+
children: [
|
|
3290
|
+
/* @__PURE__ */ t(
|
|
3291
|
+
"path",
|
|
3292
|
+
{
|
|
3293
|
+
d: "M19.2598 20V4C19.2598 3.58579 19.5956 3.25 20.0098 3.25C20.424 3.25 20.7598 3.58579 20.7598 4V20C20.7598 20.4142 20.424 20.75 20.0098 20.75C19.5956 20.75 19.2598 20.4142 19.2598 20Z",
|
|
3294
|
+
fill: e
|
|
3295
|
+
}
|
|
3296
|
+
),
|
|
3297
|
+
/* @__PURE__ */ t(
|
|
3298
|
+
"path",
|
|
3299
|
+
{
|
|
3300
|
+
d: "M9.96973 5.46972C10.2443 5.19512 10.6791 5.17765 10.9736 5.41796L11.0303 5.46972L17.5303 11.9697L17.582 12.0264C17.8063 12.3013 17.8063 12.6987 17.582 12.9736L17.5303 13.0303L11.0303 19.5303C10.7374 19.8232 10.2626 19.8232 9.96973 19.5303C9.67683 19.2374 9.67683 18.7626 9.96973 18.4697L15.1895 13.25H4C3.58579 13.25 3.25 12.9142 3.25 12.5C3.25 12.0858 3.58579 11.75 4 11.75H15.1895L9.96973 6.53027L9.91797 6.47363C9.67766 6.17905 9.69512 5.74433 9.96973 5.46972Z",
|
|
3301
|
+
fill: e
|
|
3302
|
+
}
|
|
3303
|
+
)
|
|
3304
|
+
]
|
|
3305
|
+
}
|
|
3273
3306
|
), X = ({
|
|
3274
3307
|
name: o,
|
|
3275
3308
|
width: i,
|
|
@@ -3528,16 +3561,18 @@ const i2 = ({
|
|
|
3528
3561
|
return V5({ width: i, height: e, color: h, className: n, onClick: s });
|
|
3529
3562
|
case "projects":
|
|
3530
3563
|
return Z5({ width: i, height: e, color: h, className: n, onClick: s });
|
|
3564
|
+
case "exit":
|
|
3565
|
+
return I5({ width: i, height: e, color: h, className: n, onClick: s });
|
|
3531
3566
|
default:
|
|
3532
3567
|
return /* @__PURE__ */ t(K, { children: "No Icon provided" });
|
|
3533
3568
|
}
|
|
3534
3569
|
})() });
|
|
3535
|
-
}, { Title:
|
|
3570
|
+
}, { Title: W5, Text: B5 } = V1, A5 = {
|
|
3536
3571
|
h1: 1,
|
|
3537
3572
|
h2: 2,
|
|
3538
3573
|
h3: 3,
|
|
3539
3574
|
h4: 4
|
|
3540
|
-
},
|
|
3575
|
+
}, G5 = s1(
|
|
3541
3576
|
({
|
|
3542
3577
|
align: o = "inherit",
|
|
3543
3578
|
variant: i = "body1",
|
|
@@ -3550,17 +3585,17 @@ const i2 = ({
|
|
|
3550
3585
|
const p = i === "h1" || i === "h2" || i === "h3" || i === "h4";
|
|
3551
3586
|
let g = `snmt-typography snmt-typography-${i}`;
|
|
3552
3587
|
return o && o !== "inherit" && (g += ` snmt-typography-align-${o}`), a && (g += " collapsed"), p ? /* @__PURE__ */ t(
|
|
3553
|
-
|
|
3588
|
+
W5,
|
|
3554
3589
|
{
|
|
3555
3590
|
className: g,
|
|
3556
3591
|
style: { color: e, whiteSpace: k },
|
|
3557
3592
|
onClick: r,
|
|
3558
|
-
level:
|
|
3593
|
+
level: A5[i],
|
|
3559
3594
|
ref: n,
|
|
3560
3595
|
children: l
|
|
3561
3596
|
}
|
|
3562
3597
|
) : /* @__PURE__ */ t(
|
|
3563
|
-
|
|
3598
|
+
B5,
|
|
3564
3599
|
{
|
|
3565
3600
|
className: g,
|
|
3566
3601
|
style: { color: e, whiteSpace: k },
|
|
@@ -3577,7 +3612,7 @@ const m1 = P({
|
|
|
3577
3612
|
theme: "light"
|
|
3578
3613
|
});
|
|
3579
3614
|
m1.Provider;
|
|
3580
|
-
const
|
|
3615
|
+
const y5 = ({
|
|
3581
3616
|
width: o = 20,
|
|
3582
3617
|
height: i = 20,
|
|
3583
3618
|
color: e = "#001E52",
|
|
@@ -3604,7 +3639,7 @@ const G5 = ({
|
|
|
3604
3639
|
}
|
|
3605
3640
|
)
|
|
3606
3641
|
}
|
|
3607
|
-
),
|
|
3642
|
+
), D5 = ({
|
|
3608
3643
|
width: o = 20,
|
|
3609
3644
|
height: i = 20,
|
|
3610
3645
|
color: e = "#001E52",
|
|
@@ -3631,7 +3666,7 @@ const G5 = ({
|
|
|
3631
3666
|
}
|
|
3632
3667
|
)
|
|
3633
3668
|
}
|
|
3634
|
-
),
|
|
3669
|
+
), j5 = ({
|
|
3635
3670
|
width: o = 16,
|
|
3636
3671
|
height: i = 16,
|
|
3637
3672
|
color: e = "#001E52",
|
|
@@ -3659,7 +3694,7 @@ const G5 = ({
|
|
|
3659
3694
|
)
|
|
3660
3695
|
]
|
|
3661
3696
|
}
|
|
3662
|
-
),
|
|
3697
|
+
), T5 = ({
|
|
3663
3698
|
width: o = 20,
|
|
3664
3699
|
height: i = 20,
|
|
3665
3700
|
color: e = "#001E52",
|
|
@@ -3694,7 +3729,7 @@ const G5 = ({
|
|
|
3694
3729
|
)
|
|
3695
3730
|
]
|
|
3696
3731
|
}
|
|
3697
|
-
),
|
|
3732
|
+
), Y5 = ({
|
|
3698
3733
|
width: o = 18,
|
|
3699
3734
|
height: i = 18,
|
|
3700
3735
|
color: e = "#001E52",
|
|
@@ -3733,7 +3768,7 @@ const G5 = ({
|
|
|
3733
3768
|
)
|
|
3734
3769
|
]
|
|
3735
3770
|
}
|
|
3736
|
-
),
|
|
3771
|
+
), b5 = ({
|
|
3737
3772
|
width: o = 20,
|
|
3738
3773
|
height: i = 20,
|
|
3739
3774
|
color: e = "#001E52",
|
|
@@ -3759,7 +3794,7 @@ const G5 = ({
|
|
|
3759
3794
|
}
|
|
3760
3795
|
)
|
|
3761
3796
|
}
|
|
3762
|
-
),
|
|
3797
|
+
), K5 = ({
|
|
3763
3798
|
width: o = 20,
|
|
3764
3799
|
height: i = 20,
|
|
3765
3800
|
color: e = "#001E52",
|
|
@@ -3780,7 +3815,7 @@ const G5 = ({
|
|
|
3780
3815
|
/* @__PURE__ */ t("path", { d: "M16 4L4 16", stroke: e, strokeWidth: "1.5", strokeLinecap: "round" })
|
|
3781
3816
|
]
|
|
3782
3817
|
}
|
|
3783
|
-
),
|
|
3818
|
+
), O5 = ({
|
|
3784
3819
|
width: o = 20,
|
|
3785
3820
|
height: i = 20,
|
|
3786
3821
|
color: e = "#001E52",
|
|
@@ -3812,7 +3847,7 @@ const G5 = ({
|
|
|
3812
3847
|
)
|
|
3813
3848
|
]
|
|
3814
3849
|
}
|
|
3815
|
-
),
|
|
3850
|
+
), F5 = ({
|
|
3816
3851
|
width: o = 20,
|
|
3817
3852
|
height: i = 20,
|
|
3818
3853
|
color: e = "#001E52",
|
|
@@ -3866,7 +3901,7 @@ const G5 = ({
|
|
|
3866
3901
|
)
|
|
3867
3902
|
]
|
|
3868
3903
|
}
|
|
3869
|
-
),
|
|
3904
|
+
), S5 = ({
|
|
3870
3905
|
width: o = 20,
|
|
3871
3906
|
height: i = 20,
|
|
3872
3907
|
color: e = "#001E52",
|
|
@@ -3905,7 +3940,7 @@ const G5 = ({
|
|
|
3905
3940
|
/* @__PURE__ */ t("path", { d: "M3 12L17 12", stroke: e, strokeWidth: "2", strokeLinecap: "round" })
|
|
3906
3941
|
]
|
|
3907
3942
|
}
|
|
3908
|
-
),
|
|
3943
|
+
), U5 = ({
|
|
3909
3944
|
width: o = 16,
|
|
3910
3945
|
height: i = 12,
|
|
3911
3946
|
color: e = "#001E52",
|
|
@@ -3954,7 +3989,7 @@ const G5 = ({
|
|
|
3954
3989
|
)
|
|
3955
3990
|
] })
|
|
3956
3991
|
}
|
|
3957
|
-
),
|
|
3992
|
+
), P5 = ({
|
|
3958
3993
|
width: o = 16,
|
|
3959
3994
|
height: i = 16,
|
|
3960
3995
|
color: e = "#001E52",
|
|
@@ -3988,7 +4023,7 @@ const G5 = ({
|
|
|
3988
4023
|
)
|
|
3989
4024
|
]
|
|
3990
4025
|
}
|
|
3991
|
-
),
|
|
4026
|
+
), $5 = ({
|
|
3992
4027
|
width: o = 10,
|
|
3993
4028
|
height: i = 10,
|
|
3994
4029
|
color: e = "#001E52",
|
|
@@ -4027,7 +4062,7 @@ const G5 = ({
|
|
|
4027
4062
|
)
|
|
4028
4063
|
] })
|
|
4029
4064
|
}
|
|
4030
|
-
),
|
|
4065
|
+
), z5 = ({
|
|
4031
4066
|
width: o = 16,
|
|
4032
4067
|
height: i = 16,
|
|
4033
4068
|
color: e = "#001E52",
|
|
@@ -4063,7 +4098,7 @@ const G5 = ({
|
|
|
4063
4098
|
)
|
|
4064
4099
|
]
|
|
4065
4100
|
}
|
|
4066
|
-
),
|
|
4101
|
+
), J5 = ({
|
|
4067
4102
|
width: o = 11,
|
|
4068
4103
|
height: i = 32,
|
|
4069
4104
|
color: e = "#001E52",
|
|
@@ -4101,7 +4136,7 @@ const G5 = ({
|
|
|
4101
4136
|
/* @__PURE__ */ t("circle", { cx: "3", cy: "3", r: "3", fill: e })
|
|
4102
4137
|
]
|
|
4103
4138
|
}
|
|
4104
|
-
),
|
|
4139
|
+
), q5 = ({
|
|
4105
4140
|
width: o = 20,
|
|
4106
4141
|
height: i = 20,
|
|
4107
4142
|
color: e = "#001E52",
|
|
@@ -4148,7 +4183,7 @@ const G5 = ({
|
|
|
4148
4183
|
)
|
|
4149
4184
|
]
|
|
4150
4185
|
}
|
|
4151
|
-
),
|
|
4186
|
+
), Q5 = ({
|
|
4152
4187
|
width: o = 20,
|
|
4153
4188
|
height: i = 20,
|
|
4154
4189
|
color: e = "#001E52",
|
|
@@ -4181,7 +4216,7 @@ const G5 = ({
|
|
|
4181
4216
|
)
|
|
4182
4217
|
]
|
|
4183
4218
|
}
|
|
4184
|
-
),
|
|
4219
|
+
), X5 = ({
|
|
4185
4220
|
width: o = 20,
|
|
4186
4221
|
height: i = 20,
|
|
4187
4222
|
color: e = "#001E52",
|
|
@@ -4228,7 +4263,7 @@ const G5 = ({
|
|
|
4228
4263
|
)
|
|
4229
4264
|
]
|
|
4230
4265
|
}
|
|
4231
|
-
),
|
|
4266
|
+
), e3 = ({
|
|
4232
4267
|
width: o = 20,
|
|
4233
4268
|
height: i = 20,
|
|
4234
4269
|
color: e = "#001E52",
|
|
@@ -4261,7 +4296,7 @@ const G5 = ({
|
|
|
4261
4296
|
)
|
|
4262
4297
|
]
|
|
4263
4298
|
}
|
|
4264
|
-
),
|
|
4299
|
+
), i3 = ({
|
|
4265
4300
|
width: o = 18,
|
|
4266
4301
|
height: i = 16,
|
|
4267
4302
|
color: e = "#001E52",
|
|
@@ -4300,7 +4335,7 @@ const G5 = ({
|
|
|
4300
4335
|
)
|
|
4301
4336
|
]
|
|
4302
4337
|
}
|
|
4303
|
-
),
|
|
4338
|
+
), o3 = ({
|
|
4304
4339
|
width: o = 20,
|
|
4305
4340
|
height: i = 20,
|
|
4306
4341
|
color: e = "#001E52",
|
|
@@ -4333,7 +4368,7 @@ const G5 = ({
|
|
|
4333
4368
|
)
|
|
4334
4369
|
]
|
|
4335
4370
|
}
|
|
4336
|
-
),
|
|
4371
|
+
), t3 = ({
|
|
4337
4372
|
width: o = 20,
|
|
4338
4373
|
height: i = 20,
|
|
4339
4374
|
color: e = "#001E52",
|
|
@@ -4357,7 +4392,7 @@ const G5 = ({
|
|
|
4357
4392
|
}
|
|
4358
4393
|
)
|
|
4359
4394
|
}
|
|
4360
|
-
),
|
|
4395
|
+
), l3 = ({
|
|
4361
4396
|
width: o = 20,
|
|
4362
4397
|
height: i = 20,
|
|
4363
4398
|
color: e = "#001E52",
|
|
@@ -4404,7 +4439,7 @@ const G5 = ({
|
|
|
4404
4439
|
)
|
|
4405
4440
|
]
|
|
4406
4441
|
}
|
|
4407
|
-
),
|
|
4442
|
+
), r3 = ({
|
|
4408
4443
|
width: o = 20,
|
|
4409
4444
|
height: i = 20,
|
|
4410
4445
|
color: e = "#001E52",
|
|
@@ -4437,7 +4472,7 @@ const G5 = ({
|
|
|
4437
4472
|
)
|
|
4438
4473
|
]
|
|
4439
4474
|
}
|
|
4440
|
-
),
|
|
4475
|
+
), n3 = ({
|
|
4441
4476
|
width: o = 20,
|
|
4442
4477
|
height: i = 20,
|
|
4443
4478
|
color: e = "#001E52",
|
|
@@ -4470,7 +4505,7 @@ const G5 = ({
|
|
|
4470
4505
|
)
|
|
4471
4506
|
]
|
|
4472
4507
|
}
|
|
4473
|
-
),
|
|
4508
|
+
), s3 = ({
|
|
4474
4509
|
width: o = 20,
|
|
4475
4510
|
height: i = 23,
|
|
4476
4511
|
color: e = "#001E52",
|
|
@@ -4531,7 +4566,7 @@ const G5 = ({
|
|
|
4531
4566
|
)
|
|
4532
4567
|
]
|
|
4533
4568
|
}
|
|
4534
|
-
),
|
|
4569
|
+
), h3 = ({
|
|
4535
4570
|
width: o = 20,
|
|
4536
4571
|
height: i = 20,
|
|
4537
4572
|
color: e = "#001E52",
|
|
@@ -4571,7 +4606,7 @@ const G5 = ({
|
|
|
4571
4606
|
)
|
|
4572
4607
|
]
|
|
4573
4608
|
}
|
|
4574
|
-
),
|
|
4609
|
+
), c3 = ({
|
|
4575
4610
|
width: o = 32,
|
|
4576
4611
|
height: i = 25,
|
|
4577
4612
|
color: e = "#001E52",
|
|
@@ -4599,7 +4634,7 @@ const G5 = ({
|
|
|
4599
4634
|
)
|
|
4600
4635
|
]
|
|
4601
4636
|
}
|
|
4602
|
-
),
|
|
4637
|
+
), a3 = ({
|
|
4603
4638
|
width: o = 14,
|
|
4604
4639
|
height: i = 14,
|
|
4605
4640
|
color: e = "#10B981",
|
|
@@ -4628,7 +4663,7 @@ const G5 = ({
|
|
|
4628
4663
|
)
|
|
4629
4664
|
]
|
|
4630
4665
|
}
|
|
4631
|
-
),
|
|
4666
|
+
), d3 = ({
|
|
4632
4667
|
width: o = 11,
|
|
4633
4668
|
height: i = 11,
|
|
4634
4669
|
color: e = "#FFB020",
|
|
@@ -4662,7 +4697,7 @@ const G5 = ({
|
|
|
4662
4697
|
)
|
|
4663
4698
|
]
|
|
4664
4699
|
}
|
|
4665
|
-
),
|
|
4700
|
+
), C3 = ({
|
|
4666
4701
|
width: o = 10,
|
|
4667
4702
|
height: i = 10,
|
|
4668
4703
|
color: e = "#88A4FF",
|
|
@@ -4710,7 +4745,7 @@ const G5 = ({
|
|
|
4710
4745
|
)
|
|
4711
4746
|
]
|
|
4712
4747
|
}
|
|
4713
|
-
),
|
|
4748
|
+
), w3 = ({
|
|
4714
4749
|
width: o = 14,
|
|
4715
4750
|
height: i = 14,
|
|
4716
4751
|
color: e = "#8E8E93",
|
|
@@ -4738,7 +4773,7 @@ const G5 = ({
|
|
|
4738
4773
|
)
|
|
4739
4774
|
]
|
|
4740
4775
|
}
|
|
4741
|
-
),
|
|
4776
|
+
), g3 = ({
|
|
4742
4777
|
width: o = 14,
|
|
4743
4778
|
height: i = 14,
|
|
4744
4779
|
color: e = "#FFB020",
|
|
@@ -4772,7 +4807,7 @@ const G5 = ({
|
|
|
4772
4807
|
)
|
|
4773
4808
|
]
|
|
4774
4809
|
}
|
|
4775
|
-
),
|
|
4810
|
+
), k3 = ({
|
|
4776
4811
|
width: o = 14,
|
|
4777
4812
|
height: i = 14,
|
|
4778
4813
|
color: e = "#D0421B",
|
|
@@ -4820,7 +4855,7 @@ const G5 = ({
|
|
|
4820
4855
|
)
|
|
4821
4856
|
]
|
|
4822
4857
|
}
|
|
4823
|
-
),
|
|
4858
|
+
), p3 = ({
|
|
4824
4859
|
width: o = 20,
|
|
4825
4860
|
height: i = 20,
|
|
4826
4861
|
color: e = "#070739",
|
|
@@ -4850,7 +4885,7 @@ const G5 = ({
|
|
|
4850
4885
|
/* @__PURE__ */ t("circle", { cx: "10", cy: "10", r: "2.375", stroke: e, strokeWidth: "1.25" })
|
|
4851
4886
|
]
|
|
4852
4887
|
}
|
|
4853
|
-
),
|
|
4888
|
+
), L3 = ({
|
|
4854
4889
|
width: o = 20,
|
|
4855
4890
|
height: i = 20,
|
|
4856
4891
|
color: e = "#070739",
|
|
@@ -4888,7 +4923,7 @@ const G5 = ({
|
|
|
4888
4923
|
)
|
|
4889
4924
|
]
|
|
4890
4925
|
}
|
|
4891
|
-
),
|
|
4926
|
+
), m3 = ({
|
|
4892
4927
|
width: o = 9,
|
|
4893
4928
|
height: i = 5,
|
|
4894
4929
|
color: e = "#001E52",
|
|
@@ -4914,7 +4949,7 @@ const G5 = ({
|
|
|
4914
4949
|
}
|
|
4915
4950
|
)
|
|
4916
4951
|
}
|
|
4917
|
-
),
|
|
4952
|
+
), u3 = ({
|
|
4918
4953
|
width: o = 20,
|
|
4919
4954
|
height: i = 20,
|
|
4920
4955
|
color: e = "#F2F2F7",
|
|
@@ -4943,7 +4978,7 @@ const G5 = ({
|
|
|
4943
4978
|
)
|
|
4944
4979
|
]
|
|
4945
4980
|
}
|
|
4946
|
-
),
|
|
4981
|
+
), v3 = ({
|
|
4947
4982
|
width: o = 20,
|
|
4948
4983
|
height: i = 20,
|
|
4949
4984
|
color: e = "#004ED7",
|
|
@@ -4972,7 +5007,7 @@ const G5 = ({
|
|
|
4972
5007
|
)
|
|
4973
5008
|
]
|
|
4974
5009
|
}
|
|
4975
|
-
),
|
|
5010
|
+
), N3 = ({
|
|
4976
5011
|
width: o = 248,
|
|
4977
5012
|
height: i = 248,
|
|
4978
5013
|
color: e = "#070739",
|
|
@@ -5009,7 +5044,7 @@ const G5 = ({
|
|
|
5009
5044
|
)
|
|
5010
5045
|
]
|
|
5011
5046
|
}
|
|
5012
|
-
),
|
|
5047
|
+
), f3 = ({
|
|
5013
5048
|
width: o = 24,
|
|
5014
5049
|
height: i = 24,
|
|
5015
5050
|
color: e = "#001E52",
|
|
@@ -5048,7 +5083,7 @@ const G5 = ({
|
|
|
5048
5083
|
)
|
|
5049
5084
|
]
|
|
5050
5085
|
}
|
|
5051
|
-
),
|
|
5086
|
+
), M3 = ({
|
|
5052
5087
|
width: o = 10,
|
|
5053
5088
|
height: i = 10,
|
|
5054
5089
|
color: e = "#001E52",
|
|
@@ -5077,7 +5112,7 @@ const G5 = ({
|
|
|
5077
5112
|
)
|
|
5078
5113
|
]
|
|
5079
5114
|
}
|
|
5080
|
-
),
|
|
5115
|
+
), x3 = ({
|
|
5081
5116
|
width: o = 10,
|
|
5082
5117
|
height: i = 10,
|
|
5083
5118
|
color: e = "#001E52",
|
|
@@ -5114,7 +5149,7 @@ const G5 = ({
|
|
|
5114
5149
|
)
|
|
5115
5150
|
]
|
|
5116
5151
|
}
|
|
5117
|
-
),
|
|
5152
|
+
), _3 = ({
|
|
5118
5153
|
width: o = 24,
|
|
5119
5154
|
height: i = 24,
|
|
5120
5155
|
color: e = w.GREY_DARK_5,
|
|
@@ -5153,7 +5188,7 @@ const G5 = ({
|
|
|
5153
5188
|
)
|
|
5154
5189
|
]
|
|
5155
5190
|
}
|
|
5156
|
-
),
|
|
5191
|
+
), R3 = ({
|
|
5157
5192
|
width: o = 20,
|
|
5158
5193
|
height: i = 20,
|
|
5159
5194
|
color: e = w.GREY_DARK_1,
|
|
@@ -5186,7 +5221,7 @@ const G5 = ({
|
|
|
5186
5221
|
)
|
|
5187
5222
|
]
|
|
5188
5223
|
}
|
|
5189
|
-
),
|
|
5224
|
+
), H3 = ({
|
|
5190
5225
|
width: o = 81,
|
|
5191
5226
|
height: i = 80,
|
|
5192
5227
|
color: e = w.GREY_DARK_5,
|
|
@@ -5235,7 +5270,7 @@ const G5 = ({
|
|
|
5235
5270
|
)
|
|
5236
5271
|
]
|
|
5237
5272
|
}
|
|
5238
|
-
),
|
|
5273
|
+
), E3 = ({
|
|
5239
5274
|
className: o,
|
|
5240
5275
|
color: i = w.GREY_DARK_5,
|
|
5241
5276
|
height: e = 20,
|
|
@@ -5262,7 +5297,7 @@ const G5 = ({
|
|
|
5262
5297
|
}
|
|
5263
5298
|
)
|
|
5264
5299
|
}
|
|
5265
|
-
),
|
|
5300
|
+
), V3 = ({
|
|
5266
5301
|
className: o,
|
|
5267
5302
|
color: i = w.GREY_DARK_5,
|
|
5268
5303
|
height: e = 20,
|
|
@@ -5289,7 +5324,7 @@ const G5 = ({
|
|
|
5289
5324
|
}
|
|
5290
5325
|
)
|
|
5291
5326
|
}
|
|
5292
|
-
),
|
|
5327
|
+
), Z3 = ({
|
|
5293
5328
|
className: o,
|
|
5294
5329
|
color: i = w.GREY_DARK_5,
|
|
5295
5330
|
height: e = 5,
|
|
@@ -5313,7 +5348,7 @@ const G5 = ({
|
|
|
5313
5348
|
}
|
|
5314
5349
|
)
|
|
5315
5350
|
}
|
|
5316
|
-
),
|
|
5351
|
+
), I3 = ({
|
|
5317
5352
|
className: o,
|
|
5318
5353
|
color: i = w.GREY_DARK_5,
|
|
5319
5354
|
height: e = 5,
|
|
@@ -5338,7 +5373,7 @@ const G5 = ({
|
|
|
5338
5373
|
}
|
|
5339
5374
|
)
|
|
5340
5375
|
}
|
|
5341
|
-
),
|
|
5376
|
+
), W3 = ({
|
|
5342
5377
|
className: o,
|
|
5343
5378
|
color: i = w.GREY_DARK_5,
|
|
5344
5379
|
height: e = 24,
|
|
@@ -5377,7 +5412,7 @@ const G5 = ({
|
|
|
5377
5412
|
)
|
|
5378
5413
|
]
|
|
5379
5414
|
}
|
|
5380
|
-
),
|
|
5415
|
+
), B3 = ({
|
|
5381
5416
|
className: o,
|
|
5382
5417
|
color: i = w.GREY_DARK_5,
|
|
5383
5418
|
height: e = 24,
|
|
@@ -5416,7 +5451,7 @@ const G5 = ({
|
|
|
5416
5451
|
)
|
|
5417
5452
|
]
|
|
5418
5453
|
}
|
|
5419
|
-
),
|
|
5454
|
+
), A3 = ({
|
|
5420
5455
|
className: o,
|
|
5421
5456
|
color: i = w.GREY_DARK_5,
|
|
5422
5457
|
height: e = 24,
|
|
@@ -5443,7 +5478,7 @@ const G5 = ({
|
|
|
5443
5478
|
}
|
|
5444
5479
|
)
|
|
5445
5480
|
}
|
|
5446
|
-
),
|
|
5481
|
+
), G3 = ({
|
|
5447
5482
|
className: o,
|
|
5448
5483
|
color: i = w.GREY_DARK_5,
|
|
5449
5484
|
height: e = 24,
|
|
@@ -5502,7 +5537,7 @@ const G5 = ({
|
|
|
5502
5537
|
)
|
|
5503
5538
|
]
|
|
5504
5539
|
}
|
|
5505
|
-
),
|
|
5540
|
+
), y3 = ({
|
|
5506
5541
|
className: o,
|
|
5507
5542
|
color: i = w.GREY_DARK_5,
|
|
5508
5543
|
height: e = 24,
|
|
@@ -5539,7 +5574,7 @@ const G5 = ({
|
|
|
5539
5574
|
)
|
|
5540
5575
|
]
|
|
5541
5576
|
}
|
|
5542
|
-
),
|
|
5577
|
+
), D3 = ({
|
|
5543
5578
|
className: o,
|
|
5544
5579
|
color: i = w.GREY_DARK_3,
|
|
5545
5580
|
height: e = 14,
|
|
@@ -5576,7 +5611,7 @@ const G5 = ({
|
|
|
5576
5611
|
)
|
|
5577
5612
|
]
|
|
5578
5613
|
}
|
|
5579
|
-
),
|
|
5614
|
+
), j3 = ({
|
|
5580
5615
|
className: o,
|
|
5581
5616
|
color: i = w.GREY_DARK_5,
|
|
5582
5617
|
height: e = 18,
|
|
@@ -5603,7 +5638,7 @@ const G5 = ({
|
|
|
5603
5638
|
}
|
|
5604
5639
|
)
|
|
5605
5640
|
}
|
|
5606
|
-
),
|
|
5641
|
+
), T3 = ({
|
|
5607
5642
|
className: o,
|
|
5608
5643
|
color: i = w.GREY_DARK_5,
|
|
5609
5644
|
height: e = 24,
|
|
@@ -5655,7 +5690,7 @@ const G5 = ({
|
|
|
5655
5690
|
)
|
|
5656
5691
|
]
|
|
5657
5692
|
}
|
|
5658
|
-
),
|
|
5693
|
+
), Y3 = ({
|
|
5659
5694
|
className: o,
|
|
5660
5695
|
color: i = w.GREY_DARK_5,
|
|
5661
5696
|
height: e = 24,
|
|
@@ -5692,7 +5727,7 @@ const G5 = ({
|
|
|
5692
5727
|
)
|
|
5693
5728
|
]
|
|
5694
5729
|
}
|
|
5695
|
-
),
|
|
5730
|
+
), b3 = ({
|
|
5696
5731
|
className: o,
|
|
5697
5732
|
color: i = w.NOTIFICATION_WARNING_DARK,
|
|
5698
5733
|
height: e = 37,
|
|
@@ -5731,7 +5766,7 @@ const G5 = ({
|
|
|
5731
5766
|
)
|
|
5732
5767
|
]
|
|
5733
5768
|
}
|
|
5734
|
-
),
|
|
5769
|
+
), K3 = ({
|
|
5735
5770
|
className: o,
|
|
5736
5771
|
color: i = w.GREY_DARK_5,
|
|
5737
5772
|
height: e = 24,
|
|
@@ -5757,7 +5792,7 @@ const G5 = ({
|
|
|
5757
5792
|
}
|
|
5758
5793
|
)
|
|
5759
5794
|
}
|
|
5760
|
-
),
|
|
5795
|
+
), O3 = ({
|
|
5761
5796
|
className: o,
|
|
5762
5797
|
color: i = w.GREY_DARK_5,
|
|
5763
5798
|
height: e = 24,
|
|
@@ -5796,7 +5831,7 @@ const G5 = ({
|
|
|
5796
5831
|
)
|
|
5797
5832
|
]
|
|
5798
5833
|
}
|
|
5799
|
-
),
|
|
5834
|
+
), F3 = ({
|
|
5800
5835
|
className: o,
|
|
5801
5836
|
color: i = w.GREY_DARK_5,
|
|
5802
5837
|
height: e = 24,
|
|
@@ -5835,7 +5870,7 @@ const G5 = ({
|
|
|
5835
5870
|
)
|
|
5836
5871
|
]
|
|
5837
5872
|
}
|
|
5838
|
-
),
|
|
5873
|
+
), S3 = ({
|
|
5839
5874
|
className: o,
|
|
5840
5875
|
color: i = w.GREY_DARK_5,
|
|
5841
5876
|
height: e = 24,
|
|
@@ -5904,7 +5939,7 @@ const G5 = ({
|
|
|
5904
5939
|
)
|
|
5905
5940
|
]
|
|
5906
5941
|
}
|
|
5907
|
-
),
|
|
5942
|
+
), U3 = ({
|
|
5908
5943
|
className: o,
|
|
5909
5944
|
color: i = w.GREY_DARK_5,
|
|
5910
5945
|
height: e = 24,
|
|
@@ -5943,7 +5978,7 @@ const G5 = ({
|
|
|
5943
5978
|
)
|
|
5944
5979
|
]
|
|
5945
5980
|
}
|
|
5946
|
-
),
|
|
5981
|
+
), P3 = ({
|
|
5947
5982
|
className: o,
|
|
5948
5983
|
color: i = w.GREY_DARK_5,
|
|
5949
5984
|
height: e = 24,
|
|
@@ -6000,7 +6035,7 @@ const G5 = ({
|
|
|
6000
6035
|
)
|
|
6001
6036
|
]
|
|
6002
6037
|
}
|
|
6003
|
-
),
|
|
6038
|
+
), $3 = ({
|
|
6004
6039
|
className: o,
|
|
6005
6040
|
color: i = w.GREY_DARK_5,
|
|
6006
6041
|
height: e = 24,
|
|
@@ -6039,7 +6074,7 @@ const G5 = ({
|
|
|
6039
6074
|
)
|
|
6040
6075
|
]
|
|
6041
6076
|
}
|
|
6042
|
-
),
|
|
6077
|
+
), z3 = ({
|
|
6043
6078
|
className: o,
|
|
6044
6079
|
color: i = w.GREY_DARK_5,
|
|
6045
6080
|
height: e = 24,
|
|
@@ -6088,7 +6123,7 @@ const G5 = ({
|
|
|
6088
6123
|
)
|
|
6089
6124
|
]
|
|
6090
6125
|
}
|
|
6091
|
-
),
|
|
6126
|
+
), J3 = ({
|
|
6092
6127
|
className: o,
|
|
6093
6128
|
color: i = w.GREY_DARK_5,
|
|
6094
6129
|
height: e = 24,
|
|
@@ -6127,7 +6162,7 @@ const G5 = ({
|
|
|
6127
6162
|
)
|
|
6128
6163
|
]
|
|
6129
6164
|
}
|
|
6130
|
-
),
|
|
6165
|
+
), q3 = ({
|
|
6131
6166
|
className: o,
|
|
6132
6167
|
color: i = w.GREY_DARK_5,
|
|
6133
6168
|
height: e = 24,
|
|
@@ -6154,7 +6189,7 @@ const G5 = ({
|
|
|
6154
6189
|
}
|
|
6155
6190
|
)
|
|
6156
6191
|
}
|
|
6157
|
-
),
|
|
6192
|
+
), Q3 = ({
|
|
6158
6193
|
className: o,
|
|
6159
6194
|
color: i = w.GREY_DARK_5,
|
|
6160
6195
|
height: e = 24,
|
|
@@ -6192,7 +6227,7 @@ const G5 = ({
|
|
|
6192
6227
|
)
|
|
6193
6228
|
]
|
|
6194
6229
|
}
|
|
6195
|
-
),
|
|
6230
|
+
), X3 = ({
|
|
6196
6231
|
className: o,
|
|
6197
6232
|
color: i = w.GREY_DARK_5,
|
|
6198
6233
|
height: e = 24,
|
|
@@ -6213,7 +6248,7 @@ const G5 = ({
|
|
|
6213
6248
|
/* @__PURE__ */ t("path", { d: "M12 8L4 8", stroke: i, strokeWidth: "1.7", strokeLinecap: "round" })
|
|
6214
6249
|
]
|
|
6215
6250
|
}
|
|
6216
|
-
),
|
|
6251
|
+
), e0 = ({
|
|
6217
6252
|
className: o,
|
|
6218
6253
|
color: i = w.GREY_DARK_5,
|
|
6219
6254
|
height: e = 24,
|
|
@@ -6252,7 +6287,7 @@ const G5 = ({
|
|
|
6252
6287
|
)
|
|
6253
6288
|
]
|
|
6254
6289
|
}
|
|
6255
|
-
),
|
|
6290
|
+
), i0 = ({
|
|
6256
6291
|
className: o,
|
|
6257
6292
|
color: i = w.GREY_DARK_5,
|
|
6258
6293
|
height: e = 24,
|
|
@@ -6291,7 +6326,7 @@ const G5 = ({
|
|
|
6291
6326
|
)
|
|
6292
6327
|
]
|
|
6293
6328
|
}
|
|
6294
|
-
),
|
|
6329
|
+
), o0 = ({
|
|
6295
6330
|
className: o,
|
|
6296
6331
|
color: i = w.GREY_DARK_5,
|
|
6297
6332
|
height: e = 24,
|
|
@@ -6330,7 +6365,7 @@ const G5 = ({
|
|
|
6330
6365
|
)
|
|
6331
6366
|
]
|
|
6332
6367
|
}
|
|
6333
|
-
),
|
|
6368
|
+
), t0 = ({
|
|
6334
6369
|
className: o,
|
|
6335
6370
|
color: i = w.GREY_DARK_2,
|
|
6336
6371
|
height: e = 16,
|
|
@@ -6356,7 +6391,7 @@ const G5 = ({
|
|
|
6356
6391
|
}
|
|
6357
6392
|
)
|
|
6358
6393
|
}
|
|
6359
|
-
),
|
|
6394
|
+
), l0 = ({
|
|
6360
6395
|
className: o,
|
|
6361
6396
|
color: i = w.GREY_DARK_5,
|
|
6362
6397
|
height: e = 20,
|
|
@@ -6385,7 +6420,7 @@ const G5 = ({
|
|
|
6385
6420
|
/* @__PURE__ */ t("defs", { children: /* @__PURE__ */ t("clipPath", { id: "clip0_3992_5989", children: /* @__PURE__ */ t("rect", { width: "20", height: "20", fill: "white" }) }) })
|
|
6386
6421
|
]
|
|
6387
6422
|
}
|
|
6388
|
-
),
|
|
6423
|
+
), r0 = ({
|
|
6389
6424
|
className: o,
|
|
6390
6425
|
color: i = w.GREY_DARK_5,
|
|
6391
6426
|
height: e = 20,
|
|
@@ -6414,7 +6449,7 @@ const G5 = ({
|
|
|
6414
6449
|
/* @__PURE__ */ t("defs", { children: /* @__PURE__ */ t("clipPath", { id: "clip0_3992_5988", children: /* @__PURE__ */ t("rect", { width: "20", height: "20", fill: "white" }) }) })
|
|
6415
6450
|
]
|
|
6416
6451
|
}
|
|
6417
|
-
),
|
|
6452
|
+
), n0 = ({
|
|
6418
6453
|
className: o,
|
|
6419
6454
|
color: i = w.GREY_DARK_5,
|
|
6420
6455
|
height: e = 20,
|
|
@@ -6443,7 +6478,7 @@ const G5 = ({
|
|
|
6443
6478
|
)
|
|
6444
6479
|
]
|
|
6445
6480
|
}
|
|
6446
|
-
),
|
|
6481
|
+
), s0 = ({
|
|
6447
6482
|
className: o,
|
|
6448
6483
|
color: i = w.GREY_DARK_5,
|
|
6449
6484
|
height: e = 20,
|
|
@@ -6472,7 +6507,7 @@ const G5 = ({
|
|
|
6472
6507
|
)
|
|
6473
6508
|
]
|
|
6474
6509
|
}
|
|
6475
|
-
),
|
|
6510
|
+
), h0 = ({
|
|
6476
6511
|
className: o,
|
|
6477
6512
|
color: i = "#001E52",
|
|
6478
6513
|
height: e = 24,
|
|
@@ -6498,7 +6533,7 @@ const G5 = ({
|
|
|
6498
6533
|
}
|
|
6499
6534
|
)
|
|
6500
6535
|
}
|
|
6501
|
-
),
|
|
6536
|
+
), c0 = ({
|
|
6502
6537
|
className: o,
|
|
6503
6538
|
color: i = "#131314",
|
|
6504
6539
|
height: e = 20,
|
|
@@ -6526,7 +6561,7 @@ const G5 = ({
|
|
|
6526
6561
|
}
|
|
6527
6562
|
)
|
|
6528
6563
|
}
|
|
6529
|
-
),
|
|
6564
|
+
), a0 = ({
|
|
6530
6565
|
className: o,
|
|
6531
6566
|
color: i = "#001E52",
|
|
6532
6567
|
height: e = 24,
|
|
@@ -6564,7 +6599,7 @@ const G5 = ({
|
|
|
6564
6599
|
)
|
|
6565
6600
|
] }) })
|
|
6566
6601
|
}
|
|
6567
|
-
),
|
|
6602
|
+
), d0 = ({
|
|
6568
6603
|
width: o = 20,
|
|
6569
6604
|
height: i = 20,
|
|
6570
6605
|
color: e = "#001E52",
|
|
@@ -6620,7 +6655,40 @@ const G5 = ({
|
|
|
6620
6655
|
}
|
|
6621
6656
|
)
|
|
6622
6657
|
}
|
|
6623
|
-
),
|
|
6658
|
+
), C0 = ({
|
|
6659
|
+
width: o = 24,
|
|
6660
|
+
height: i = 24,
|
|
6661
|
+
color: e = "#131314",
|
|
6662
|
+
className: l,
|
|
6663
|
+
onClick: r
|
|
6664
|
+
}) => /* @__PURE__ */ c(
|
|
6665
|
+
"svg",
|
|
6666
|
+
{
|
|
6667
|
+
width: o,
|
|
6668
|
+
height: i,
|
|
6669
|
+
viewBox: "0 0 24 24",
|
|
6670
|
+
fill: "none",
|
|
6671
|
+
className: l,
|
|
6672
|
+
onClick: r,
|
|
6673
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6674
|
+
children: [
|
|
6675
|
+
/* @__PURE__ */ t(
|
|
6676
|
+
"path",
|
|
6677
|
+
{
|
|
6678
|
+
d: "M19.2598 20V4C19.2598 3.58579 19.5956 3.25 20.0098 3.25C20.424 3.25 20.7598 3.58579 20.7598 4V20C20.7598 20.4142 20.424 20.75 20.0098 20.75C19.5956 20.75 19.2598 20.4142 19.2598 20Z",
|
|
6679
|
+
fill: e
|
|
6680
|
+
}
|
|
6681
|
+
),
|
|
6682
|
+
/* @__PURE__ */ t(
|
|
6683
|
+
"path",
|
|
6684
|
+
{
|
|
6685
|
+
d: "M9.96973 5.46972C10.2443 5.19512 10.6791 5.17765 10.9736 5.41796L11.0303 5.46972L17.5303 11.9697L17.582 12.0264C17.8063 12.3013 17.8063 12.6987 17.582 12.9736L17.5303 13.0303L11.0303 19.5303C10.7374 19.8232 10.2626 19.8232 9.96973 19.5303C9.67683 19.2374 9.67683 18.7626 9.96973 18.4697L15.1895 13.25H4C3.58579 13.25 3.25 12.9142 3.25 12.5C3.25 12.0858 3.58579 11.75 4 11.75H15.1895L9.96973 6.53027L9.91797 6.47363C9.67766 6.17905 9.69512 5.74433 9.96973 5.46972Z",
|
|
6686
|
+
fill: e
|
|
6687
|
+
}
|
|
6688
|
+
)
|
|
6689
|
+
]
|
|
6690
|
+
}
|
|
6691
|
+
), w0 = ({
|
|
6624
6692
|
name: o,
|
|
6625
6693
|
width: i,
|
|
6626
6694
|
height: e,
|
|
@@ -6639,39 +6707,39 @@ const G5 = ({
|
|
|
6639
6707
|
}, [s, r, a]), /* @__PURE__ */ t(K, { children: (() => {
|
|
6640
6708
|
switch (o) {
|
|
6641
6709
|
case "nextIcon":
|
|
6642
|
-
return H3({ width: i, height: e, color: h, className: n, onClick: s });
|
|
6643
|
-
case "prevIcon":
|
|
6644
6710
|
return E3({ width: i, height: e, color: h, className: n, onClick: s });
|
|
6711
|
+
case "prevIcon":
|
|
6712
|
+
return V3({ width: i, height: e, color: h, className: n, onClick: s });
|
|
6645
6713
|
case "arrowUp":
|
|
6646
|
-
return G5({ width: i, height: e, color: h, className: n, onClick: s });
|
|
6647
|
-
case "arrowDown":
|
|
6648
6714
|
return y5({ width: i, height: e, color: h, className: n, onClick: s });
|
|
6649
|
-
case "
|
|
6715
|
+
case "arrowDown":
|
|
6650
6716
|
return D5({ width: i, height: e, color: h, className: n, onClick: s });
|
|
6651
|
-
case "
|
|
6717
|
+
case "info":
|
|
6652
6718
|
return j5({ width: i, height: e, color: h, className: n, onClick: s });
|
|
6653
|
-
case "
|
|
6719
|
+
case "arrowRight":
|
|
6654
6720
|
return T5({ width: i, height: e, color: h, className: n, onClick: s });
|
|
6655
|
-
case "
|
|
6721
|
+
case "calendar":
|
|
6656
6722
|
return Y5({ width: i, height: e, color: h, className: n, onClick: s });
|
|
6657
|
-
case "
|
|
6723
|
+
case "ok":
|
|
6658
6724
|
return b5({ width: i, height: e, color: h, className: n, onClick: s });
|
|
6659
|
-
case "
|
|
6725
|
+
case "cancel":
|
|
6660
6726
|
return K5({ width: i, height: e, color: h, className: n, onClick: s });
|
|
6661
|
-
case "
|
|
6727
|
+
case "add":
|
|
6662
6728
|
return O5({ width: i, height: e, color: h, className: n, onClick: s });
|
|
6663
|
-
case "
|
|
6729
|
+
case "list":
|
|
6664
6730
|
return F5({ width: i, height: e, color: h, className: n, onClick: s });
|
|
6665
|
-
case "
|
|
6731
|
+
case "dragAndDrop":
|
|
6666
6732
|
return S5({ width: i, height: e, color: h, className: n, onClick: s });
|
|
6667
|
-
case "
|
|
6733
|
+
case "filter":
|
|
6668
6734
|
return U5({ width: i, height: e, color: h, className: n, onClick: s });
|
|
6669
|
-
case "
|
|
6735
|
+
case "attention":
|
|
6670
6736
|
return P5({ width: i, height: e, color: h, className: n, onClick: s });
|
|
6671
|
-
case "
|
|
6737
|
+
case "plus":
|
|
6672
6738
|
return $5({ width: i, height: e, color: h, className: n, onClick: s });
|
|
6739
|
+
case "time":
|
|
6740
|
+
return z5({ width: i, height: e, color: h, className: n, onClick: s });
|
|
6673
6741
|
case "arrowDownLong":
|
|
6674
|
-
return
|
|
6742
|
+
return J5({
|
|
6675
6743
|
width: i,
|
|
6676
6744
|
height: e,
|
|
6677
6745
|
color: h,
|
|
@@ -6679,9 +6747,9 @@ const G5 = ({
|
|
|
6679
6747
|
onClick: s
|
|
6680
6748
|
});
|
|
6681
6749
|
case "users":
|
|
6682
|
-
return
|
|
6750
|
+
return q5({ width: i, height: e, color: h, className: n, onClick: s });
|
|
6683
6751
|
case "mySkillsMatrix":
|
|
6684
|
-
return
|
|
6752
|
+
return Q5({
|
|
6685
6753
|
width: i,
|
|
6686
6754
|
height: e,
|
|
6687
6755
|
color: h,
|
|
@@ -6689,9 +6757,9 @@ const G5 = ({
|
|
|
6689
6757
|
onClick: s
|
|
6690
6758
|
});
|
|
6691
6759
|
case "skills":
|
|
6692
|
-
return
|
|
6760
|
+
return X5({ width: i, height: e, color: h, className: n, onClick: s });
|
|
6693
6761
|
case "skillsMatrices":
|
|
6694
|
-
return
|
|
6762
|
+
return e3({
|
|
6695
6763
|
width: i,
|
|
6696
6764
|
height: e,
|
|
6697
6765
|
color: h,
|
|
@@ -6699,23 +6767,23 @@ const G5 = ({
|
|
|
6699
6767
|
onClick: s
|
|
6700
6768
|
});
|
|
6701
6769
|
case "history":
|
|
6702
|
-
return e3({ width: i, height: e, color: h, className: n, onClick: s });
|
|
6703
|
-
case "logOut":
|
|
6704
6770
|
return i3({ width: i, height: e, color: h, className: n, onClick: s });
|
|
6705
|
-
case "
|
|
6771
|
+
case "logOut":
|
|
6706
6772
|
return o3({ width: i, height: e, color: h, className: n, onClick: s });
|
|
6707
|
-
case "
|
|
6773
|
+
case "settings":
|
|
6708
6774
|
return t3({ width: i, height: e, color: h, className: n, onClick: s });
|
|
6709
|
-
case "
|
|
6775
|
+
case "addSkill":
|
|
6710
6776
|
return l3({ width: i, height: e, color: h, className: n, onClick: s });
|
|
6711
|
-
case "
|
|
6777
|
+
case "conversation":
|
|
6712
6778
|
return r3({ width: i, height: e, color: h, className: n, onClick: s });
|
|
6713
|
-
case "
|
|
6779
|
+
case "trash":
|
|
6714
6780
|
return n3({ width: i, height: e, color: h, className: n, onClick: s });
|
|
6715
|
-
case "
|
|
6781
|
+
case "settings4":
|
|
6716
6782
|
return s3({ width: i, height: e, color: h, className: n, onClick: s });
|
|
6783
|
+
case "edit2":
|
|
6784
|
+
return h3({ width: i, height: e, color: h, className: n, onClick: s });
|
|
6717
6785
|
case "notifications":
|
|
6718
|
-
return
|
|
6786
|
+
return c3({
|
|
6719
6787
|
width: i,
|
|
6720
6788
|
height: e,
|
|
6721
6789
|
color: h,
|
|
@@ -6723,9 +6791,9 @@ const G5 = ({
|
|
|
6723
6791
|
onClick: s
|
|
6724
6792
|
});
|
|
6725
6793
|
case "success":
|
|
6726
|
-
return
|
|
6794
|
+
return a3({ width: i, height: e, color: h, className: n, onClick: s });
|
|
6727
6795
|
case "attentionSmall":
|
|
6728
|
-
return
|
|
6796
|
+
return d3({
|
|
6729
6797
|
width: i,
|
|
6730
6798
|
height: e,
|
|
6731
6799
|
color: h,
|
|
@@ -6733,11 +6801,11 @@ const G5 = ({
|
|
|
6733
6801
|
onClick: s
|
|
6734
6802
|
});
|
|
6735
6803
|
case "errorSmall":
|
|
6736
|
-
return d3({ width: i, height: e, color: h, className: n, onClick: s });
|
|
6737
|
-
case "infoMedium":
|
|
6738
6804
|
return C3({ width: i, height: e, color: h, className: n, onClick: s });
|
|
6805
|
+
case "infoMedium":
|
|
6806
|
+
return w3({ width: i, height: e, color: h, className: n, onClick: s });
|
|
6739
6807
|
case "attentionMedium":
|
|
6740
|
-
return
|
|
6808
|
+
return g3({
|
|
6741
6809
|
width: i,
|
|
6742
6810
|
height: e,
|
|
6743
6811
|
color: h,
|
|
@@ -6745,9 +6813,9 @@ const G5 = ({
|
|
|
6745
6813
|
onClick: s
|
|
6746
6814
|
});
|
|
6747
6815
|
case "errorMedium":
|
|
6748
|
-
return
|
|
6816
|
+
return k3({ width: i, height: e, color: h, className: n, onClick: s });
|
|
6749
6817
|
case "faviconSkills":
|
|
6750
|
-
return
|
|
6818
|
+
return N3({
|
|
6751
6819
|
width: i,
|
|
6752
6820
|
height: e,
|
|
6753
6821
|
color: h,
|
|
@@ -6755,7 +6823,7 @@ const G5 = ({
|
|
|
6755
6823
|
onClick: s
|
|
6756
6824
|
});
|
|
6757
6825
|
case "visibilityIcon":
|
|
6758
|
-
return
|
|
6826
|
+
return p3({
|
|
6759
6827
|
width: i,
|
|
6760
6828
|
height: e,
|
|
6761
6829
|
color: h,
|
|
@@ -6763,7 +6831,7 @@ const G5 = ({
|
|
|
6763
6831
|
onClick: s
|
|
6764
6832
|
});
|
|
6765
6833
|
case "visibilityOffIcon":
|
|
6766
|
-
return
|
|
6834
|
+
return L3({
|
|
6767
6835
|
width: i,
|
|
6768
6836
|
height: e,
|
|
6769
6837
|
color: h,
|
|
@@ -6771,7 +6839,7 @@ const G5 = ({
|
|
|
6771
6839
|
onClick: s
|
|
6772
6840
|
});
|
|
6773
6841
|
case "selectArrowIcon":
|
|
6774
|
-
return
|
|
6842
|
+
return m3({
|
|
6775
6843
|
width: i,
|
|
6776
6844
|
height: e,
|
|
6777
6845
|
color: h,
|
|
@@ -6779,7 +6847,7 @@ const G5 = ({
|
|
|
6779
6847
|
onClick: s
|
|
6780
6848
|
});
|
|
6781
6849
|
case "expandArrowIcon":
|
|
6782
|
-
return
|
|
6850
|
+
return u3({
|
|
6783
6851
|
width: i,
|
|
6784
6852
|
height: e,
|
|
6785
6853
|
color: h,
|
|
@@ -6787,7 +6855,7 @@ const G5 = ({
|
|
|
6787
6855
|
onClick: s
|
|
6788
6856
|
});
|
|
6789
6857
|
case "expandActiveArrowIcon":
|
|
6790
|
-
return
|
|
6858
|
+
return v3({
|
|
6791
6859
|
width: i,
|
|
6792
6860
|
height: e,
|
|
6793
6861
|
color: h,
|
|
@@ -6795,100 +6863,102 @@ const G5 = ({
|
|
|
6795
6863
|
onClick: s
|
|
6796
6864
|
});
|
|
6797
6865
|
case "camera":
|
|
6798
|
-
return N3({ width: i, height: e, color: h, className: n, onClick: s });
|
|
6799
|
-
case "sortUp":
|
|
6800
6866
|
return f3({ width: i, height: e, color: h, className: n, onClick: s });
|
|
6801
|
-
case "
|
|
6867
|
+
case "sortUp":
|
|
6802
6868
|
return M3({ width: i, height: e, color: h, className: n, onClick: s });
|
|
6803
|
-
case "
|
|
6869
|
+
case "sortDown":
|
|
6804
6870
|
return x3({ width: i, height: e, color: h, className: n, onClick: s });
|
|
6805
|
-
case "
|
|
6871
|
+
case "logOut2":
|
|
6806
6872
|
return _3({ width: i, height: e, color: h, className: n, onClick: s });
|
|
6807
|
-
case "
|
|
6873
|
+
case "search":
|
|
6808
6874
|
return R3({ width: i, height: e, color: h, className: n, onClick: s });
|
|
6875
|
+
case "handRock":
|
|
6876
|
+
return H3({ width: i, height: e, color: h, className: n, onClick: s });
|
|
6809
6877
|
case "arrowUpFilled":
|
|
6810
|
-
return
|
|
6878
|
+
return I3({ width: i, height: e, color: h, className: n, onClick: s });
|
|
6811
6879
|
case "arrowDownFilled":
|
|
6812
|
-
return
|
|
6880
|
+
return Z3({ width: i, height: e, color: h, className: n, onClick: s });
|
|
6813
6881
|
case "link":
|
|
6814
|
-
return
|
|
6882
|
+
return W3({ width: i, height: e, color: h, className: n, onClick: s });
|
|
6815
6883
|
case "telegram":
|
|
6816
|
-
return
|
|
6884
|
+
return A3({ width: i, height: e, color: h, className: n, onClick: s });
|
|
6817
6885
|
case "mail":
|
|
6818
|
-
return
|
|
6886
|
+
return y3({ width: i, height: e, color: h, className: n, onClick: s });
|
|
6819
6887
|
case "github":
|
|
6820
|
-
return
|
|
6888
|
+
return B3({ width: i, height: e, color: h, className: n, onClick: s });
|
|
6821
6889
|
case "linkedIn":
|
|
6822
|
-
return
|
|
6890
|
+
return G3({ width: i, height: e, color: h, className: n, onClick: s });
|
|
6823
6891
|
case "emptyStateIcon":
|
|
6824
|
-
return y3({ width: i, height: e, color: h, className: n, onClick: s });
|
|
6825
|
-
case "filtersIcon":
|
|
6826
6892
|
return D3({ width: i, height: e, color: h, className: n, onClick: s });
|
|
6827
|
-
case "
|
|
6893
|
+
case "filtersIcon":
|
|
6828
6894
|
return j3({ width: i, height: e, color: h, className: n, onClick: s });
|
|
6829
|
-
case "
|
|
6895
|
+
case "dotMenuIcon":
|
|
6830
6896
|
return T3({ width: i, height: e, color: h, className: n, onClick: s });
|
|
6831
|
-
case "
|
|
6897
|
+
case "plusCircle":
|
|
6832
6898
|
return Y3({ width: i, height: e, color: h, className: n, onClick: s });
|
|
6833
|
-
case "
|
|
6899
|
+
case "warning":
|
|
6834
6900
|
return b3({ width: i, height: e, color: h, className: n, onClick: s });
|
|
6835
|
-
case "
|
|
6901
|
+
case "back":
|
|
6836
6902
|
return K3({ width: i, height: e, color: h, className: n, onClick: s });
|
|
6903
|
+
case "bell":
|
|
6904
|
+
return O3({ width: i, height: e, color: h, className: n, onClick: s });
|
|
6837
6905
|
case "contract":
|
|
6838
|
-
return
|
|
6906
|
+
return S3({ width: i, height: e, color: h, className: n, onClick: s });
|
|
6839
6907
|
case "trash2":
|
|
6840
|
-
return
|
|
6908
|
+
return F3({ width: i, height: e, color: h, className: n, onClick: s });
|
|
6841
6909
|
case "manager":
|
|
6842
|
-
return S3({ width: i, height: e, color: h, className: n, onClick: s });
|
|
6843
|
-
case "resourceManager":
|
|
6844
6910
|
return U3({ width: i, height: e, color: h, className: n, onClick: s });
|
|
6845
|
-
case "
|
|
6911
|
+
case "resourceManager":
|
|
6846
6912
|
return P3({ width: i, height: e, color: h, className: n, onClick: s });
|
|
6847
|
-
case "
|
|
6913
|
+
case "settings2":
|
|
6848
6914
|
return $3({ width: i, height: e, color: h, className: n, onClick: s });
|
|
6849
|
-
case "
|
|
6915
|
+
case "image":
|
|
6850
6916
|
return z3({ width: i, height: e, color: h, className: n, onClick: s });
|
|
6851
|
-
case "
|
|
6917
|
+
case "upload":
|
|
6852
6918
|
return J3({ width: i, height: e, color: h, className: n, onClick: s });
|
|
6853
|
-
case "
|
|
6919
|
+
case "edit":
|
|
6854
6920
|
return q3({ width: i, height: e, color: h, className: n, onClick: s });
|
|
6855
|
-
case "
|
|
6921
|
+
case "location":
|
|
6856
6922
|
return Q3({ width: i, height: e, color: h, className: n, onClick: s });
|
|
6857
|
-
case "
|
|
6923
|
+
case "plus2":
|
|
6858
6924
|
return X3({ width: i, height: e, color: h, className: n, onClick: s });
|
|
6925
|
+
case "search2":
|
|
6926
|
+
return e0({ width: i, height: e, color: h, className: n, onClick: s });
|
|
6859
6927
|
case "fastArrowLeft":
|
|
6860
|
-
return
|
|
6928
|
+
return i0({ width: i, height: e, color: h, className: n, onClick: s });
|
|
6861
6929
|
case "fastArrowRight":
|
|
6862
|
-
return
|
|
6930
|
+
return o0({ width: i, height: e, color: h, className: n, onClick: s });
|
|
6863
6931
|
case "crossInCircle":
|
|
6864
|
-
return
|
|
6932
|
+
return t0({ width: i, height: e, color: h, className: n, onClick: s });
|
|
6865
6933
|
case "arrowUp2":
|
|
6866
|
-
return
|
|
6934
|
+
return r0({ width: i, height: e, color: h, className: n, onClick: s });
|
|
6867
6935
|
case "arrowDown2":
|
|
6868
|
-
return
|
|
6936
|
+
return l0({ width: i, height: e, color: h, className: n, onClick: s });
|
|
6869
6937
|
case "filledArrowLeft":
|
|
6870
|
-
return
|
|
6938
|
+
return n0({ width: i, height: e, color: h, className: n, onClick: s });
|
|
6871
6939
|
case "filledArrowRight":
|
|
6872
|
-
return
|
|
6940
|
+
return s0({ width: i, height: e, color: h, className: n, onClick: s });
|
|
6873
6941
|
case "burgerMenu":
|
|
6874
|
-
return
|
|
6942
|
+
return h0({ width: i, height: e, color: h, className: n, onClick: s });
|
|
6875
6943
|
case "signOut":
|
|
6876
|
-
return
|
|
6944
|
+
return c0({ width: i, height: e, color: h, className: n, onClick: s });
|
|
6877
6945
|
case "refresh":
|
|
6878
|
-
return
|
|
6946
|
+
return a0({ width: i, height: e, color: h, className: n, onClick: s });
|
|
6879
6947
|
case "projects":
|
|
6880
|
-
return
|
|
6948
|
+
return d0({ width: i, height: e, color: h, className: n, onClick: s });
|
|
6949
|
+
case "exit":
|
|
6950
|
+
return C0({ width: i, height: e, color: h, className: n, onClick: s });
|
|
6881
6951
|
default:
|
|
6882
6952
|
return /* @__PURE__ */ t(K, { children: "No Icon provided" });
|
|
6883
6953
|
}
|
|
6884
6954
|
})() });
|
|
6885
6955
|
};
|
|
6886
6956
|
var U = /* @__PURE__ */ ((o) => (o.GREY_LIGHT_0 = "var(--grey-light-0)", o.GREY_LIGHT_1 = "var(--grey-light-1)", o.GREY_LIGHT_2 = "var(--grey-light-2)", o.GREY_LIGHT_3 = "var(--grey-light-3)", o.GREY_LIGHT_4 = "var(--grey-light-4)", o.GREY_DARK_1 = "var(--grey-dark-1)", o.GREY_DARK_2 = "var(--grey-dark-2)", o.GREY_DARK_3 = "var(--grey-dark-3)", o.GREY_DARK_4 = "var(--grey-dark-4)", o.GREY_DARK_5 = "var(--grey-dark-5)", o.BLUE_PRIMARY = "var(--blue-primary)", o.BLUE_HOVER = "var(--blue-hover)", o.BLUE_LIGHT_1 = "var(--blue-light-1)", o.BLUE_LIGHT_2 = "var(--blue-light-2)", o.BLUE_LIGHT_3 = "var(--blue-light-3)", o.BLUE_LIGHT_4 = "var(--blue-light-4)", o.BLUE_DARK_1 = "var(--blue-dark-1)", o.PURPLE_LIGHT = "var(--purple-light)", o.PURPLE_DARK = "var(--purple-dark)", o.NOTIFICATION_WARNING_LIGHT = "var(--notification-warning-light)", o.NOTIFICATION_WARNING_DARK = "var(--notification-warning-dark)", o.NOTIFICATION_SUCCESS_LIGHT = "var(--notification-success-light)", o.NOTIFICATION_SUCCESS_DARK = "var(--notification-success-dark)", o.NOTIFICATION_ERROR_LIGHT = "var(--notification-error-light)", o.NOTIFICATION_ERROR_DARK = "var(--notification-error-dark)", o.NOTIFICATION_ERROR_DARK_MODE = "var(--notification-error-dark-mode)", o))(U || {});
|
|
6887
|
-
const
|
|
6957
|
+
const g0 = P({
|
|
6888
6958
|
locale: "en",
|
|
6889
6959
|
theme: "light"
|
|
6890
6960
|
});
|
|
6891
|
-
|
|
6961
|
+
g0.Provider;
|
|
6892
6962
|
const u1 = ({
|
|
6893
6963
|
children: o,
|
|
6894
6964
|
width: i,
|
|
@@ -6905,7 +6975,7 @@ const u1 = ({
|
|
|
6905
6975
|
{
|
|
6906
6976
|
className: `snmt-tag ${e} ${a ? "disabled" : ""}`,
|
|
6907
6977
|
closeIcon: /* @__PURE__ */ t(
|
|
6908
|
-
|
|
6978
|
+
w0,
|
|
6909
6979
|
{
|
|
6910
6980
|
name: "errorSmall",
|
|
6911
6981
|
color: a ? U.GREY_DARK_1 : U.GREY_DARK_2,
|
|
@@ -6918,7 +6988,7 @@ const u1 = ({
|
|
|
6918
6988
|
style: { width: i ?? "fit-content" },
|
|
6919
6989
|
closable: r,
|
|
6920
6990
|
children: typeof o == "string" ? /* @__PURE__ */ t(
|
|
6921
|
-
|
|
6991
|
+
G5,
|
|
6922
6992
|
{
|
|
6923
6993
|
variant: e === "small" ? "body4" : "body2",
|
|
6924
6994
|
color: a ? U.GREY_DARK_2 : U.GREY_DARK_5,
|
|
@@ -6927,7 +6997,7 @@ const u1 = ({
|
|
|
6927
6997
|
) : o
|
|
6928
6998
|
}
|
|
6929
6999
|
);
|
|
6930
|
-
},
|
|
7000
|
+
}, k0 = ({
|
|
6931
7001
|
children: o,
|
|
6932
7002
|
content: i,
|
|
6933
7003
|
isOpen: e,
|
|
@@ -6952,7 +7022,7 @@ const u1 = ({
|
|
|
6952
7022
|
}
|
|
6953
7023
|
);
|
|
6954
7024
|
};
|
|
6955
|
-
var
|
|
7025
|
+
var p0 = { exports: {} };
|
|
6956
7026
|
(function(o, i) {
|
|
6957
7027
|
(function(e, l) {
|
|
6958
7028
|
o.exports = l();
|
|
@@ -6962,8 +7032,8 @@ var g6 = { exports: {} };
|
|
|
6962
7032
|
return "[" + e + (l[(r - 20) % 10] || l[r] || l[0]) + "]";
|
|
6963
7033
|
} };
|
|
6964
7034
|
});
|
|
6965
|
-
})(
|
|
6966
|
-
const
|
|
7035
|
+
})(p0);
|
|
7036
|
+
const L0 = ({
|
|
6967
7037
|
values: o,
|
|
6968
7038
|
onTagClose: i,
|
|
6969
7039
|
maxWidth: e,
|
|
@@ -6982,7 +7052,7 @@ const k6 = ({
|
|
|
6982
7052
|
return ((E = a == null ? void 0 : a.find((u) => u.value === f)) == null ? void 0 : E.label) || ((I = k == null ? void 0 : k.find((u) => u.value === f)) == null ? void 0 : I.label) || f;
|
|
6983
7053
|
};
|
|
6984
7054
|
return /* @__PURE__ */ c(
|
|
6985
|
-
|
|
7055
|
+
k0,
|
|
6986
7056
|
{
|
|
6987
7057
|
content: (
|
|
6988
7058
|
// 90: paddings + margins + gaps and so on
|
|
@@ -7101,7 +7171,7 @@ const k6 = ({
|
|
|
7101
7171
|
(d) => {
|
|
7102
7172
|
var m;
|
|
7103
7173
|
return /* @__PURE__ */ t(
|
|
7104
|
-
|
|
7174
|
+
L0,
|
|
7105
7175
|
{
|
|
7106
7176
|
values: d,
|
|
7107
7177
|
onTagClose: Q,
|
|
@@ -7225,7 +7295,7 @@ const k6 = ({
|
|
|
7225
7295
|
);
|
|
7226
7296
|
}
|
|
7227
7297
|
);
|
|
7228
|
-
function
|
|
7298
|
+
function m0(o, i = 500) {
|
|
7229
7299
|
const e = i1();
|
|
7230
7300
|
return G(() => () => {
|
|
7231
7301
|
e.current && clearTimeout(e.current);
|
|
@@ -7239,7 +7309,7 @@ function p6(o, i = 500) {
|
|
|
7239
7309
|
const S = {
|
|
7240
7310
|
limit: 100,
|
|
7241
7311
|
offset: 0
|
|
7242
|
-
},
|
|
7312
|
+
}, x0 = s1(
|
|
7243
7313
|
({
|
|
7244
7314
|
loadOptions: o,
|
|
7245
7315
|
width: i,
|
|
@@ -7277,7 +7347,7 @@ const S = {
|
|
|
7277
7347
|
}
|
|
7278
7348
|
},
|
|
7279
7349
|
[L, o, N]
|
|
7280
|
-
), j =
|
|
7350
|
+
), j = m0(D), H = Z(
|
|
7281
7351
|
(_) => {
|
|
7282
7352
|
_ === "" || _ === void 0 || _ === null ? (v(S), j(!0)) : j(!0, _);
|
|
7283
7353
|
},
|
|
@@ -7325,5 +7395,5 @@ const S = {
|
|
|
7325
7395
|
}
|
|
7326
7396
|
);
|
|
7327
7397
|
export {
|
|
7328
|
-
|
|
7398
|
+
x0 as AsyncSelect
|
|
7329
7399
|
};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@snmt-react-ui/async-select",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "1.7.
|
|
4
|
+
"version": "1.7.1",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/async-select.js",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
@@ -18,10 +18,10 @@
|
|
|
18
18
|
"build": "tsc && vite build"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@snmt-react-ui/select": "^1.15.
|
|
21
|
+
"@snmt-react-ui/select": "^1.15.2"
|
|
22
22
|
},
|
|
23
23
|
"peerDependencies": {
|
|
24
24
|
"antd": "^5.18.3"
|
|
25
25
|
},
|
|
26
|
-
"gitHead": "
|
|
26
|
+
"gitHead": "e38a40d84160f6c34f35008bf384fdb2e9d4d1c3"
|
|
27
27
|
}
|