xmlui 0.9.3 → 0.9.5
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/{apiInterceptorWorker-Y5MxQ95G.mjs → apiInterceptorWorker-Be8IJaBL.mjs} +1 -1
- package/dist/{core-DowI-7YH.mjs → core-XLM8cuFP.mjs} +52 -2
- package/dist/{index-DHAz4bv_.mjs → index-tLddBc_K.mjs} +949 -13483
- package/dist/index.css +82 -78
- package/dist/language-server-web-worker.d.ts +579 -0
- package/dist/language-server-web-worker.mjs +10 -0
- package/dist/language-server.d.ts +14 -14
- package/dist/language-server.mjs +4 -25301
- package/dist/scripts/src/components/App/AppNative.js +2 -2
- package/dist/scripts/src/components/Select/Select.js +3 -1
- package/dist/scripts/src/components/Select/SelectNative.js +2 -2
- package/dist/scripts/src/components-core/theming/transformThemeVars.js +6 -0
- package/dist/server-common-BKe32fY_.mjs +8636 -0
- package/dist/style.css +82 -78
- package/dist/xmlui-metadata.mjs +49 -38
- package/dist/xmlui-metadata.umd.js +49 -38
- package/dist/xmlui-parser.d.ts +14 -14
- package/dist/xmlui-standalone.umd.js +152 -140
- package/dist/xmlui.mjs +10 -10
- package/package.json +10 -1
|
@@ -4627,40 +4627,40 @@ See this source for details: https://css-tricks.com/line-clampin/
|
|
|
4627
4627
|
* This function allows other CSS modules to get the value of the CSS variable specified in $componentVariable.
|
|
4628
4628
|
Optionally, you can provide a $fallbackValue to set the variable's value if that is not defined.
|
|
4629
4629
|
*/
|
|
4630
|
-
.
|
|
4630
|
+
._selectValue_w44f3_13 > span {
|
|
4631
4631
|
font-size: var(--xmlui-fontSize-Select-default);
|
|
4632
4632
|
color: var(--xmlui-textColor-placeholder-Select-default);
|
|
4633
4633
|
}
|
|
4634
|
-
.
|
|
4634
|
+
._selectValue_w44f3_13 > span > div {
|
|
4635
4635
|
color: var(--xmlui-textColor-Select-default);
|
|
4636
4636
|
font-size: var(--xmlui-fontSize-Select-default);
|
|
4637
4637
|
}
|
|
4638
|
-
.
|
|
4638
|
+
._selectValue_w44f3_13._error_w44f3_21 > span {
|
|
4639
4639
|
font-size: var(--xmlui-fontSize-Select-error);
|
|
4640
4640
|
color: var(--xmlui-textColor-placeholder-Select-error);
|
|
4641
4641
|
}
|
|
4642
|
-
.
|
|
4642
|
+
._selectValue_w44f3_13._error_w44f3_21 > span > div {
|
|
4643
4643
|
color: var(--xmlui-textColor-Select-error);
|
|
4644
4644
|
font-size: var(--xmlui-fontSize-Select-error);
|
|
4645
4645
|
}
|
|
4646
|
-
.
|
|
4646
|
+
._selectValue_w44f3_13._warning_w44f3_29 > span {
|
|
4647
4647
|
font-size: var(--xmlui-fontSize-Select-warning);
|
|
4648
4648
|
color: var(--xmlui-textColor-placeholder-Select-warning);
|
|
4649
4649
|
}
|
|
4650
|
-
.
|
|
4650
|
+
._selectValue_w44f3_13._warning_w44f3_29 > span > div {
|
|
4651
4651
|
color: var(--xmlui-textColor-Select-warning);
|
|
4652
4652
|
font-size: var(--xmlui-fontSize-Select-warning);
|
|
4653
4653
|
}
|
|
4654
|
-
.
|
|
4654
|
+
._selectValue_w44f3_13._valid_w44f3_37 > span {
|
|
4655
4655
|
font-size: var(--xmlui-fontSize-Select-success);
|
|
4656
4656
|
color: var(--xmlui-textColor-placeholder-Select-success);
|
|
4657
4657
|
}
|
|
4658
|
-
.
|
|
4658
|
+
._selectValue_w44f3_13._valid_w44f3_37 > span > div {
|
|
4659
4659
|
color: var(--xmlui-textColor-Select-success);
|
|
4660
4660
|
font-size: var(--xmlui-fontSize-Select-success);
|
|
4661
4661
|
}
|
|
4662
4662
|
|
|
4663
|
-
button.
|
|
4663
|
+
button._selectTrigger_w44f3_46 {
|
|
4664
4664
|
min-height: 2.6rem;
|
|
4665
4665
|
display: flex;
|
|
4666
4666
|
padding: var(--xmlui-space-1) var(--xmlui-space-2);
|
|
@@ -4678,22 +4678,22 @@ button._selectTrigger_1o7b6_46 {
|
|
|
4678
4678
|
box-shadow: var(--xmlui-boxShadow-Select-default);
|
|
4679
4679
|
color: var(--xmlui-textColor-Select-default);
|
|
4680
4680
|
}
|
|
4681
|
-
button.
|
|
4681
|
+
button._selectTrigger_w44f3_46:hover {
|
|
4682
4682
|
border-color: var(--xmlui-borderColor-Select-default--hover);
|
|
4683
4683
|
background-color: var(--xmlui-backgroundColor-Select-default--hover);
|
|
4684
4684
|
box-shadow: var(--xmlui-boxShadow-Select-default--hover);
|
|
4685
4685
|
color: var(--xmlui-textColor-Select-default--hover);
|
|
4686
4686
|
}
|
|
4687
|
-
button.
|
|
4687
|
+
button._selectTrigger_w44f3_46:focus {
|
|
4688
4688
|
outline-width: var(--xmlui-outlineWidth-Select-default--focus);
|
|
4689
4689
|
outline-color: var(--xmlui-outlineColor-Select-default--focus);
|
|
4690
4690
|
outline-style: var(--xmlui-outlineStyle-Select-default--focus);
|
|
4691
4691
|
outline-offset: var(--xmlui-outlineOffset-Select-default--focus);
|
|
4692
4692
|
}
|
|
4693
|
-
button.
|
|
4693
|
+
button._selectTrigger_w44f3_46::placeholder {
|
|
4694
4694
|
color: var(--xmlui-textColor-placeholder-Select-default);
|
|
4695
4695
|
}
|
|
4696
|
-
button.
|
|
4696
|
+
button._selectTrigger_w44f3_46._error_w44f3_21 {
|
|
4697
4697
|
border-radius: var(--xmlui-borderRadius-Select-error);
|
|
4698
4698
|
border-color: var(--xmlui-borderColor-Select-error);
|
|
4699
4699
|
border-width: var(--xmlui-borderWidth-Select-error);
|
|
@@ -4703,22 +4703,22 @@ button._selectTrigger_1o7b6_46._error_1o7b6_21 {
|
|
|
4703
4703
|
box-shadow: var(--xmlui-boxShadow-Select-error);
|
|
4704
4704
|
color: var(--xmlui-textColor-Select-error);
|
|
4705
4705
|
}
|
|
4706
|
-
button.
|
|
4706
|
+
button._selectTrigger_w44f3_46._error_w44f3_21:hover {
|
|
4707
4707
|
border-color: var(--xmlui-borderColor-Select-error--hover);
|
|
4708
4708
|
background-color: var(--xmlui-backgroundColor-Select-error--hover);
|
|
4709
4709
|
box-shadow: var(--xmlui-boxShadow-Select-error--hover);
|
|
4710
4710
|
color: var(--xmlui-textColor-Select-error--hover);
|
|
4711
4711
|
}
|
|
4712
|
-
button.
|
|
4712
|
+
button._selectTrigger_w44f3_46._error_w44f3_21:focus {
|
|
4713
4713
|
outline-width: var(--xmlui-outlineWidth-Select-error--focus);
|
|
4714
4714
|
outline-color: var(--xmlui-outlineColor-Select-error--focus);
|
|
4715
4715
|
outline-style: var(--xmlui-outlineStyle-Select-error--focus);
|
|
4716
4716
|
outline-offset: var(--xmlui-outlineOffset-Select-error--focus);
|
|
4717
4717
|
}
|
|
4718
|
-
button.
|
|
4718
|
+
button._selectTrigger_w44f3_46._error_w44f3_21::placeholder {
|
|
4719
4719
|
color: var(--xmlui-textColor-placeholder-Select-error);
|
|
4720
4720
|
}
|
|
4721
|
-
button.
|
|
4721
|
+
button._selectTrigger_w44f3_46._warning_w44f3_29 {
|
|
4722
4722
|
border-radius: var(--xmlui-borderRadius-Select-warning);
|
|
4723
4723
|
border-color: var(--xmlui-borderColor-Select-warning);
|
|
4724
4724
|
border-width: var(--xmlui-borderWidth-Select-warning);
|
|
@@ -4728,22 +4728,22 @@ button._selectTrigger_1o7b6_46._warning_1o7b6_29 {
|
|
|
4728
4728
|
box-shadow: var(--xmlui-boxShadow-Select-warning);
|
|
4729
4729
|
color: var(--xmlui-textColor-Select-warning);
|
|
4730
4730
|
}
|
|
4731
|
-
button.
|
|
4731
|
+
button._selectTrigger_w44f3_46._warning_w44f3_29:hover {
|
|
4732
4732
|
border-color: var(--xmlui-borderColor-Select-warning--hover);
|
|
4733
4733
|
background-color: var(--xmlui-backgroundColor-Select-warning--hover);
|
|
4734
4734
|
box-shadow: var(--xmlui-boxShadow-Select-warning--hover);
|
|
4735
4735
|
color: var(--xmlui-textColor-Select-warning--hover);
|
|
4736
4736
|
}
|
|
4737
|
-
button.
|
|
4737
|
+
button._selectTrigger_w44f3_46._warning_w44f3_29:focus {
|
|
4738
4738
|
outline-width: var(--xmlui-outlineWidth-Select-warning--focus);
|
|
4739
4739
|
outline-color: var(--xmlui-outlineColor-Select-warning--focus);
|
|
4740
4740
|
outline-style: var(--xmlui-outlineStyle-Select-warning--focus);
|
|
4741
4741
|
outline-offset: var(--xmlui-outlineOffset-Select-warning--focus);
|
|
4742
4742
|
}
|
|
4743
|
-
button.
|
|
4743
|
+
button._selectTrigger_w44f3_46._warning_w44f3_29::placeholder {
|
|
4744
4744
|
color: var(--xmlui-textColor-placeholder-Select-warning);
|
|
4745
4745
|
}
|
|
4746
|
-
button.
|
|
4746
|
+
button._selectTrigger_w44f3_46._valid_w44f3_37 {
|
|
4747
4747
|
border-radius: var(--xmlui-borderRadius-Select-success);
|
|
4748
4748
|
border-color: var(--xmlui-borderColor-Select-success);
|
|
4749
4749
|
border-width: var(--xmlui-borderWidth-Select-success);
|
|
@@ -4753,23 +4753,23 @@ button._selectTrigger_1o7b6_46._valid_1o7b6_37 {
|
|
|
4753
4753
|
box-shadow: var(--xmlui-boxShadow-Select-success);
|
|
4754
4754
|
color: var(--xmlui-textColor-Select-success);
|
|
4755
4755
|
}
|
|
4756
|
-
button.
|
|
4756
|
+
button._selectTrigger_w44f3_46._valid_w44f3_37:hover {
|
|
4757
4757
|
border-color: var(--xmlui-borderColor-Select-success--hover);
|
|
4758
4758
|
background-color: var(--xmlui-backgroundColor-Select-success--hover);
|
|
4759
4759
|
box-shadow: var(--xmlui-boxShadow-Select-success--hover);
|
|
4760
4760
|
color: var(--xmlui-textColor-Select-success--hover);
|
|
4761
4761
|
}
|
|
4762
|
-
button.
|
|
4762
|
+
button._selectTrigger_w44f3_46._valid_w44f3_37:focus {
|
|
4763
4763
|
outline-width: var(--xmlui-outlineWidth-Select-success--focus);
|
|
4764
4764
|
outline-color: var(--xmlui-outlineColor-Select-success--focus);
|
|
4765
4765
|
outline-style: var(--xmlui-outlineStyle-Select-success--focus);
|
|
4766
4766
|
outline-offset: var(--xmlui-outlineOffset-Select-success--focus);
|
|
4767
4767
|
}
|
|
4768
|
-
button.
|
|
4768
|
+
button._selectTrigger_w44f3_46._valid_w44f3_37::placeholder {
|
|
4769
4769
|
color: var(--xmlui-textColor-placeholder-Select-success);
|
|
4770
4770
|
}
|
|
4771
4771
|
|
|
4772
|
-
.
|
|
4772
|
+
._selectTrigger_w44f3_46:disabled {
|
|
4773
4773
|
cursor: not-allowed;
|
|
4774
4774
|
opacity: var(--xmlui-opacity-Select--disabled);
|
|
4775
4775
|
background-color: var(--xmlui-backgroundColor-Select--disabled);
|
|
@@ -4777,28 +4777,28 @@ button._selectTrigger_1o7b6_46._valid_1o7b6_37::placeholder {
|
|
|
4777
4777
|
border-color: var(--xmlui-borderColor-Select--disabled);
|
|
4778
4778
|
}
|
|
4779
4779
|
|
|
4780
|
-
.
|
|
4780
|
+
._selectTrigger_w44f3_46 > span {
|
|
4781
4781
|
display: -webkit-box;
|
|
4782
4782
|
-webkit-box-orient: vertical;
|
|
4783
4783
|
-webkit-line-clamp: 1;
|
|
4784
4784
|
overflow: hidden;
|
|
4785
4785
|
}
|
|
4786
4786
|
|
|
4787
|
-
.
|
|
4787
|
+
._badgeListContainer_w44f3_170 {
|
|
4788
4788
|
display: flex;
|
|
4789
4789
|
justify-content: space-between;
|
|
4790
4790
|
align-items: center;
|
|
4791
4791
|
width: 100%;
|
|
4792
4792
|
}
|
|
4793
4793
|
|
|
4794
|
-
.
|
|
4794
|
+
._badgeList_w44f3_170 {
|
|
4795
4795
|
gap: 4px;
|
|
4796
4796
|
display: flex;
|
|
4797
4797
|
flex-wrap: wrap;
|
|
4798
4798
|
align-items: center;
|
|
4799
4799
|
}
|
|
4800
4800
|
|
|
4801
|
-
.
|
|
4801
|
+
._badge_w44f3_170 {
|
|
4802
4802
|
width: fit-content;
|
|
4803
4803
|
height: fit-content;
|
|
4804
4804
|
min-width: 0;
|
|
@@ -4815,27 +4815,27 @@ button._selectTrigger_1o7b6_46._valid_1o7b6_37::placeholder {
|
|
|
4815
4815
|
background-color: var(--xmlui-backgroundColor-Select-badge);
|
|
4816
4816
|
color: var(--xmlui-textColor-Select-badge);
|
|
4817
4817
|
}
|
|
4818
|
-
.
|
|
4818
|
+
._badge_w44f3_170:hover {
|
|
4819
4819
|
background-color: var(--xmlui-backgroundColor-Select-badge--hover);
|
|
4820
4820
|
color: var(--xmlui-textColor-Select-badge--hover);
|
|
4821
4821
|
}
|
|
4822
|
-
.
|
|
4822
|
+
._badge_w44f3_170:active {
|
|
4823
4823
|
background-color: var(--xmlui-backgroundColor-Select-badge--active);
|
|
4824
4824
|
color: var(--xmlui-textColor-Select-badge--active);
|
|
4825
4825
|
}
|
|
4826
4826
|
|
|
4827
|
-
.
|
|
4827
|
+
._actions_w44f3_210 {
|
|
4828
4828
|
display: flex;
|
|
4829
4829
|
align-items: center;
|
|
4830
4830
|
justify-content: space-between;
|
|
4831
4831
|
}
|
|
4832
4832
|
|
|
4833
|
-
.
|
|
4833
|
+
._placeholder_w44f3_216 {
|
|
4834
4834
|
display: block;
|
|
4835
4835
|
color: var(--xmlui-textColor-placeholder-Select);
|
|
4836
4836
|
}
|
|
4837
4837
|
|
|
4838
|
-
.
|
|
4838
|
+
._emptyList_w44f3_221 {
|
|
4839
4839
|
display: flex;
|
|
4840
4840
|
gap: 0.2rem;
|
|
4841
4841
|
padding: 10px 0;
|
|
@@ -4845,7 +4845,7 @@ button._selectTrigger_1o7b6_46._valid_1o7b6_37::placeholder {
|
|
|
4845
4845
|
width: 100%;
|
|
4846
4846
|
}
|
|
4847
4847
|
|
|
4848
|
-
.
|
|
4848
|
+
._selectScrollUpButton_w44f3_231 {
|
|
4849
4849
|
display: flex;
|
|
4850
4850
|
cursor: default;
|
|
4851
4851
|
align-items: center;
|
|
@@ -4854,7 +4854,7 @@ button._selectTrigger_1o7b6_46._valid_1o7b6_37::placeholder {
|
|
|
4854
4854
|
padding-bottom: 0.25rem;
|
|
4855
4855
|
}
|
|
4856
4856
|
|
|
4857
|
-
.
|
|
4857
|
+
._selectScrollDownButton_w44f3_240 {
|
|
4858
4858
|
display: flex;
|
|
4859
4859
|
cursor: default;
|
|
4860
4860
|
align-items: center;
|
|
@@ -4863,7 +4863,7 @@ button._selectTrigger_1o7b6_46._valid_1o7b6_37::placeholder {
|
|
|
4863
4863
|
padding-bottom: 0.25rem;
|
|
4864
4864
|
}
|
|
4865
4865
|
|
|
4866
|
-
.
|
|
4866
|
+
._command_w44f3_249 {
|
|
4867
4867
|
display: flex;
|
|
4868
4868
|
flex-direction: column;
|
|
4869
4869
|
height: 100%;
|
|
@@ -4873,14 +4873,14 @@ button._selectTrigger_1o7b6_46._valid_1o7b6_37::placeholder {
|
|
|
4873
4873
|
background-color: var(--xmlui-backgroundColor-menu-Select);
|
|
4874
4874
|
}
|
|
4875
4875
|
|
|
4876
|
-
.
|
|
4876
|
+
._commandInputContainer_w44f3_259 {
|
|
4877
4877
|
display: flex;
|
|
4878
4878
|
align-items: center;
|
|
4879
4879
|
padding: 0 12px;
|
|
4880
4880
|
border-bottom: 1px solid var(--xmlui-borderColor);
|
|
4881
4881
|
}
|
|
4882
4882
|
|
|
4883
|
-
.
|
|
4883
|
+
._commandInput_w44f3_259 {
|
|
4884
4884
|
flex: 1;
|
|
4885
4885
|
background-color: transparent;
|
|
4886
4886
|
padding: 0.5rem;
|
|
@@ -4888,22 +4888,22 @@ button._selectTrigger_1o7b6_46._valid_1o7b6_37::placeholder {
|
|
|
4888
4888
|
outline: none;
|
|
4889
4889
|
border: none;
|
|
4890
4890
|
}
|
|
4891
|
-
.
|
|
4891
|
+
._commandInput_w44f3_259:focus {
|
|
4892
4892
|
outline: none;
|
|
4893
4893
|
box-shadow: none;
|
|
4894
4894
|
border: 0;
|
|
4895
4895
|
}
|
|
4896
|
-
.
|
|
4896
|
+
._commandInput_w44f3_259:disabled {
|
|
4897
4897
|
cursor: not-allowed;
|
|
4898
4898
|
opacity: var(--xmlui-opacity-Select--disabled);
|
|
4899
4899
|
}
|
|
4900
4900
|
|
|
4901
|
-
.
|
|
4901
|
+
._commandList_w44f3_284 {
|
|
4902
4902
|
overflow-y: auto;
|
|
4903
4903
|
overflow-x: hidden;
|
|
4904
4904
|
}
|
|
4905
4905
|
|
|
4906
|
-
.
|
|
4906
|
+
._selectContent_w44f3_289 {
|
|
4907
4907
|
position: relative;
|
|
4908
4908
|
z-index: 50;
|
|
4909
4909
|
overflow: auto;
|
|
@@ -4912,38 +4912,38 @@ button._selectTrigger_1o7b6_46._valid_1o7b6_37::placeholder {
|
|
|
4912
4912
|
box-shadow: var(--xmlui-boxShadow-menu-Select);
|
|
4913
4913
|
border: var(--xmlui-borderWidth-menu-Select) solid var(--xmlui-borderColor-menu-Select);
|
|
4914
4914
|
}
|
|
4915
|
-
.
|
|
4916
|
-
animation:
|
|
4915
|
+
._selectContent_w44f3_289[data-state=open] {
|
|
4916
|
+
animation: _fadeIn_w44f3_1 0.3s ease-in-out, _zoomIn_w44f3_1 0.3s ease-in-out;
|
|
4917
4917
|
}
|
|
4918
|
-
.
|
|
4919
|
-
animation:
|
|
4918
|
+
._selectContent_w44f3_289[data-state=closed] {
|
|
4919
|
+
animation: _fadeOut_w44f3_1 0.3s ease-in-out, _zoomOut_w44f3_1 0.3s ease-in-out;
|
|
4920
4920
|
}
|
|
4921
|
-
.
|
|
4922
|
-
animation:
|
|
4921
|
+
._selectContent_w44f3_289[data-side=bottom] {
|
|
4922
|
+
animation: _slideInFromTop_w44f3_1 0.08s ease-in-out;
|
|
4923
4923
|
}
|
|
4924
|
-
.
|
|
4925
|
-
animation:
|
|
4924
|
+
._selectContent_w44f3_289[data-side=left] {
|
|
4925
|
+
animation: _slideInFromRight_w44f3_1 0.3s ease-in-out;
|
|
4926
4926
|
}
|
|
4927
|
-
.
|
|
4928
|
-
animation:
|
|
4927
|
+
._selectContent_w44f3_289[data-side=right] {
|
|
4928
|
+
animation: _slideInFromLeft_w44f3_1 0.3s ease-in-out;
|
|
4929
4929
|
}
|
|
4930
|
-
.
|
|
4931
|
-
animation:
|
|
4930
|
+
._selectContent_w44f3_289[data-side=top] {
|
|
4931
|
+
animation: _slideInFromBottom_w44f3_1 0.3s ease-in-out;
|
|
4932
4932
|
}
|
|
4933
|
-
.
|
|
4933
|
+
._selectContent_w44f3_289[data-side=bottom] {
|
|
4934
4934
|
transform: translateY(0.25rem);
|
|
4935
4935
|
}
|
|
4936
|
-
.
|
|
4936
|
+
._selectContent_w44f3_289[data-side=left] {
|
|
4937
4937
|
transform: translateX(-0.25rem);
|
|
4938
4938
|
}
|
|
4939
|
-
.
|
|
4939
|
+
._selectContent_w44f3_289[data-side=right] {
|
|
4940
4940
|
transform: translateX(0.25rem);
|
|
4941
4941
|
}
|
|
4942
|
-
.
|
|
4942
|
+
._selectContent_w44f3_289[data-side=top] {
|
|
4943
4943
|
transform: translateY(-0.25rem);
|
|
4944
4944
|
}
|
|
4945
4945
|
|
|
4946
|
-
.
|
|
4946
|
+
._multiComboboxOption_w44f3_329 {
|
|
4947
4947
|
padding: 0.5rem 1rem;
|
|
4948
4948
|
display: flex;
|
|
4949
4949
|
gap: 1rem;
|
|
@@ -4953,17 +4953,17 @@ button._selectTrigger_1o7b6_46._valid_1o7b6_37::placeholder {
|
|
|
4953
4953
|
transition: background-color 0.2s ease;
|
|
4954
4954
|
background-color: var(--xmlui-backgroundColor-item-Select);
|
|
4955
4955
|
}
|
|
4956
|
-
.
|
|
4956
|
+
._multiComboboxOption_w44f3_329[data-selected=true] {
|
|
4957
4957
|
background-color: var(--xmlui-backgroundColor-item-Select--hover);
|
|
4958
4958
|
}
|
|
4959
|
-
.
|
|
4959
|
+
._multiComboboxOption_w44f3_329[data-disabled=true] {
|
|
4960
4960
|
pointer-events: none;
|
|
4961
4961
|
opacity: var(--xmlui-opacity-text-item-Select--disabled);
|
|
4962
4962
|
cursor: not-allowed;
|
|
4963
4963
|
font-style: italic;
|
|
4964
4964
|
}
|
|
4965
4965
|
|
|
4966
|
-
.
|
|
4966
|
+
._selectItem_w44f3_349 {
|
|
4967
4967
|
position: relative;
|
|
4968
4968
|
display: flex;
|
|
4969
4969
|
width: 100%;
|
|
@@ -4977,21 +4977,21 @@ button._selectTrigger_1o7b6_46._valid_1o7b6_37::placeholder {
|
|
|
4977
4977
|
outline: none;
|
|
4978
4978
|
font-size: var(--xmlui-fontSize-Select);
|
|
4979
4979
|
}
|
|
4980
|
-
.
|
|
4980
|
+
._selectItem_w44f3_349[data-highlighted] {
|
|
4981
4981
|
background-color: var(--xmlui-backgroundColor-item-Select--hover);
|
|
4982
4982
|
}
|
|
4983
|
-
.
|
|
4983
|
+
._selectItem_w44f3_349[data-state=checked] {
|
|
4984
4984
|
background-color: var(--xmlui-backgroundColor-item-Select--active);
|
|
4985
4985
|
}
|
|
4986
4986
|
|
|
4987
|
-
.
|
|
4987
|
+
._selectItem_w44f3_349[data-disabled] {
|
|
4988
4988
|
pointer-events: none;
|
|
4989
4989
|
opacity: var(--xmlui-opacity-text-item-Select--disabled);
|
|
4990
4990
|
cursor: not-allowed;
|
|
4991
4991
|
font-style: italic;
|
|
4992
4992
|
}
|
|
4993
4993
|
|
|
4994
|
-
.
|
|
4994
|
+
._selectItemIndicator_w44f3_377 {
|
|
4995
4995
|
position: absolute;
|
|
4996
4996
|
right: 0.5rem;
|
|
4997
4997
|
display: flex;
|
|
@@ -5002,13 +5002,13 @@ button._selectTrigger_1o7b6_46._valid_1o7b6_37::placeholder {
|
|
|
5002
5002
|
color: var(--xmlui-textColor-indicator-Select);
|
|
5003
5003
|
}
|
|
5004
5004
|
|
|
5005
|
-
.
|
|
5005
|
+
._selectViewport_w44f3_388 {
|
|
5006
5006
|
height: var(--radix-select-trigger-height);
|
|
5007
5007
|
width: 100%;
|
|
5008
5008
|
min-width: var(--radix-select-trigger-width);
|
|
5009
5009
|
}
|
|
5010
5010
|
|
|
5011
|
-
.
|
|
5011
|
+
._selectEmpty_w44f3_394 {
|
|
5012
5012
|
display: flex;
|
|
5013
5013
|
gap: 0.2rem;
|
|
5014
5014
|
height: 100%;
|
|
@@ -5019,7 +5019,11 @@ button._selectTrigger_1o7b6_46._valid_1o7b6_37::placeholder {
|
|
|
5019
5019
|
width: 100%;
|
|
5020
5020
|
}
|
|
5021
5021
|
|
|
5022
|
-
.
|
|
5022
|
+
._loading_w44f3_405 {
|
|
5023
|
+
padding: 0.5rem 1rem;
|
|
5024
|
+
}
|
|
5025
|
+
|
|
5026
|
+
._srOnly_w44f3_409 {
|
|
5023
5027
|
position: absolute;
|
|
5024
5028
|
width: 1px;
|
|
5025
5029
|
height: 1px;
|
|
@@ -5031,7 +5035,7 @@ button._selectTrigger_1o7b6_46._valid_1o7b6_37::placeholder {
|
|
|
5031
5035
|
border: 0;
|
|
5032
5036
|
}
|
|
5033
5037
|
|
|
5034
|
-
@keyframes
|
|
5038
|
+
@keyframes _fadeIn_w44f3_1 {
|
|
5035
5039
|
from {
|
|
5036
5040
|
opacity: 0;
|
|
5037
5041
|
}
|
|
@@ -5039,7 +5043,7 @@ button._selectTrigger_1o7b6_46._valid_1o7b6_37::placeholder {
|
|
|
5039
5043
|
opacity: 1;
|
|
5040
5044
|
}
|
|
5041
5045
|
}
|
|
5042
|
-
@keyframes
|
|
5046
|
+
@keyframes _fadeOut_w44f3_1 {
|
|
5043
5047
|
from {
|
|
5044
5048
|
opacity: 1;
|
|
5045
5049
|
}
|
|
@@ -5047,7 +5051,7 @@ button._selectTrigger_1o7b6_46._valid_1o7b6_37::placeholder {
|
|
|
5047
5051
|
opacity: 0;
|
|
5048
5052
|
}
|
|
5049
5053
|
}
|
|
5050
|
-
@keyframes
|
|
5054
|
+
@keyframes _zoomIn_w44f3_1 {
|
|
5051
5055
|
from {
|
|
5052
5056
|
transform: scale(0.95);
|
|
5053
5057
|
}
|
|
@@ -5055,7 +5059,7 @@ button._selectTrigger_1o7b6_46._valid_1o7b6_37::placeholder {
|
|
|
5055
5059
|
transform: scale(1);
|
|
5056
5060
|
}
|
|
5057
5061
|
}
|
|
5058
|
-
@keyframes
|
|
5062
|
+
@keyframes _zoomOut_w44f3_1 {
|
|
5059
5063
|
from {
|
|
5060
5064
|
transform: scale(1);
|
|
5061
5065
|
}
|
|
@@ -5063,7 +5067,7 @@ button._selectTrigger_1o7b6_46._valid_1o7b6_37::placeholder {
|
|
|
5063
5067
|
transform: scale(0.95);
|
|
5064
5068
|
}
|
|
5065
5069
|
}
|
|
5066
|
-
@keyframes
|
|
5070
|
+
@keyframes _slideInFromTop_w44f3_1 {
|
|
5067
5071
|
from {
|
|
5068
5072
|
transform: translateY(-0.75rem);
|
|
5069
5073
|
}
|
|
@@ -5071,7 +5075,7 @@ button._selectTrigger_1o7b6_46._valid_1o7b6_37::placeholder {
|
|
|
5071
5075
|
transform: translateY(0);
|
|
5072
5076
|
}
|
|
5073
5077
|
}
|
|
5074
|
-
@keyframes
|
|
5078
|
+
@keyframes _slideInFromBottom_w44f3_1 {
|
|
5075
5079
|
from {
|
|
5076
5080
|
transform: translateY(0.75rem);
|
|
5077
5081
|
}
|
|
@@ -5079,7 +5083,7 @@ button._selectTrigger_1o7b6_46._valid_1o7b6_37::placeholder {
|
|
|
5079
5083
|
transform: translateY(0);
|
|
5080
5084
|
}
|
|
5081
5085
|
}
|
|
5082
|
-
@keyframes
|
|
5086
|
+
@keyframes _slideInFromLeft_w44f3_1 {
|
|
5083
5087
|
from {
|
|
5084
5088
|
transform: translateX(-100%);
|
|
5085
5089
|
}
|
|
@@ -5087,7 +5091,7 @@ button._selectTrigger_1o7b6_46._valid_1o7b6_37::placeholder {
|
|
|
5087
5091
|
transform: translateX(0);
|
|
5088
5092
|
}
|
|
5089
5093
|
}
|
|
5090
|
-
@keyframes
|
|
5094
|
+
@keyframes _slideInFromRight_w44f3_1 {
|
|
5091
5095
|
from {
|
|
5092
5096
|
transform: translateX(100%);
|
|
5093
5097
|
}
|
|
@@ -16005,7 +16009,7 @@ li ._htmlOl_1wzn5_205 {
|
|
|
16005
16009
|
});
|
|
16006
16010
|
}
|
|
16007
16011
|
}
|
|
16008
|
-
var define_process_env_default$9 = { NODE_ENV: "production", VITE_MOCK_ENABLED: true, VITE_MOCK_WORKER_LOCATION: "mockApi.js", VITE_USED_COMPONENTS_Pdf: "false", VITE_USED_COMPONENTS_Chart: "false", VITE_USER_COMPONENTS_XmluiCodeHightlighter: "false", VITE_USED_COMPONENTS_Tree: "false", VITE_XMLUI_VERSION: "0.9.
|
|
16012
|
+
var define_process_env_default$9 = { NODE_ENV: "production", VITE_MOCK_ENABLED: true, VITE_MOCK_WORKER_LOCATION: "mockApi.js", VITE_USED_COMPONENTS_Pdf: "false", VITE_USED_COMPONENTS_Chart: "false", VITE_USER_COMPONENTS_XmluiCodeHightlighter: "false", VITE_USED_COMPONENTS_Tree: "false", VITE_XMLUI_VERSION: "0.9.5 (built 4/3/2025)" };
|
|
16009
16013
|
class Mutation extends Removable {
|
|
16010
16014
|
constructor(config2) {
|
|
16011
16015
|
super();
|
|
@@ -35651,7 +35655,7 @@ ${error2.errorObject}`;
|
|
|
35651
35655
|
name: name2
|
|
35652
35656
|
}) {
|
|
35653
35657
|
const { getThemeVar } = useTheme();
|
|
35654
|
-
const { setActiveThemeTone, setActiveThemeId } = useThemes();
|
|
35658
|
+
const { setActiveThemeTone, setActiveThemeId, themes } = useThemes();
|
|
35655
35659
|
const mounted = reactExports.useRef(false);
|
|
35656
35660
|
const layoutWithDefaultValue = layout || getThemeVar("layout-App") || "condensed-sticky";
|
|
35657
35661
|
const safeLayout = layoutWithDefaultValue == null ? void 0 : layoutWithDefaultValue.trim().replace(/[\u2013\u2014\u2011]/g, "-");
|
|
@@ -35683,7 +35687,7 @@ ${error2.errorObject}`;
|
|
|
35683
35687
|
return () => {
|
|
35684
35688
|
mounted.current = false;
|
|
35685
35689
|
};
|
|
35686
|
-
}, [defaultTone, defaultTheme, setActiveThemeTone, setActiveThemeId]);
|
|
35690
|
+
}, [defaultTone, defaultTheme, setActiveThemeTone, setActiveThemeId, themes]);
|
|
35687
35691
|
reactExports.useEffect(() => {
|
|
35688
35692
|
onReady();
|
|
35689
35693
|
}, [onReady]);
|
|
@@ -49469,6 +49473,10 @@ ${error2.errorObject}`;
|
|
|
49469
49473
|
const result = { ...theme2 };
|
|
49470
49474
|
Object.entries(theme2).forEach(([key, value]) => {
|
|
49471
49475
|
var _a3, _b2, _c2, _d, _e2, _f, _g, _h, _i, _j, _k, _l, _m, _n2, _o, _p, _q, _r, _s, _t2;
|
|
49476
|
+
if (value === null || value === void 0) {
|
|
49477
|
+
delete result[key];
|
|
49478
|
+
return;
|
|
49479
|
+
}
|
|
49472
49480
|
let match2 = paddingHorizontalRegEx.exec(key);
|
|
49473
49481
|
if (match2) {
|
|
49474
49482
|
const remainder2 = match2[1];
|
|
@@ -50343,7 +50351,7 @@ ${error2.errorObject}`;
|
|
|
50343
50351
|
data = EMPTY_ARRAY,
|
|
50344
50352
|
columns = EMPTY_ARRAY,
|
|
50345
50353
|
isPaginated = false,
|
|
50346
|
-
loading = false,
|
|
50354
|
+
loading: loading2 = false,
|
|
50347
50355
|
headerHeight,
|
|
50348
50356
|
rowsSelectable = false,
|
|
50349
50357
|
enableMultiRowSelection = true,
|
|
@@ -50853,8 +50861,8 @@ ${error2.errorObject}`;
|
|
|
50853
50861
|
]
|
|
50854
50862
|
}
|
|
50855
50863
|
),
|
|
50856
|
-
|
|
50857
|
-
!hideNoDataView && !
|
|
50864
|
+
loading2 && !hasData && /* @__PURE__ */ jsxRuntimeExports.jsx("div", { className: styles$R.loadingWrapper, children: /* @__PURE__ */ jsxRuntimeExports.jsx(Spinner, {}) }),
|
|
50865
|
+
!hideNoDataView && !loading2 && !hasData && (noDataRenderer ? noDataRenderer() : /* @__PURE__ */ jsxRuntimeExports.jsx("div", { className: styles$R.noRows, children: "No data available" })),
|
|
50858
50866
|
isPaginated && hasData && rows.length > 0 && pagination2 && // --- Render the pagination controls
|
|
50859
50867
|
/* @__PURE__ */ jsxRuntimeExports.jsxs("div", { className: styles$R.pagination, children: [
|
|
50860
50868
|
/* @__PURE__ */ jsxRuntimeExports.jsx("div", { style: { flex: 1 }, children: /* @__PURE__ */ jsxRuntimeExports.jsxs("span", { className: styles$R.paginationLabel, children: [
|
|
@@ -56374,7 +56382,7 @@ to {
|
|
|
56374
56382
|
itemRenderer = defaultItemRenderer,
|
|
56375
56383
|
sectionRenderer,
|
|
56376
56384
|
sectionFooterRenderer,
|
|
56377
|
-
loading,
|
|
56385
|
+
loading: loading2,
|
|
56378
56386
|
limit,
|
|
56379
56387
|
groupBy: groupBy2,
|
|
56380
56388
|
orderBy: orderBy2,
|
|
@@ -56537,8 +56545,8 @@ to {
|
|
|
56537
56545
|
[styles$E.hasOutsideScroll]: hasOutsideScroll2
|
|
56538
56546
|
}),
|
|
56539
56547
|
children: [
|
|
56540
|
-
|
|
56541
|
-
!
|
|
56548
|
+
loading2 && rows.length === 0 && /* @__PURE__ */ jsxRuntimeExports.jsx("div", { className: styles$E.loadingWrapper, children: /* @__PURE__ */ jsxRuntimeExports.jsx(Spinner, {}) }),
|
|
56549
|
+
!loading2 && rows.length === 0 && (emptyListPlaceholder ?? /* @__PURE__ */ jsxRuntimeExports.jsx("div", { className: styles$E.noRows, children: /* @__PURE__ */ jsxRuntimeExports.jsx(Text, { children: "No data available" }) })),
|
|
56542
56550
|
rows.length > 0 && /* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
56543
56551
|
"div",
|
|
56544
56552
|
{
|
|
@@ -56933,7 +56941,7 @@ to {
|
|
|
56933
56941
|
return localDate.now() - initialTime;
|
|
56934
56942
|
};
|
|
56935
56943
|
}
|
|
56936
|
-
var taskQueue = [], timerQueue = [], taskIdCounter = 1, currentTask = null, currentPriorityLevel = 3, isPerformingWork = false, isHostCallbackScheduled = false, isHostTimeoutScheduled = false, localSetTimeout = "function" === typeof setTimeout ? setTimeout : null, localClearTimeout = "function" === typeof clearTimeout ? clearTimeout : null, localSetImmediate = "undefined" !== typeof setImmediate ? setImmediate : null;
|
|
56944
|
+
var taskQueue = [], timerQueue = [], taskIdCounter = 1, currentTask = null, currentPriorityLevel = 3, isPerformingWork = false, isHostCallbackScheduled = false, isHostTimeoutScheduled = false, needsPaint = false, localSetTimeout = "function" === typeof setTimeout ? setTimeout : null, localClearTimeout = "function" === typeof clearTimeout ? clearTimeout : null, localSetImmediate = "undefined" !== typeof setImmediate ? setImmediate : null;
|
|
56937
56945
|
function advanceTimers(currentTime) {
|
|
56938
56946
|
for (var timer = peek(timerQueue); null !== timer; ) {
|
|
56939
56947
|
if (null === timer.callback) pop(timerQueue);
|
|
@@ -56948,7 +56956,7 @@ to {
|
|
|
56948
56956
|
advanceTimers(currentTime);
|
|
56949
56957
|
if (!isHostCallbackScheduled)
|
|
56950
56958
|
if (null !== peek(taskQueue))
|
|
56951
|
-
isHostCallbackScheduled = true,
|
|
56959
|
+
isHostCallbackScheduled = true, isMessageLoopRunning || (isMessageLoopRunning = true, schedulePerformWorkUntilDeadline());
|
|
56952
56960
|
else {
|
|
56953
56961
|
var firstTimer = peek(timerQueue);
|
|
56954
56962
|
null !== firstTimer && requestHostTimeout(handleTimeout, firstTimer.startTime - currentTime);
|
|
@@ -56956,9 +56964,10 @@ to {
|
|
|
56956
56964
|
}
|
|
56957
56965
|
var isMessageLoopRunning = false, taskTimeoutID = -1, frameInterval = 5, startTime = -1;
|
|
56958
56966
|
function shouldYieldToHost() {
|
|
56959
|
-
return exports2.unstable_now() - startTime < frameInterval ? false : true;
|
|
56967
|
+
return needsPaint ? true : exports2.unstable_now() - startTime < frameInterval ? false : true;
|
|
56960
56968
|
}
|
|
56961
56969
|
function performWorkUntilDeadline() {
|
|
56970
|
+
needsPaint = false;
|
|
56962
56971
|
if (isMessageLoopRunning) {
|
|
56963
56972
|
var currentTime = exports2.unstable_now();
|
|
56964
56973
|
startTime = currentTime;
|
|
@@ -57028,9 +57037,6 @@ to {
|
|
|
57028
57037
|
schedulePerformWorkUntilDeadline = function() {
|
|
57029
57038
|
localSetTimeout(performWorkUntilDeadline, 0);
|
|
57030
57039
|
};
|
|
57031
|
-
function requestHostCallback() {
|
|
57032
|
-
isMessageLoopRunning || (isMessageLoopRunning = true, schedulePerformWorkUntilDeadline());
|
|
57033
|
-
}
|
|
57034
57040
|
function requestHostTimeout(callback, ms) {
|
|
57035
57041
|
taskTimeoutID = localSetTimeout(function() {
|
|
57036
57042
|
callback(exports2.unstable_now());
|
|
@@ -57045,9 +57051,6 @@ to {
|
|
|
57045
57051
|
exports2.unstable_cancelCallback = function(task) {
|
|
57046
57052
|
task.callback = null;
|
|
57047
57053
|
};
|
|
57048
|
-
exports2.unstable_continueExecution = function() {
|
|
57049
|
-
isHostCallbackScheduled || isPerformingWork || (isHostCallbackScheduled = true, requestHostCallback());
|
|
57050
|
-
};
|
|
57051
57054
|
exports2.unstable_forceFrameRate = function(fps) {
|
|
57052
57055
|
0 > fps || 125 < fps ? console.error(
|
|
57053
57056
|
"forceFrameRate takes a positive int between 0 and 125, forcing frame rates higher than 125 fps is not supported"
|
|
@@ -57056,9 +57059,6 @@ to {
|
|
|
57056
57059
|
exports2.unstable_getCurrentPriorityLevel = function() {
|
|
57057
57060
|
return currentPriorityLevel;
|
|
57058
57061
|
};
|
|
57059
|
-
exports2.unstable_getFirstCallbackNode = function() {
|
|
57060
|
-
return peek(taskQueue);
|
|
57061
|
-
};
|
|
57062
57062
|
exports2.unstable_next = function(eventHandler) {
|
|
57063
57063
|
switch (currentPriorityLevel) {
|
|
57064
57064
|
case 1:
|
|
@@ -57077,9 +57077,8 @@ to {
|
|
|
57077
57077
|
currentPriorityLevel = previousPriorityLevel;
|
|
57078
57078
|
}
|
|
57079
57079
|
};
|
|
57080
|
-
exports2.unstable_pauseExecution = function() {
|
|
57081
|
-
};
|
|
57082
57080
|
exports2.unstable_requestPaint = function() {
|
|
57081
|
+
needsPaint = true;
|
|
57083
57082
|
};
|
|
57084
57083
|
exports2.unstable_runWithPriority = function(priorityLevel, eventHandler) {
|
|
57085
57084
|
switch (priorityLevel) {
|
|
@@ -57128,7 +57127,7 @@ to {
|
|
|
57128
57127
|
expirationTime: timeout,
|
|
57129
57128
|
sortIndex: -1
|
|
57130
57129
|
};
|
|
57131
|
-
options2 > currentTime ? (priorityLevel.sortIndex = options2, push2(timerQueue, priorityLevel), null === peek(taskQueue) && priorityLevel === peek(timerQueue) && (isHostTimeoutScheduled ? (localClearTimeout(taskTimeoutID), taskTimeoutID = -1) : isHostTimeoutScheduled = true, requestHostTimeout(handleTimeout, options2 - currentTime))) : (priorityLevel.sortIndex = timeout, push2(taskQueue, priorityLevel), isHostCallbackScheduled || isPerformingWork || (isHostCallbackScheduled = true,
|
|
57130
|
+
options2 > currentTime ? (priorityLevel.sortIndex = options2, push2(timerQueue, priorityLevel), null === peek(taskQueue) && priorityLevel === peek(timerQueue) && (isHostTimeoutScheduled ? (localClearTimeout(taskTimeoutID), taskTimeoutID = -1) : isHostTimeoutScheduled = true, requestHostTimeout(handleTimeout, options2 - currentTime))) : (priorityLevel.sortIndex = timeout, push2(taskQueue, priorityLevel), isHostCallbackScheduled || isPerformingWork || (isHostCallbackScheduled = true, isMessageLoopRunning || (isMessageLoopRunning = true, schedulePerformWorkUntilDeadline())));
|
|
57132
57131
|
return priorityLevel;
|
|
57133
57132
|
};
|
|
57134
57133
|
exports2.unstable_shouldYield = shouldYieldToHost;
|
|
@@ -66642,38 +66641,39 @@ For more information, see https://radix-ui.com/primitives/docs/components/${titl
|
|
|
66642
66641
|
}
|
|
66643
66642
|
var Te$1 = { position: "absolute", width: "1px", height: "1px", padding: "0", margin: "-1px", overflow: "hidden", clip: "rect(0, 0, 0, 0)", whiteSpace: "nowrap", borderWidth: "0" };
|
|
66644
66643
|
const themeVars$j = `'{"Input:fontSize-Select-default": "var(--xmlui-fontSize-Select-default)", "Input:textColor-placeholder-Select-default": "var(--xmlui-textColor-placeholder-Select-default)", "Input:textColor-Select-default": "var(--xmlui-textColor-Select-default)", "Input:fontSize-Select-error": "var(--xmlui-fontSize-Select-error)", "Input:textColor-placeholder-Select-error": "var(--xmlui-textColor-placeholder-Select-error)", "Input:textColor-Select-error": "var(--xmlui-textColor-Select-error)", "Input:fontSize-Select-warning": "var(--xmlui-fontSize-Select-warning)", "Input:textColor-placeholder-Select-warning": "var(--xmlui-textColor-placeholder-Select-warning)", "Input:textColor-Select-warning": "var(--xmlui-textColor-Select-warning)", "Input:fontSize-Select-success": "var(--xmlui-fontSize-Select-success)", "Input:textColor-placeholder-Select-success": "var(--xmlui-textColor-placeholder-Select-success)", "Input:textColor-Select-success": "var(--xmlui-textColor-Select-success)", "Input:borderRadius-Select-default": "var(--xmlui-borderRadius-Select-default)", "Input:borderColor-Select-default": "var(--xmlui-borderColor-Select-default)", "Input:borderWidth-Select-default": "var(--xmlui-borderWidth-Select-default)", "Input:borderStyle-Select-default": "var(--xmlui-borderStyle-Select-default)", "Input:backgroundColor-Select-default": "var(--xmlui-backgroundColor-Select-default)", "Input:boxShadow-Select-default": "var(--xmlui-boxShadow-Select-default)", "Input:borderColor-Select-default--hover": "var(--xmlui-borderColor-Select-default--hover)", "Input:backgroundColor-Select-default--hover": "var(--xmlui-backgroundColor-Select-default--hover)", "Input:boxShadow-Select-default--hover": "var(--xmlui-boxShadow-Select-default--hover)", "Input:textColor-Select-default--hover": "var(--xmlui-textColor-Select-default--hover)", "Input:outlineWidth-Select-default--focus": "var(--xmlui-outlineWidth-Select-default--focus)", "Input:outlineColor-Select-default--focus": "var(--xmlui-outlineColor-Select-default--focus)", "Input:outlineStyle-Select-default--focus": "var(--xmlui-outlineStyle-Select-default--focus)", "Input:outlineOffset-Select-default--focus": "var(--xmlui-outlineOffset-Select-default--focus)", "Input:borderRadius-Select-error": "var(--xmlui-borderRadius-Select-error)", "Input:borderColor-Select-error": "var(--xmlui-borderColor-Select-error)", "Input:borderWidth-Select-error": "var(--xmlui-borderWidth-Select-error)", "Input:borderStyle-Select-error": "var(--xmlui-borderStyle-Select-error)", "Input:backgroundColor-Select-error": "var(--xmlui-backgroundColor-Select-error)", "Input:boxShadow-Select-error": "var(--xmlui-boxShadow-Select-error)", "Input:borderColor-Select-error--hover": "var(--xmlui-borderColor-Select-error--hover)", "Input:backgroundColor-Select-error--hover": "var(--xmlui-backgroundColor-Select-error--hover)", "Input:boxShadow-Select-error--hover": "var(--xmlui-boxShadow-Select-error--hover)", "Input:textColor-Select-error--hover": "var(--xmlui-textColor-Select-error--hover)", "Input:outlineWidth-Select-error--focus": "var(--xmlui-outlineWidth-Select-error--focus)", "Input:outlineColor-Select-error--focus": "var(--xmlui-outlineColor-Select-error--focus)", "Input:outlineStyle-Select-error--focus": "var(--xmlui-outlineStyle-Select-error--focus)", "Input:outlineOffset-Select-error--focus": "var(--xmlui-outlineOffset-Select-error--focus)", "Input:borderRadius-Select-warning": "var(--xmlui-borderRadius-Select-warning)", "Input:borderColor-Select-warning": "var(--xmlui-borderColor-Select-warning)", "Input:borderWidth-Select-warning": "var(--xmlui-borderWidth-Select-warning)", "Input:borderStyle-Select-warning": "var(--xmlui-borderStyle-Select-warning)", "Input:backgroundColor-Select-warning": "var(--xmlui-backgroundColor-Select-warning)", "Input:boxShadow-Select-warning": "var(--xmlui-boxShadow-Select-warning)", "Input:borderColor-Select-warning--hover": "var(--xmlui-borderColor-Select-warning--hover)", "Input:backgroundColor-Select-warning--hover": "var(--xmlui-backgroundColor-Select-warning--hover)", "Input:boxShadow-Select-warning--hover": "var(--xmlui-boxShadow-Select-warning--hover)", "Input:textColor-Select-warning--hover": "var(--xmlui-textColor-Select-warning--hover)", "Input:outlineWidth-Select-warning--focus": "var(--xmlui-outlineWidth-Select-warning--focus)", "Input:outlineColor-Select-warning--focus": "var(--xmlui-outlineColor-Select-warning--focus)", "Input:outlineStyle-Select-warning--focus": "var(--xmlui-outlineStyle-Select-warning--focus)", "Input:outlineOffset-Select-warning--focus": "var(--xmlui-outlineOffset-Select-warning--focus)", "Input:borderRadius-Select-success": "var(--xmlui-borderRadius-Select-success)", "Input:borderColor-Select-success": "var(--xmlui-borderColor-Select-success)", "Input:borderWidth-Select-success": "var(--xmlui-borderWidth-Select-success)", "Input:borderStyle-Select-success": "var(--xmlui-borderStyle-Select-success)", "Input:backgroundColor-Select-success": "var(--xmlui-backgroundColor-Select-success)", "Input:boxShadow-Select-success": "var(--xmlui-boxShadow-Select-success)", "Input:borderColor-Select-success--hover": "var(--xmlui-borderColor-Select-success--hover)", "Input:backgroundColor-Select-success--hover": "var(--xmlui-backgroundColor-Select-success--hover)", "Input:boxShadow-Select-success--hover": "var(--xmlui-boxShadow-Select-success--hover)", "Input:textColor-Select-success--hover": "var(--xmlui-textColor-Select-success--hover)", "Input:outlineWidth-Select-success--focus": "var(--xmlui-outlineWidth-Select-success--focus)", "Input:outlineColor-Select-success--focus": "var(--xmlui-outlineColor-Select-success--focus)", "Input:outlineStyle-Select-success--focus": "var(--xmlui-outlineStyle-Select-success--focus)", "Input:outlineOffset-Select-success--focus": "var(--xmlui-outlineOffset-Select-success--focus)", "opacity-Select--disabled": "var(--xmlui-opacity-Select--disabled)", "Input:backgroundColor-Select--disabled": "var(--xmlui-backgroundColor-Select--disabled)", "Input:textColor-Select--disabled": "var(--xmlui-textColor-Select--disabled)", "Input:borderColor-Select--disabled": "var(--xmlui-borderColor-Select--disabled)", "paddingVertical-Select-badge": "var(--xmlui-paddingVertical-Select-badge)", "paddingHorizontal-Select-badge": "var(--xmlui-paddingHorizontal-Select-badge)", "Input:fontSize-Select-badge": "var(--xmlui-fontSize-Select-badge)", "Input:backgroundColor-Select-badge": "var(--xmlui-backgroundColor-Select-badge)", "Input:textColor-Select-badge": "var(--xmlui-textColor-Select-badge)", "Input:backgroundColor-Select-badge--hover": "var(--xmlui-backgroundColor-Select-badge--hover)", "Input:textColor-Select-badge--hover": "var(--xmlui-textColor-Select-badge--hover)", "Input:backgroundColor-Select-badge--active": "var(--xmlui-backgroundColor-Select-badge--active)", "Input:textColor-Select-badge--active": "var(--xmlui-textColor-Select-badge--active)", "Input:textColor-placeholder-Select": "var(--xmlui-textColor-placeholder-Select)", "Input:backgroundColor-menu-Select": "var(--xmlui-backgroundColor-menu-Select)", "Input:borderRadius-menu-Select": "var(--xmlui-borderRadius-menu-Select)", "Input:boxShadow-menu-Select": "var(--xmlui-boxShadow-menu-Select)", "Input:borderWidth-menu-Select": "var(--xmlui-borderWidth-menu-Select)", "Input:borderColor-menu-Select": "var(--xmlui-borderColor-menu-Select)", "backgroundColor-item-Select": "var(--xmlui-backgroundColor-item-Select)", "backgroundColor-item-Select--hover": "var(--xmlui-backgroundColor-item-Select--hover)", "opacity-text-item-Select--disabled": "var(--xmlui-opacity-text-item-Select--disabled)", "fontSize-Select": "var(--xmlui-fontSize-Select)", "backgroundColor-item-Select--active": "var(--xmlui-backgroundColor-item-Select--active)", "textColor-indicator-Select": "var(--xmlui-textColor-indicator-Select)"}'`;
|
|
66645
|
-
const selectValue = "
|
|
66646
|
-
const error$9 = "
|
|
66647
|
-
const warning$7 = "
|
|
66648
|
-
const valid$b = "
|
|
66649
|
-
const selectTrigger = "
|
|
66650
|
-
const badgeListContainer = "
|
|
66651
|
-
const badgeList$1 = "
|
|
66652
|
-
const badge$1 = "
|
|
66653
|
-
const actions$2 = "
|
|
66654
|
-
const placeholder$1 = "
|
|
66655
|
-
const emptyList = "
|
|
66656
|
-
const selectScrollUpButton = "
|
|
66657
|
-
const selectScrollDownButton = "
|
|
66658
|
-
const command$1 = "
|
|
66659
|
-
const commandInputContainer = "
|
|
66660
|
-
const commandInput$1 = "
|
|
66661
|
-
const commandList$1 = "
|
|
66662
|
-
const selectContent = "
|
|
66663
|
-
const fadeIn = "
|
|
66664
|
-
const zoomIn = "
|
|
66665
|
-
const fadeOut = "
|
|
66666
|
-
const zoomOut = "
|
|
66667
|
-
const slideInFromTop = "
|
|
66668
|
-
const slideInFromRight = "
|
|
66669
|
-
const slideInFromLeft = "
|
|
66670
|
-
const slideInFromBottom = "
|
|
66671
|
-
const multiComboboxOption = "
|
|
66672
|
-
const selectItem = "
|
|
66673
|
-
const selectItemIndicator = "
|
|
66674
|
-
const selectViewport = "
|
|
66675
|
-
const selectEmpty = "
|
|
66676
|
-
const
|
|
66644
|
+
const selectValue = "_selectValue_w44f3_13";
|
|
66645
|
+
const error$9 = "_error_w44f3_21";
|
|
66646
|
+
const warning$7 = "_warning_w44f3_29";
|
|
66647
|
+
const valid$b = "_valid_w44f3_37";
|
|
66648
|
+
const selectTrigger = "_selectTrigger_w44f3_46";
|
|
66649
|
+
const badgeListContainer = "_badgeListContainer_w44f3_170";
|
|
66650
|
+
const badgeList$1 = "_badgeList_w44f3_170";
|
|
66651
|
+
const badge$1 = "_badge_w44f3_170";
|
|
66652
|
+
const actions$2 = "_actions_w44f3_210";
|
|
66653
|
+
const placeholder$1 = "_placeholder_w44f3_216";
|
|
66654
|
+
const emptyList = "_emptyList_w44f3_221";
|
|
66655
|
+
const selectScrollUpButton = "_selectScrollUpButton_w44f3_231";
|
|
66656
|
+
const selectScrollDownButton = "_selectScrollDownButton_w44f3_240";
|
|
66657
|
+
const command$1 = "_command_w44f3_249";
|
|
66658
|
+
const commandInputContainer = "_commandInputContainer_w44f3_259";
|
|
66659
|
+
const commandInput$1 = "_commandInput_w44f3_259";
|
|
66660
|
+
const commandList$1 = "_commandList_w44f3_284";
|
|
66661
|
+
const selectContent = "_selectContent_w44f3_289";
|
|
66662
|
+
const fadeIn = "_fadeIn_w44f3_1";
|
|
66663
|
+
const zoomIn = "_zoomIn_w44f3_1";
|
|
66664
|
+
const fadeOut = "_fadeOut_w44f3_1";
|
|
66665
|
+
const zoomOut = "_zoomOut_w44f3_1";
|
|
66666
|
+
const slideInFromTop = "_slideInFromTop_w44f3_1";
|
|
66667
|
+
const slideInFromRight = "_slideInFromRight_w44f3_1";
|
|
66668
|
+
const slideInFromLeft = "_slideInFromLeft_w44f3_1";
|
|
66669
|
+
const slideInFromBottom = "_slideInFromBottom_w44f3_1";
|
|
66670
|
+
const multiComboboxOption = "_multiComboboxOption_w44f3_329";
|
|
66671
|
+
const selectItem = "_selectItem_w44f3_349";
|
|
66672
|
+
const selectItemIndicator = "_selectItemIndicator_w44f3_377";
|
|
66673
|
+
const selectViewport = "_selectViewport_w44f3_388";
|
|
66674
|
+
const selectEmpty = "_selectEmpty_w44f3_394";
|
|
66675
|
+
const loading = "_loading_w44f3_405";
|
|
66676
|
+
const srOnly = "_srOnly_w44f3_409";
|
|
66677
66677
|
const styles$y = {
|
|
66678
66678
|
themeVars: themeVars$j,
|
|
66679
66679
|
selectValue,
|
|
@@ -66707,6 +66707,7 @@ For more information, see https://radix-ui.com/primitives/docs/components/${titl
|
|
|
66707
66707
|
selectItemIndicator,
|
|
66708
66708
|
selectViewport,
|
|
66709
66709
|
selectEmpty,
|
|
66710
|
+
loading,
|
|
66710
66711
|
srOnly
|
|
66711
66712
|
};
|
|
66712
66713
|
const SelectContext = reactExports.createContext(null);
|
|
@@ -66826,7 +66827,9 @@ For more information, see https://radix-ui.com/primitives/docs/components/${titl
|
|
|
66826
66827
|
labelPosition,
|
|
66827
66828
|
labelWidth,
|
|
66828
66829
|
labelBreak: labelBreak2,
|
|
66829
|
-
required: required2 = false
|
|
66830
|
+
required: required2 = false,
|
|
66831
|
+
inProgress = false,
|
|
66832
|
+
inProgressNotificationMessage = "Loading..."
|
|
66830
66833
|
}, ref) {
|
|
66831
66834
|
var _a3;
|
|
66832
66835
|
const [referenceElement, setReferenceElement] = reactExports.useState(null);
|
|
@@ -67016,6 +67019,7 @@ For more information, see https://radix-ui.com/primitives/docs/components/${titl
|
|
|
67016
67019
|
/* @__PURE__ */ jsxRuntimeExports.jsx("button", { autoFocus: true, "aria-hidden": "true", className: styles$y.srOnly })
|
|
67017
67020
|
),
|
|
67018
67021
|
/* @__PURE__ */ jsxRuntimeExports.jsxs(Ce$1, { className: styles$y.commandList, children: [
|
|
67022
|
+
inProgress && /* @__PURE__ */ jsxRuntimeExports.jsx("div", { className: styles$y.loading, children: inProgressNotificationMessage }),
|
|
67019
67023
|
Array.from(options2).map(({ value: value2, label: label22, enabled: enabled22, keywords }) => /* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
67020
67024
|
ComboboxOption,
|
|
67021
67025
|
{
|
|
@@ -67026,7 +67030,7 @@ For more information, see https://radix-ui.com/primitives/docs/components/${titl
|
|
|
67026
67030
|
},
|
|
67027
67031
|
value2
|
|
67028
67032
|
)),
|
|
67029
|
-
/* @__PURE__ */ jsxRuntimeExports.jsx(Ie$1, { children: emptyListNode })
|
|
67033
|
+
!inProgress && /* @__PURE__ */ jsxRuntimeExports.jsx(Ie$1, { children: emptyListNode })
|
|
67030
67034
|
] })
|
|
67031
67035
|
]
|
|
67032
67036
|
}
|
|
@@ -123130,7 +123134,13 @@ For more information, see https://radix-ui.com/primitives/docs/components/${titl
|
|
|
123130
123134
|
`This optional property provides the ability to customize what is displayed when the list of options is empty.`
|
|
123131
123135
|
),
|
|
123132
123136
|
multiSelect: dMulti(),
|
|
123133
|
-
searchable: d$5(`This property enables the search functionality in the dropdown list.`)
|
|
123137
|
+
searchable: d$5(`This property enables the search functionality in the dropdown list.`),
|
|
123138
|
+
inProgress: d$5(
|
|
123139
|
+
`This property indicates whether the component is in progress. It can be used to show a loading message.`
|
|
123140
|
+
),
|
|
123141
|
+
inProgressNotificationMessage: d$5(
|
|
123142
|
+
`This property indicates the message to display when the component is in progress.`
|
|
123143
|
+
)
|
|
123134
123144
|
},
|
|
123135
123145
|
events: {
|
|
123136
123146
|
gotFocus: dGotFocus(COMP$v),
|
|
@@ -123189,6 +123199,8 @@ For more information, see https://radix-ui.com/primitives/docs/components/${titl
|
|
|
123189
123199
|
{
|
|
123190
123200
|
multiSelect: extractValue.asOptionalBoolean(node2.props.multiSelect),
|
|
123191
123201
|
style: layoutCss,
|
|
123202
|
+
inProgress: extractValue.asOptionalBoolean(node2.props.inProgress),
|
|
123203
|
+
inProgressNotificationMessage: extractValue.asOptionalString(node2.props.inProgressNotificationMessage),
|
|
123192
123204
|
updateState: updateState2,
|
|
123193
123205
|
searchable: extractValue.asOptionalBoolean(node2.props.searchable),
|
|
123194
123206
|
initialValue: extractValue(node2.props.initialValue),
|
|
@@ -144724,7 +144736,7 @@ For more information, see https://radix-ui.com/primitives/docs/components/${titl
|
|
|
144724
144736
|
/* @__PURE__ */ jsxRuntimeExports.jsx("svg", { style: { display: "none" }, ref: spriteRootRef })
|
|
144725
144737
|
] });
|
|
144726
144738
|
}
|
|
144727
|
-
const version = "0.9.
|
|
144739
|
+
const version = "0.9.5";
|
|
144728
144740
|
const ApiInterceptorContext = reactExports.createContext(null);
|
|
144729
144741
|
function useApiInterceptorContext() {
|
|
144730
144742
|
return reactExports.useContext(ApiInterceptorContext);
|
|
@@ -149479,7 +149491,7 @@ For more information, see https://radix-ui.com/primitives/docs/components/${titl
|
|
|
149479
149491
|
ToneChangerButton: ToneChangerButtonMd,
|
|
149480
149492
|
Tree: TreeMd
|
|
149481
149493
|
};
|
|
149482
|
-
var define_process_env_default$2 = { VITE_XMLUI_VERSION: "0.9.
|
|
149494
|
+
var define_process_env_default$2 = { VITE_XMLUI_VERSION: "0.9.5 (built 4/3/2025)" };
|
|
149483
149495
|
const MAIN_FILE = "Main." + componentFileExtension;
|
|
149484
149496
|
const MAIN_CODE_BEHIND_FILE = "Main." + codeBehindFileExtension;
|
|
149485
149497
|
const CONFIG_FILE = "config.json";
|
|
@@ -153801,7 +153813,7 @@ For more information, see https://radix-ui.com/primitives/docs/components/${titl
|
|
|
153801
153813
|
function isResponseWithoutBody(status) {
|
|
153802
153814
|
return RESPONSE_STATUS_CODES_WITHOUT_BODY.has(status);
|
|
153803
153815
|
}
|
|
153804
|
-
var define_process_env_default$1 = { NODE_ENV: "production", VITE_MOCK_ENABLED: true, VITE_MOCK_WORKER_LOCATION: "mockApi.js", VITE_USED_COMPONENTS_Pdf: "false", VITE_USED_COMPONENTS_Chart: "false", VITE_USER_COMPONENTS_XmluiCodeHightlighter: "false", VITE_USED_COMPONENTS_Tree: "false", VITE_XMLUI_VERSION: "0.9.
|
|
153816
|
+
var define_process_env_default$1 = { NODE_ENV: "production", VITE_MOCK_ENABLED: true, VITE_MOCK_WORKER_LOCATION: "mockApi.js", VITE_USED_COMPONENTS_Pdf: "false", VITE_USED_COMPONENTS_Chart: "false", VITE_USER_COMPONENTS_XmluiCodeHightlighter: "false", VITE_USED_COMPONENTS_Tree: "false", VITE_XMLUI_VERSION: "0.9.5 (built 4/3/2025)" };
|
|
153805
153817
|
var __defProp$7 = Object.defineProperty;
|
|
153806
153818
|
var __export = (target2, all2) => {
|
|
153807
153819
|
for (var name2 in all2)
|