xmlui 0.8.6 → 0.9.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.
Files changed (106) hide show
  1. package/dist/{apiInterceptorWorker-fLBfPj2T.mjs → apiInterceptorWorker-230V_-Ds.mjs} +1 -1
  2. package/dist/{index-wd8FRzuM.mjs → index-DUwwx3L4.mjs} +5864 -6108
  3. package/dist/index.css +274 -301
  4. package/dist/language-server.mjs +25 -1
  5. package/dist/{lint-B18Ko6Sy.mjs → lint-gX2osbkz.mjs} +920 -1120
  6. package/dist/scripts/bin/build.js +2 -2
  7. package/dist/scripts/bin/start.js +3 -9
  8. package/dist/scripts/bin/vite-xmlui-plugin.js +2 -2
  9. package/dist/scripts/bin/viteConfig.js +89 -63
  10. package/dist/scripts/src/abstractions/scripting/ScriptingSourceTreeExp.js +1 -2
  11. package/dist/scripts/src/components/Accordion/Accordion.js +6 -16
  12. package/dist/scripts/src/components/App/AppNative.js +8 -0
  13. package/dist/scripts/src/components/AppHeader/AppHeader.js +1 -5
  14. package/dist/scripts/src/components/AppHeader/AppHeaderNative.js +10 -4
  15. package/dist/scripts/src/components/AutoComplete/AutoComplete.js +13 -19
  16. package/dist/scripts/src/components/AutoComplete/AutoCompleteContext.js +2 -0
  17. package/dist/scripts/src/components/AutoComplete/AutoCompleteNative.js +7 -3
  18. package/dist/scripts/src/components/Avatar/Avatar.js +2 -9
  19. package/dist/scripts/src/components/Badge/Badge.js +2 -8
  20. package/dist/scripts/src/components/Button/Button.js +28 -60
  21. package/dist/scripts/src/components/Card/Card.js +1 -6
  22. package/dist/scripts/src/components/Checkbox/Checkbox.js +4 -12
  23. package/dist/scripts/src/components/ComponentProvider.js +4 -0
  24. package/dist/scripts/src/components/DatePicker/DatePicker.js +3 -10
  25. package/dist/scripts/src/components/DropdownMenu/DropdownMenu.js +1 -1
  26. package/dist/scripts/src/components/Form/Form.js +12 -28
  27. package/dist/scripts/src/components/Form/FormNative.js +9 -0
  28. package/dist/scripts/src/components/FormItem/HelperText.js +1 -1
  29. package/dist/scripts/src/components/FormItem/ItemWithLabel.js +2 -2
  30. package/dist/scripts/src/components/Heading/HeadingNative.js +0 -1
  31. package/dist/scripts/src/components/HtmlTags/HtmlTags.js +4 -19
  32. package/dist/scripts/src/components/IconProvider.js +2 -2
  33. package/dist/scripts/src/components/Link/Link.js +2 -8
  34. package/dist/scripts/src/components/Markdown/MarkdownNative.js +4 -4
  35. package/dist/scripts/src/components/ModalDialog/ModalDialog.js +1 -3
  36. package/dist/scripts/src/components/NavGroup/NavGroup.js +34 -3
  37. package/dist/scripts/src/components/NavGroup/NavGroupNative.js +24 -12
  38. package/dist/scripts/src/components/NavLink/NavLink.js +4 -11
  39. package/dist/scripts/src/components/NavPanel/NavPanel.js +1 -6
  40. package/dist/scripts/src/components/ProgressBar/ProgressBar.js +2 -8
  41. package/dist/scripts/src/components/RadioGroup/RadioGroup.js +4 -12
  42. package/dist/scripts/src/components/Select/Select.js +5 -13
  43. package/dist/scripts/src/components/Select/SelectNative.js +7 -3
  44. package/dist/scripts/src/components/Slider/Slider.js +2 -8
  45. package/dist/scripts/src/components/Spinner/Spinner.js +1 -6
  46. package/dist/scripts/src/components/SubNavPanel/SubNavPanel.js +22 -0
  47. package/dist/scripts/src/components/SubNavPanel/SubNavPanelNative.js +9 -0
  48. package/dist/scripts/src/components/Switch/Switch.js +6 -16
  49. package/dist/scripts/src/components/Table/Table.js +8 -17
  50. package/dist/scripts/src/components/TableOfContents/TableOfContents.js +4 -12
  51. package/dist/scripts/src/components/Tabs/Tabs.js +3 -10
  52. package/dist/scripts/src/components/Text/Text.js +10 -24
  53. package/dist/scripts/src/components/TextBox/TextBoxNative.js +1 -1
  54. package/dist/scripts/src/components/Theme/ThemeNative.js +1 -1
  55. package/dist/scripts/src/components/ValidationSummary/ValidationSummary.js +3 -3
  56. package/dist/scripts/src/components-core/DevTools.js +5 -4
  57. package/dist/scripts/src/components-core/RestApiProxy.js +7 -3
  58. package/dist/scripts/src/components-core/action/APICall.js +2 -1
  59. package/dist/scripts/src/components-core/rendering/Container.js +15 -11
  60. package/dist/scripts/src/components-core/rendering/StateContainer.js +3 -2
  61. package/dist/scripts/src/components-core/script-runner/BindingTreeEvaluationContext.js +0 -2
  62. package/dist/scripts/src/components-core/script-runner/ParameterParser.js +1 -1
  63. package/dist/scripts/src/components-core/script-runner/asyncProxy.js +11 -64
  64. package/dist/scripts/src/components-core/script-runner/eval-tree-async.js +196 -175
  65. package/dist/scripts/src/components-core/script-runner/eval-tree-common.js +173 -231
  66. package/dist/scripts/src/components-core/script-runner/eval-tree-sync.js +129 -100
  67. package/dist/scripts/src/components-core/script-runner/process-statement-async.js +170 -175
  68. package/dist/scripts/src/components-core/script-runner/process-statement-common.js +48 -33
  69. package/dist/scripts/src/components-core/script-runner/process-statement-sync.js +164 -170
  70. package/dist/scripts/src/components-core/script-runner/statement-queue.js +5 -4
  71. package/dist/scripts/src/components-core/script-runner/visitors.js +124 -116
  72. package/dist/scripts/src/components-core/theming/themes/palette.js +1 -0
  73. package/dist/scripts/src/components-core/theming/themes/root.js +300 -154
  74. package/dist/scripts/src/components-core/theming/themes/theme-colors.js +510 -510
  75. package/dist/scripts/src/components-core/theming/themes/xmlui.js +0 -1
  76. package/dist/scripts/src/components-core/theming/transformThemeVars.js +11 -11
  77. package/dist/scripts/src/components-core/utils/misc.js +13 -0
  78. package/dist/scripts/src/components-core/utils/statementUtils.js +56 -53
  79. package/dist/scripts/src/components-core/xmlui-parser.js +1 -1
  80. package/dist/scripts/src/parsers/scripting-exp/Lexer.js +1092 -0
  81. package/dist/scripts/src/parsers/scripting-exp/Parser.js +2635 -0
  82. package/dist/scripts/src/parsers/scripting-exp/ParserError.js +47 -0
  83. package/dist/scripts/src/parsers/scripting-exp/TokenTrait.js +109 -0
  84. package/dist/scripts/src/parsers/scripting-exp/TokenType.js +2 -4
  85. package/dist/scripts/src/parsers/scripting-exp/code-behind-collect.js +101 -0
  86. package/dist/scripts/src/parsers/scripting-exp/modules.js +107 -0
  87. package/dist/scripts/src/parsers/{scripting → scripting-exp}/tree-visitor.js +103 -107
  88. package/dist/scripts/src/parsers/xmlui-parser/transform.js +12 -12
  89. package/dist/style.css +245 -286
  90. package/dist/xmlui-metadata.mjs +2741 -2211
  91. package/dist/xmlui-metadata.umd.js +2740 -2212
  92. package/dist/xmlui-parser.d.ts +320 -232
  93. package/dist/xmlui-parser.mjs +19 -19
  94. package/dist/xmlui-standalone.umd.js +6770 -7220
  95. package/dist/xmlui.d.ts +322 -230
  96. package/dist/xmlui.mjs +1 -1
  97. package/package.json +10 -6
  98. package/dist/_commonjsHelpers-CcAunmGO.mjs +0 -33
  99. package/dist/scripts/src/components-core/script-runner/ICustomOperations.js +0 -34
  100. package/dist/scripts/src/components-core/script-runner/custom-operations-registry.js +0 -40
  101. package/dist/scripts/src/components-core/script-runner/custom-ui-data.js +0 -40
  102. package/dist/scripts/src/components-core/script-runner/syncProxy.js +0 -31
  103. package/dist/scripts/src/parsers/scripting/code-behind-collect.js +0 -153
  104. package/dist/scripts/src/parsers/scripting/modules.js +0 -284
  105. /package/dist/scripts/src/abstractions/scripting/{LogicalThread.js → LogicalThreadExp.js} +0 -0
  106. /package/dist/scripts/src/abstractions/scripting/{TryScope.js → TryScopeExp.js} +0 -0
package/dist/style.css CHANGED
@@ -721,21 +721,21 @@
721
721
  * This function allows other CSS modules to get the value of the CSS variable specified in $componentVariable.
722
722
  Optionally, you can provide a $fallbackValue to set the variable's value if that is not defined.
723
723
  */
724
- ._text_umtqa_13 {
724
+ ._text_1x9lo_13 {
725
725
  overflow: hidden;
726
726
  text-overflow: ellipsis;
727
727
  margin: 0;
728
728
  padding: 0;
729
729
  min-height: fit-content;
730
730
  }
731
- ._text_umtqa_13 ._text_umtqa_13 {
731
+ ._text_1x9lo_13 ._text_1x9lo_13 {
732
732
  display: inline;
733
733
  }
734
- ._text_umtqa_13._abbr_umtqa_23 {
734
+ ._text_1x9lo_13._abbr_1x9lo_23 {
735
735
  font-family: var(--xmlui-fontFamily-Text-abbr);
736
736
  font-size: var(--xmlui-fontSize-Text-abbr);
737
737
  font-weight: var(--xmlui-fontWeight-Text-abbr);
738
- font-style: var(--xmlui-font-style-Text-abbr);
738
+ font-style: var(--xmlui-fontStyle-Text-abbr);
739
739
  font-stretch: var(--xmlui-fontStretch-Text-abbr);
740
740
  text-decoration-line: var(--xmlui-textDecorationLine-Text-abbr);
741
741
  text-decoration-color: var(--xmlui-textDecorationColor-Text-abbr);
@@ -760,11 +760,11 @@
760
760
  vertical-align: var(--xmlui-verticalAlign-Text-abbr);
761
761
  letter-spacing: var(--xmlui-letterSpacing-Text-abbr);
762
762
  }
763
- ._text_umtqa_13._cite_umtqa_52 {
763
+ ._text_1x9lo_13._cite_1x9lo_52 {
764
764
  font-family: var(--xmlui-fontFamily-Text-cite);
765
765
  font-size: var(--xmlui-fontSize-Text-cite);
766
766
  font-weight: var(--xmlui-fontWeight-Text-cite);
767
- font-style: var(--xmlui-font-style-Text-cite);
767
+ font-style: var(--xmlui-fontStyle-Text-cite);
768
768
  font-stretch: var(--xmlui-fontStretch-Text-cite);
769
769
  text-decoration-line: var(--xmlui-textDecorationLine-Text-cite);
770
770
  text-decoration-color: var(--xmlui-textDecorationColor-Text-cite);
@@ -789,14 +789,14 @@
789
789
  vertical-align: var(--xmlui-verticalAlign-Text-cite);
790
790
  letter-spacing: var(--xmlui-letterSpacing-Text-cite);
791
791
  }
792
- ._text_umtqa_13 ._text_umtqa_13._codefence_umtqa_81 {
792
+ ._text_1x9lo_13 ._text_1x9lo_13._codefence_1x9lo_81 {
793
793
  display: block;
794
794
  }
795
- :not(._text_umtqa_13._codefence_umtqa_81) > ._text_umtqa_13._code_umtqa_81 {
795
+ :not(._text_1x9lo_13._codefence_1x9lo_81) > ._text_1x9lo_13._code_1x9lo_81 {
796
796
  font-family: var(--xmlui-fontFamily-Text-code);
797
797
  font-size: var(--xmlui-fontSize-Text-code);
798
798
  font-weight: var(--xmlui-fontWeight-Text-code);
799
- font-style: var(--xmlui-font-style-Text-code);
799
+ font-style: var(--xmlui-fontStyle-Text-code);
800
800
  font-stretch: var(--xmlui-fontStretch-Text-code);
801
801
  text-decoration-line: var(--xmlui-textDecorationLine-Text-code);
802
802
  text-decoration-color: var(--xmlui-textDecorationColor-Text-code);
@@ -821,11 +821,11 @@
821
821
  vertical-align: var(--xmlui-verticalAlign-Text-code);
822
822
  letter-spacing: var(--xmlui-letterSpacing-Text-code);
823
823
  }
824
- ._text_umtqa_13._codefence_umtqa_81:has(> ._text_umtqa_13._code_umtqa_81) {
824
+ ._text_1x9lo_13._codefence_1x9lo_81:has(> ._text_1x9lo_13._code_1x9lo_81) {
825
825
  font-family: var(--xmlui-fontFamily-Text-codefence);
826
826
  font-size: var(--xmlui-fontSize-Text-codefence);
827
827
  font-weight: var(--xmlui-fontWeight-Text-codefence);
828
- font-style: var(--xmlui-font-style-Text-codefence);
828
+ font-style: var(--xmlui-fontStyle-Text-codefence);
829
829
  font-stretch: var(--xmlui-fontStretch-Text-codefence);
830
830
  text-decoration-line: var(--xmlui-textDecorationLine-Text-codefence);
831
831
  text-decoration-color: var(--xmlui-textDecorationColor-Text-codefence);
@@ -852,11 +852,11 @@
852
852
  overflow-x: auto;
853
853
  text-overflow: initial;
854
854
  }
855
- ._text_umtqa_13._deleted_umtqa_144 {
855
+ ._text_1x9lo_13._deleted_1x9lo_144 {
856
856
  font-family: var(--xmlui-fontFamily-Text-deleted);
857
857
  font-size: var(--xmlui-fontSize-Text-deleted);
858
858
  font-weight: var(--xmlui-fontWeight-Text-deleted);
859
- font-style: var(--xmlui-font-style-Text-deleted);
859
+ font-style: var(--xmlui-fontStyle-Text-deleted);
860
860
  font-stretch: var(--xmlui-fontStretch-Text-deleted);
861
861
  text-decoration-line: var(--xmlui-textDecorationLine-Text-deleted);
862
862
  text-decoration-color: var(--xmlui-textDecorationColor-Text-deleted);
@@ -881,7 +881,7 @@
881
881
  vertical-align: var(--xmlui-verticalAlign-Text-deleted);
882
882
  letter-spacing: var(--xmlui-letterSpacing-Text-deleted);
883
883
  }
884
- ._text_umtqa_13._deleted_umtqa_144::before, ._text_umtqa_13._deleted_umtqa_144::after {
884
+ ._text_1x9lo_13._deleted_1x9lo_144::before, ._text_1x9lo_13._deleted_1x9lo_144::after {
885
885
  clip-path: inset(100%);
886
886
  clip: rect(1px, 1px, 1px, 1px);
887
887
  height: 1px;
@@ -890,17 +890,17 @@
890
890
  white-space: nowrap;
891
891
  width: 1px;
892
892
  }
893
- ._text_umtqa_13._deleted_umtqa_144::before {
893
+ ._text_1x9lo_13._deleted_1x9lo_144::before {
894
894
  content: " [deletion start] ";
895
895
  }
896
- ._text_umtqa_13._deleted_umtqa_144::after {
896
+ ._text_1x9lo_13._deleted_1x9lo_144::after {
897
897
  content: " [deletion end] ";
898
898
  }
899
- ._text_umtqa_13._inserted_umtqa_188 {
899
+ ._text_1x9lo_13._inserted_1x9lo_188 {
900
900
  font-family: var(--xmlui-fontFamily-Text-inserted);
901
901
  font-size: var(--xmlui-fontSize-Text-inserted);
902
902
  font-weight: var(--xmlui-fontWeight-Text-inserted);
903
- font-style: var(--xmlui-font-style-Text-inserted);
903
+ font-style: var(--xmlui-fontStyle-Text-inserted);
904
904
  font-stretch: var(--xmlui-fontStretch-Text-inserted);
905
905
  text-decoration-line: var(--xmlui-textDecorationLine-Text-inserted);
906
906
  text-decoration-color: var(--xmlui-textDecorationColor-Text-inserted);
@@ -925,7 +925,7 @@
925
925
  vertical-align: var(--xmlui-verticalAlign-Text-inserted);
926
926
  letter-spacing: var(--xmlui-letterSpacing-Text-inserted);
927
927
  }
928
- ._text_umtqa_13._inserted_umtqa_188::before, ._text_umtqa_13._inserted_umtqa_188::after {
928
+ ._text_1x9lo_13._inserted_1x9lo_188::before, ._text_1x9lo_13._inserted_1x9lo_188::after {
929
929
  clip-path: inset(100%);
930
930
  clip: rect(1px, 1px, 1px, 1px);
931
931
  height: 1px;
@@ -934,17 +934,17 @@
934
934
  white-space: nowrap;
935
935
  width: 1px;
936
936
  }
937
- ._text_umtqa_13._inserted_umtqa_188::before {
937
+ ._text_1x9lo_13._inserted_1x9lo_188::before {
938
938
  content: " [insertion start] ";
939
939
  }
940
- ._text_umtqa_13._inserted_umtqa_188::after {
940
+ ._text_1x9lo_13._inserted_1x9lo_188::after {
941
941
  content: " [insertion end] ";
942
942
  }
943
- ._text_umtqa_13._keyboard_umtqa_232 {
943
+ ._text_1x9lo_13._keyboard_1x9lo_232 {
944
944
  font-family: var(--xmlui-fontFamily-Text-keyboard);
945
945
  font-size: var(--xmlui-fontSize-Text-keyboard);
946
946
  font-weight: var(--xmlui-fontWeight-Text-keyboard);
947
- font-style: var(--xmlui-font-style-Text-keyboard);
947
+ font-style: var(--xmlui-fontStyle-Text-keyboard);
948
948
  font-stretch: var(--xmlui-fontStretch-Text-keyboard);
949
949
  text-decoration-line: var(--xmlui-textDecorationLine-Text-keyboard);
950
950
  text-decoration-color: var(--xmlui-textDecorationColor-Text-keyboard);
@@ -969,11 +969,11 @@
969
969
  vertical-align: var(--xmlui-verticalAlign-Text-keyboard);
970
970
  letter-spacing: var(--xmlui-letterSpacing-Text-keyboard);
971
971
  }
972
- ._text_umtqa_13._marked_umtqa_261 {
972
+ ._text_1x9lo_13._marked_1x9lo_261 {
973
973
  font-family: var(--xmlui-fontFamily-Text-marked);
974
974
  font-size: var(--xmlui-fontSize-Text-marked);
975
975
  font-weight: var(--xmlui-fontWeight-Text-marked);
976
- font-style: var(--xmlui-font-style-Text-marked);
976
+ font-style: var(--xmlui-fontStyle-Text-marked);
977
977
  font-stretch: var(--xmlui-fontStretch-Text-marked);
978
978
  text-decoration-line: var(--xmlui-textDecorationLine-Text-marked);
979
979
  text-decoration-color: var(--xmlui-textDecorationColor-Text-marked);
@@ -998,7 +998,7 @@
998
998
  vertical-align: var(--xmlui-verticalAlign-Text-marked);
999
999
  letter-spacing: var(--xmlui-letterSpacing-Text-marked);
1000
1000
  }
1001
- ._text_umtqa_13._marked_umtqa_261::before, ._text_umtqa_13._marked_umtqa_261::after {
1001
+ ._text_1x9lo_13._marked_1x9lo_261::before, ._text_1x9lo_13._marked_1x9lo_261::after {
1002
1002
  clip-path: inset(100%);
1003
1003
  clip: rect(1px, 1px, 1px, 1px);
1004
1004
  height: 1px;
@@ -1007,17 +1007,17 @@
1007
1007
  white-space: nowrap;
1008
1008
  width: 1px;
1009
1009
  }
1010
- ._text_umtqa_13._marked_umtqa_261::before {
1010
+ ._text_1x9lo_13._marked_1x9lo_261::before {
1011
1011
  content: " [highlight start] ";
1012
1012
  }
1013
- ._text_umtqa_13._marked_umtqa_261::after {
1013
+ ._text_1x9lo_13._marked_1x9lo_261::after {
1014
1014
  content: " [highlight end] ";
1015
1015
  }
1016
- ._text_umtqa_13._mono_umtqa_305 {
1016
+ ._text_1x9lo_13._mono_1x9lo_305 {
1017
1017
  font-family: var(--xmlui-fontFamily-Text-mono);
1018
1018
  font-size: var(--xmlui-fontSize-Text-mono);
1019
1019
  font-weight: var(--xmlui-fontWeight-Text-mono);
1020
- font-style: var(--xmlui-font-style-Text-mono);
1020
+ font-style: var(--xmlui-fontStyle-Text-mono);
1021
1021
  font-stretch: var(--xmlui-fontStretch-Text-mono);
1022
1022
  text-decoration-line: var(--xmlui-textDecorationLine-Text-mono);
1023
1023
  text-decoration-color: var(--xmlui-textDecorationColor-Text-mono);
@@ -1042,11 +1042,11 @@
1042
1042
  vertical-align: var(--xmlui-verticalAlign-Text-mono);
1043
1043
  letter-spacing: var(--xmlui-letterSpacing-Text-mono);
1044
1044
  }
1045
- ._text_umtqa_13._sample_umtqa_334 {
1045
+ ._text_1x9lo_13._sample_1x9lo_334 {
1046
1046
  font-family: var(--xmlui-fontFamily-Text-sample);
1047
1047
  font-size: var(--xmlui-fontSize-Text-sample);
1048
1048
  font-weight: var(--xmlui-fontWeight-Text-sample);
1049
- font-style: var(--xmlui-font-style-Text-sample);
1049
+ font-style: var(--xmlui-fontStyle-Text-sample);
1050
1050
  font-stretch: var(--xmlui-fontStretch-Text-sample);
1051
1051
  text-decoration-line: var(--xmlui-textDecorationLine-Text-sample);
1052
1052
  text-decoration-color: var(--xmlui-textDecorationColor-Text-sample);
@@ -1071,11 +1071,11 @@
1071
1071
  vertical-align: var(--xmlui-verticalAlign-Text-sample);
1072
1072
  letter-spacing: var(--xmlui-letterSpacing-Text-sample);
1073
1073
  }
1074
- ._text_umtqa_13._sup_umtqa_363 {
1074
+ ._text_1x9lo_13._sup_1x9lo_363 {
1075
1075
  font-family: var(--xmlui-fontFamily-Text-sup);
1076
1076
  font-size: var(--xmlui-fontSize-Text-sup);
1077
1077
  font-weight: var(--xmlui-fontWeight-Text-sup);
1078
- font-style: var(--xmlui-font-style-Text-sup);
1078
+ font-style: var(--xmlui-fontStyle-Text-sup);
1079
1079
  font-stretch: var(--xmlui-fontStretch-Text-sup);
1080
1080
  text-decoration-line: var(--xmlui-textDecorationLine-Text-sup);
1081
1081
  text-decoration-color: var(--xmlui-textDecorationColor-Text-sup);
@@ -1100,11 +1100,11 @@
1100
1100
  vertical-align: var(--xmlui-verticalAlign-Text-sup);
1101
1101
  letter-spacing: var(--xmlui-letterSpacing-Text-sup);
1102
1102
  }
1103
- ._text_umtqa_13._sub_umtqa_392 {
1103
+ ._text_1x9lo_13._sub_1x9lo_392 {
1104
1104
  font-family: var(--xmlui-fontFamily-Text-sub);
1105
1105
  font-size: var(--xmlui-fontSize-Text-sub);
1106
1106
  font-weight: var(--xmlui-fontWeight-Text-sub);
1107
- font-style: var(--xmlui-font-style-Text-sub);
1107
+ font-style: var(--xmlui-fontStyle-Text-sub);
1108
1108
  font-stretch: var(--xmlui-fontStretch-Text-sub);
1109
1109
  text-decoration-line: var(--xmlui-textDecorationLine-Text-sub);
1110
1110
  text-decoration-color: var(--xmlui-textDecorationColor-Text-sub);
@@ -1129,11 +1129,11 @@
1129
1129
  vertical-align: var(--xmlui-verticalAlign-Text-sub);
1130
1130
  letter-spacing: var(--xmlui-letterSpacing-Text-sub);
1131
1131
  }
1132
- ._text_umtqa_13._var_umtqa_421 {
1132
+ ._text_1x9lo_13._var_1x9lo_421 {
1133
1133
  font-family: var(--xmlui-fontFamily-Text-var);
1134
1134
  font-size: var(--xmlui-fontSize-Text-var);
1135
1135
  font-weight: var(--xmlui-fontWeight-Text-var);
1136
- font-style: var(--xmlui-font-style-Text-var);
1136
+ font-style: var(--xmlui-fontStyle-Text-var);
1137
1137
  font-stretch: var(--xmlui-fontStretch-Text-var);
1138
1138
  text-decoration-line: var(--xmlui-textDecorationLine-Text-var);
1139
1139
  text-decoration-color: var(--xmlui-textDecorationColor-Text-var);
@@ -1158,11 +1158,11 @@
1158
1158
  vertical-align: var(--xmlui-verticalAlign-Text-var);
1159
1159
  letter-spacing: var(--xmlui-letterSpacing-Text-var);
1160
1160
  }
1161
- ._text_umtqa_13._title_umtqa_450 {
1161
+ ._text_1x9lo_13._title_1x9lo_450 {
1162
1162
  font-family: var(--xmlui-fontFamily-Text-title);
1163
1163
  font-size: var(--xmlui-fontSize-Text-title);
1164
1164
  font-weight: var(--xmlui-fontWeight-Text-title);
1165
- font-style: var(--xmlui-font-style-Text-title);
1165
+ font-style: var(--xmlui-fontStyle-Text-title);
1166
1166
  font-stretch: var(--xmlui-fontStretch-Text-title);
1167
1167
  text-decoration-line: var(--xmlui-textDecorationLine-Text-title);
1168
1168
  text-decoration-color: var(--xmlui-textDecorationColor-Text-title);
@@ -1187,11 +1187,11 @@
1187
1187
  vertical-align: var(--xmlui-verticalAlign-Text-title);
1188
1188
  letter-spacing: var(--xmlui-letterSpacing-Text-title);
1189
1189
  }
1190
- ._text_umtqa_13._subtitle_umtqa_479 {
1190
+ ._text_1x9lo_13._subtitle_1x9lo_479 {
1191
1191
  font-family: var(--xmlui-fontFamily-Text-subtitle);
1192
1192
  font-size: var(--xmlui-fontSize-Text-subtitle);
1193
1193
  font-weight: var(--xmlui-fontWeight-Text-subtitle);
1194
- font-style: var(--xmlui-font-style-Text-subtitle);
1194
+ font-style: var(--xmlui-fontStyle-Text-subtitle);
1195
1195
  font-stretch: var(--xmlui-fontStretch-Text-subtitle);
1196
1196
  text-decoration-line: var(--xmlui-textDecorationLine-Text-subtitle);
1197
1197
  text-decoration-color: var(--xmlui-textDecorationColor-Text-subtitle);
@@ -1216,11 +1216,11 @@
1216
1216
  vertical-align: var(--xmlui-verticalAlign-Text-subtitle);
1217
1217
  letter-spacing: var(--xmlui-letterSpacing-Text-subtitle);
1218
1218
  }
1219
- ._text_umtqa_13._small_umtqa_508 {
1219
+ ._text_1x9lo_13._small_1x9lo_508 {
1220
1220
  font-family: var(--xmlui-fontFamily-Text-small);
1221
1221
  font-size: var(--xmlui-fontSize-Text-small);
1222
1222
  font-weight: var(--xmlui-fontWeight-Text-small);
1223
- font-style: var(--xmlui-font-style-Text-small);
1223
+ font-style: var(--xmlui-fontStyle-Text-small);
1224
1224
  font-stretch: var(--xmlui-fontStretch-Text-small);
1225
1225
  text-decoration-line: var(--xmlui-textDecorationLine-Text-small);
1226
1226
  text-decoration-color: var(--xmlui-textDecorationColor-Text-small);
@@ -1245,11 +1245,11 @@
1245
1245
  vertical-align: var(--xmlui-verticalAlign-Text-small);
1246
1246
  letter-spacing: var(--xmlui-letterSpacing-Text-small);
1247
1247
  }
1248
- ._text_umtqa_13._caption_umtqa_537 {
1248
+ ._text_1x9lo_13._caption_1x9lo_537 {
1249
1249
  font-family: var(--xmlui-fontFamily-Text-caption);
1250
1250
  font-size: var(--xmlui-fontSize-Text-caption);
1251
1251
  font-weight: var(--xmlui-fontWeight-Text-caption);
1252
- font-style: var(--xmlui-font-style-Text-caption);
1252
+ font-style: var(--xmlui-fontStyle-Text-caption);
1253
1253
  font-stretch: var(--xmlui-fontStretch-Text-caption);
1254
1254
  text-decoration-line: var(--xmlui-textDecorationLine-Text-caption);
1255
1255
  text-decoration-color: var(--xmlui-textDecorationColor-Text-caption);
@@ -1274,11 +1274,11 @@
1274
1274
  vertical-align: var(--xmlui-verticalAlign-Text-caption);
1275
1275
  letter-spacing: var(--xmlui-letterSpacing-Text-caption);
1276
1276
  }
1277
- ._text_umtqa_13._placeholder_umtqa_566 {
1277
+ ._text_1x9lo_13._placeholder_1x9lo_566 {
1278
1278
  font-family: var(--xmlui-fontFamily-Text-placeholder);
1279
1279
  font-size: var(--xmlui-fontSize-Text-placeholder);
1280
1280
  font-weight: var(--xmlui-fontWeight-Text-placeholder);
1281
- font-style: var(--xmlui-font-style-Text-placeholder);
1281
+ font-style: var(--xmlui-fontStyle-Text-placeholder);
1282
1282
  font-stretch: var(--xmlui-fontStretch-Text-placeholder);
1283
1283
  text-decoration-line: var(--xmlui-textDecorationLine-Text-placeholder);
1284
1284
  text-decoration-color: var(--xmlui-textDecorationColor-Text-placeholder);
@@ -1303,11 +1303,11 @@
1303
1303
  vertical-align: var(--xmlui-verticalAlign-Text-placeholder);
1304
1304
  letter-spacing: var(--xmlui-letterSpacing-Text-placeholder);
1305
1305
  }
1306
- ._text_umtqa_13._paragraph_umtqa_595 {
1306
+ ._text_1x9lo_13._paragraph_1x9lo_595 {
1307
1307
  font-family: var(--xmlui-fontFamily-Text-paragraph);
1308
1308
  font-size: var(--xmlui-fontSize-Text-paragraph);
1309
1309
  font-weight: var(--xmlui-fontWeight-Text-paragraph);
1310
- font-style: var(--xmlui-font-style-Text-paragraph);
1310
+ font-style: var(--xmlui-fontStyle-Text-paragraph);
1311
1311
  font-stretch: var(--xmlui-fontStretch-Text-paragraph);
1312
1312
  text-decoration-line: var(--xmlui-textDecorationLine-Text-paragraph);
1313
1313
  text-decoration-color: var(--xmlui-textDecorationColor-Text-paragraph);
@@ -1332,11 +1332,11 @@
1332
1332
  vertical-align: var(--xmlui-verticalAlign-Text-paragraph);
1333
1333
  letter-spacing: var(--xmlui-letterSpacing-Text-paragraph);
1334
1334
  }
1335
- ._text_umtqa_13._subheading_umtqa_624 {
1335
+ ._text_1x9lo_13._subheading_1x9lo_624 {
1336
1336
  font-family: var(--xmlui-fontFamily-Text-subheading);
1337
1337
  font-size: var(--xmlui-fontSize-Text-subheading);
1338
1338
  font-weight: var(--xmlui-fontWeight-Text-subheading);
1339
- font-style: var(--xmlui-font-style-Text-subheading);
1339
+ font-style: var(--xmlui-fontStyle-Text-subheading);
1340
1340
  font-stretch: var(--xmlui-fontStretch-Text-subheading);
1341
1341
  text-decoration-line: var(--xmlui-textDecorationLine-Text-subheading);
1342
1342
  text-decoration-color: var(--xmlui-textDecorationColor-Text-subheading);
@@ -1361,11 +1361,11 @@
1361
1361
  vertical-align: var(--xmlui-verticalAlign-Text-subheading);
1362
1362
  letter-spacing: var(--xmlui-letterSpacing-Text-subheading);
1363
1363
  }
1364
- ._text_umtqa_13._tableheading_umtqa_653 {
1364
+ ._text_1x9lo_13._tableheading_1x9lo_653 {
1365
1365
  font-family: var(--xmlui-fontFamily-Text-tableheading);
1366
1366
  font-size: var(--xmlui-fontSize-Text-tableheading);
1367
1367
  font-weight: var(--xmlui-fontWeight-Text-tableheading);
1368
- font-style: var(--xmlui-font-style-Text-tableheading);
1368
+ font-style: var(--xmlui-fontStyle-Text-tableheading);
1369
1369
  font-stretch: var(--xmlui-fontStretch-Text-tableheading);
1370
1370
  text-decoration-line: var(--xmlui-textDecorationLine-Text-tableheading);
1371
1371
  text-decoration-color: var(--xmlui-textDecorationColor-Text-tableheading);
@@ -1390,11 +1390,11 @@
1390
1390
  vertical-align: var(--xmlui-verticalAlign-Text-tableheading);
1391
1391
  letter-spacing: var(--xmlui-letterSpacing-Text-tableheading);
1392
1392
  }
1393
- ._text_umtqa_13._secondary_umtqa_682 {
1393
+ ._text_1x9lo_13._secondary_1x9lo_682 {
1394
1394
  font-family: var(--xmlui-fontFamily-Text-secondary);
1395
1395
  font-size: var(--xmlui-fontSize-Text-secondary);
1396
1396
  font-weight: var(--xmlui-fontWeight-Text-secondary);
1397
- font-style: var(--xmlui-font-style-Text-secondary);
1397
+ font-style: var(--xmlui-fontStyle-Text-secondary);
1398
1398
  font-stretch: var(--xmlui-fontStretch-Text-secondary);
1399
1399
  text-decoration-line: var(--xmlui-textDecorationLine-Text-secondary);
1400
1400
  text-decoration-color: var(--xmlui-textDecorationColor-Text-secondary);
@@ -1419,7 +1419,7 @@
1419
1419
  vertical-align: var(--xmlui-verticalAlign-Text-secondary);
1420
1420
  letter-spacing: var(--xmlui-letterSpacing-Text-secondary);
1421
1421
  }
1422
- ._text_umtqa_13._strong_umtqa_711 {
1422
+ ._text_1x9lo_13._strong_1x9lo_711 {
1423
1423
  font-weight: var(--xmlui-fontWeight-bold);
1424
1424
  }
1425
1425
 
@@ -1427,18 +1427,18 @@
1427
1427
  This is a Chromium based solution that is supported by most modern browsers.
1428
1428
  See this source for details: https://css-tricks.com/line-clampin/
1429
1429
  */
1430
- ._truncateOverflow_umtqa_719 {
1430
+ ._truncateOverflow_1x9lo_719 {
1431
1431
  overflow: hidden;
1432
1432
  overflow-wrap: break-word;
1433
1433
  white-space: nowrap;
1434
1434
  max-width: 100%;
1435
1435
  }
1436
1436
 
1437
- ._preserveLinebreaks_umtqa_726 {
1437
+ ._preserveLinebreaks_1x9lo_726 {
1438
1438
  white-space: pre-wrap;
1439
1439
  }
1440
1440
 
1441
- ._noEllipsis_umtqa_730 {
1441
+ ._noEllipsis_1x9lo_730 {
1442
1442
  text-overflow: clip;
1443
1443
  }/*
1444
1444
  * This file contains all CSS variables AppEngine uses for styling the UI, including individual visual components.
@@ -1588,7 +1588,7 @@ See this source for details: https://css-tricks.com/line-clampin/
1588
1588
  * This function allows other CSS modules to get the value of the CSS variable specified in $componentVariable.
1589
1589
  Optionally, you can provide a $fallbackValue to set the variable's value if that is not defined.
1590
1590
  */
1591
- ._wrapper_szj14_13 {
1591
+ ._wrapper_1larq_13 {
1592
1592
  --footer-height: 0px;
1593
1593
  --header-height: 0px;
1594
1594
  width: 100%;
@@ -1598,137 +1598,138 @@ See this source for details: https://css-tricks.com/line-clampin/
1598
1598
  flex-direction: column;
1599
1599
  isolation: isolate;
1600
1600
  }
1601
- ._wrapper_szj14_13._vertical_szj14_23 {
1601
+ ._wrapper_1larq_13._vertical_1larq_23 {
1602
1602
  flex-direction: row;
1603
1603
  overflow: initial;
1604
1604
  }
1605
- ._wrapper_szj14_13._vertical_szj14_23 ._contentWrapper_szj14_27 {
1605
+ ._wrapper_1larq_13._vertical_1larq_23 ._contentWrapper_1larq_27 {
1606
1606
  overflow: auto;
1607
1607
  scroll-padding-block: var(--xmlui-scroll-padding-block-Pages);
1608
1608
  position: relative;
1609
1609
  scrollbar-gutter: stable both-edges;
1610
1610
  }
1611
- ._wrapper_szj14_13._vertical_szj14_23 ._navPanelWrapper_szj14_33 {
1611
+ ._wrapper_1larq_13._vertical_1larq_23 ._navPanelWrapper_1larq_33 {
1612
1612
  width: var(--xmlui-width-navPanel-App);
1613
1613
  flex-shrink: 0;
1614
1614
  }
1615
- ._wrapper_szj14_13._vertical_szj14_23 ._PagesWrapper_szj14_37 {
1615
+ ._wrapper_1larq_13._vertical_1larq_23 ._PagesWrapper_1larq_37 {
1616
1616
  min-height: initial;
1617
1617
  flex: 1;
1618
1618
  }
1619
- ._wrapper_szj14_13._vertical_szj14_23 ._footerWrapper_szj14_41 {
1619
+ ._wrapper_1larq_13._vertical_1larq_23 ._footerWrapper_1larq_41 {
1620
1620
  position: static;
1621
1621
  }
1622
- ._wrapper_szj14_13._vertical_szj14_23._sticky_szj14_44 ._contentWrapper_szj14_27 {
1622
+ ._wrapper_1larq_13._vertical_1larq_23._sticky_1larq_44 ._contentWrapper_1larq_27 {
1623
1623
  scroll-padding-top: var(--header-height);
1624
1624
  }
1625
- ._wrapper_szj14_13._vertical_szj14_23._sticky_szj14_44 ._footerWrapper_szj14_41 {
1625
+ ._wrapper_1larq_13._vertical_1larq_23._sticky_1larq_44 ._footerWrapper_1larq_41 {
1626
1626
  position: sticky;
1627
1627
  bottom: 0;
1628
1628
  }
1629
- ._wrapper_szj14_13._horizontal_szj14_51 {
1629
+ ._wrapper_1larq_13._horizontal_1larq_51 {
1630
1630
  overflow: auto;
1631
1631
  scroll-padding-block: var(--xmlui-scroll-padding-block-Pages);
1632
1632
  }
1633
- ._wrapper_szj14_13._horizontal_szj14_51 ._PagesWrapper_szj14_37 {
1633
+ ._wrapper_1larq_13._horizontal_1larq_51 ._PagesWrapper_1larq_37 {
1634
1634
  min-height: initial;
1635
1635
  }
1636
- ._wrapper_szj14_13._horizontal_szj14_51 ._footerWrapper_szj14_41 {
1636
+ ._wrapper_1larq_13._horizontal_1larq_51 ._footerWrapper_1larq_41 {
1637
1637
  position: static;
1638
1638
  }
1639
- ._wrapper_szj14_13._horizontal_szj14_51._sticky_szj14_44 {
1639
+ ._wrapper_1larq_13._horizontal_1larq_51._sticky_1larq_44 {
1640
1640
  scroll-padding-top: var(--header-height);
1641
1641
  min-height: 100%;
1642
1642
  }
1643
- ._wrapper_szj14_13._horizontal_szj14_51._sticky_szj14_44 ._footerWrapper_szj14_41 {
1643
+ ._wrapper_1larq_13._horizontal_1larq_51._sticky_1larq_44 ._footerWrapper_1larq_41 {
1644
1644
  position: sticky;
1645
1645
  bottom: 0;
1646
1646
  }
1647
- ._wrapper_szj14_13._horizontal_szj14_51 ._navPanelWrapper_szj14_33 {
1647
+ ._wrapper_1larq_13._horizontal_1larq_51 ._navPanelWrapper_1larq_33 {
1648
1648
  border-bottom: var(--xmlui-borderBottom-AppHeader);
1649
1649
  justify-content: end;
1650
1650
  }
1651
- ._wrapper_szj14_13._verticalFullHeader_szj14_73 {
1651
+ ._wrapper_1larq_13._verticalFullHeader_1larq_73 {
1652
1652
  min-height: 100%;
1653
1653
  height: 100%;
1654
1654
  overflow: auto;
1655
1655
  scroll-padding-block: var(--xmlui-scroll-padding-block-Pages);
1656
1656
  }
1657
- ._wrapper_szj14_13._verticalFullHeader_szj14_73 ._navPanelWrapper_szj14_33 {
1657
+ ._wrapper_1larq_13._verticalFullHeader_1larq_73 ._navPanelWrapper_1larq_33 {
1658
1658
  width: var(--xmlui-width-navPanel-App);
1659
1659
  position: sticky;
1660
1660
  height: calc(var(--containerHeight, 100vh) - var(--footer-height) - var(--header-height));
1661
1661
  top: var(--header-height);
1662
1662
  }
1663
- ._wrapper_szj14_13._verticalFullHeader_szj14_73 ._PagesWrapper_szj14_37 {
1663
+ ._wrapper_1larq_13._verticalFullHeader_1larq_73 ._PagesWrapper_1larq_37 {
1664
1664
  overflow: initial;
1665
1665
  min-height: calc(var(--containerHeight, 100vh) - var(--header-height) - var(--footer-height));
1666
1666
  height: 100%;
1667
1667
  }
1668
- ._wrapper_szj14_13._verticalFullHeader_szj14_73 ._PagesWrapperInner_szj14_90 {
1668
+ ._wrapper_1larq_13._verticalFullHeader_1larq_73 ._PagesWrapperInner_1larq_90 {
1669
1669
  height: 100%;
1670
1670
  }
1671
- ._wrapper_szj14_13._verticalFullHeader_szj14_73 ._PagesWrapperInner_szj14_90 > .xmlui-page-root {
1671
+ ._wrapper_1larq_13._verticalFullHeader_1larq_73 ._PagesWrapperInner_1larq_90 > .xmlui-page-root {
1672
1672
  height: 100%;
1673
1673
  }
1674
- ._wrapper_szj14_13._verticalFullHeader_szj14_73 ._footerWrapper_szj14_41 {
1674
+ ._wrapper_1larq_13._verticalFullHeader_1larq_73 ._footerWrapper_1larq_41 {
1675
1675
  position: sticky;
1676
1676
  left: 0;
1677
1677
  right: 0;
1678
1678
  bottom: 0;
1679
1679
  }
1680
- ._wrapper_szj14_13._scrollWholePage_szj14_102 {
1680
+ ._wrapper_1larq_13._scrollWholePage_1larq_102 {
1681
1681
  scrollbar-gutter: stable both-edges;
1682
1682
  }
1683
- ._wrapper_szj14_13._scrollWholePage_szj14_102 ._headerWrapper_szj14_105 {
1683
+ ._wrapper_1larq_13._scrollWholePage_1larq_102 ._headerWrapper_1larq_105 {
1684
1684
  margin-inline: calc(-1 * var(--scrollbar-width));
1685
1685
  }
1686
- ._wrapper_szj14_13._scrollWholePage_szj14_102 ._headerWrapper_szj14_105 > div {
1686
+ ._wrapper_1larq_13._scrollWholePage_1larq_102 ._headerWrapper_1larq_105 > div {
1687
1687
  padding-inline: var(--scrollbar-width);
1688
1688
  }
1689
- ._wrapper_szj14_13._scrollWholePage_szj14_102 ._footerWrapper_szj14_41 {
1689
+ ._wrapper_1larq_13._scrollWholePage_1larq_102 ._footerWrapper_1larq_41 {
1690
1690
  margin-inline: calc(-1 * var(--scrollbar-width));
1691
1691
  }
1692
- ._wrapper_szj14_13._scrollWholePage_szj14_102 ._footerWrapper_szj14_41 > div {
1692
+ ._wrapper_1larq_13._scrollWholePage_1larq_102 ._footerWrapper_1larq_41 > div {
1693
1693
  padding-inline: var(--scrollbar-width);
1694
1694
  }
1695
- ._wrapper_szj14_13._scrollWholePage_szj14_102._verticalFullHeader_szj14_73 {
1695
+ ._wrapper_1larq_13._scrollWholePage_1larq_102._verticalFullHeader_1larq_73 {
1696
1696
  scroll-padding-top: var(--header-height);
1697
1697
  }
1698
- ._wrapper_szj14_13._scrollWholePage_szj14_102._verticalFullHeader_szj14_73 ._content_szj14_27 {
1698
+ ._wrapper_1larq_13._scrollWholePage_1larq_102._verticalFullHeader_1larq_73 ._content_1larq_27 {
1699
1699
  margin-inline: calc(-1 * var(--scrollbar-width));
1700
1700
  }
1701
- ._wrapper_szj14_13._scrollWholePage_szj14_102._verticalFullHeader_szj14_73 ._contentWrapper_szj14_27 {
1701
+ ._wrapper_1larq_13._scrollWholePage_1larq_102._verticalFullHeader_1larq_73 ._contentWrapper_1larq_27 {
1702
1702
  padding-inline: var(--scrollbar-width);
1703
1703
  }
1704
- ._wrapper_szj14_13:not(._scrollWholePage_szj14_102) {
1704
+ ._wrapper_1larq_13:not(._scrollWholePage_1larq_102) {
1705
1705
  overflow: hidden;
1706
1706
  }
1707
- ._wrapper_szj14_13:not(._scrollWholePage_szj14_102) ._content_szj14_27 {
1707
+ ._wrapper_1larq_13:not(._scrollWholePage_1larq_102) ._content_1larq_27 {
1708
1708
  min-height: 0;
1709
1709
  height: 100%;
1710
1710
  }
1711
- ._wrapper_szj14_13:not(._scrollWholePage_szj14_102) ._contentWrapper_szj14_27 {
1711
+ ._wrapper_1larq_13:not(._scrollWholePage_1larq_102) ._contentWrapper_1larq_27 {
1712
1712
  overflow: initial;
1713
1713
  }
1714
- ._wrapper_szj14_13:not(._scrollWholePage_szj14_102) ._PagesWrapper_szj14_37 {
1714
+ ._wrapper_1larq_13:not(._scrollWholePage_1larq_102) ._PagesWrapper_1larq_37 {
1715
1715
  overflow: auto;
1716
1716
  scroll-padding-block: var(--xmlui-scroll-padding-block-Pages);
1717
1717
  min-height: 0;
1718
1718
  height: 100%;
1719
1719
  scrollbar-gutter: stable both-edges;
1720
1720
  }
1721
- ._wrapper_szj14_13:not(._scrollWholePage_szj14_102) ._PagesWrapperInner_szj14_90 {
1721
+ ._wrapper_1larq_13:not(._scrollWholePage_1larq_102) ._PagesWrapperInner_1larq_90 {
1722
1722
  min-height: 100%;
1723
+ height: 0;
1723
1724
  }
1724
- ._wrapper_szj14_13._noScrollbarGutters_szj14_146 {
1725
+ ._wrapper_1larq_13._noScrollbarGutters_1larq_147 {
1725
1726
  scrollbar-gutter: auto;
1726
1727
  }
1727
- ._wrapper_szj14_13._noScrollbarGutters_szj14_146 ._PagesWrapper_szj14_37 {
1728
+ ._wrapper_1larq_13._noScrollbarGutters_1larq_147 ._PagesWrapper_1larq_37 {
1728
1729
  scrollbar-gutter: auto;
1729
1730
  }
1730
1731
 
1731
- ._headerWrapper_szj14_105 {
1732
+ ._headerWrapper_1larq_105 {
1732
1733
  z-index: 1;
1733
1734
  min-height: 0;
1734
1735
  flex-shrink: 0;
@@ -1737,17 +1738,17 @@ See this source for details: https://css-tricks.com/line-clampin/
1737
1738
  box-shadow: var(--xmlui-boxShadow-header-App);
1738
1739
  background-color: var(--xmlui-backgroundColor-AppHeader);
1739
1740
  }
1740
- ._headerWrapper_szj14_105._sticky_szj14_44 {
1741
+ ._headerWrapper_1larq_105._sticky_1larq_44 {
1741
1742
  position: sticky;
1742
1743
  }
1743
1744
 
1744
- ._content_szj14_27 {
1745
+ ._content_1larq_27 {
1745
1746
  display: flex;
1746
1747
  flex-direction: row;
1747
1748
  isolation: isolate;
1748
1749
  }
1749
1750
 
1750
- ._contentWrapper_szj14_27 {
1751
+ ._contentWrapper_1larq_27 {
1751
1752
  position: relative;
1752
1753
  min-width: 0;
1753
1754
  flex: 1;
@@ -1756,21 +1757,21 @@ See this source for details: https://css-tricks.com/line-clampin/
1756
1757
  box-shadow: var(--xmlui-boxShadow-navPanel-App);
1757
1758
  }
1758
1759
 
1759
- ._navPanelWrapper_szj14_33 {
1760
+ ._navPanelWrapper_1larq_33 {
1760
1761
  display: flex;
1761
1762
  position: sticky;
1762
1763
  top: 0;
1763
1764
  }
1764
- ._navPanelWrapper_szj14_33:empty {
1765
+ ._navPanelWrapper_1larq_33:empty {
1765
1766
  display: none;
1766
1767
  }
1767
1768
 
1768
- ._PagesWrapper_szj14_37 {
1769
+ ._PagesWrapper_1larq_37 {
1769
1770
  flex: 1;
1770
1771
  isolation: isolate;
1771
1772
  }
1772
1773
 
1773
- ._PagesWrapperInner_szj14_90 {
1774
+ ._PagesWrapperInner_1larq_90 {
1774
1775
  --page-padding-left: var(--xmlui-space-4);
1775
1776
  --page-padding-right: var(--xmlui-space-4);
1776
1777
  --page-padding-top: var(--xmlui-space-5);
@@ -1788,7 +1789,7 @@ See this source for details: https://css-tricks.com/line-clampin/
1788
1789
  display: flex;
1789
1790
  flex-direction: column;
1790
1791
  }
1791
- ._PagesWrapperInner_szj14_90 > .xmlui-page-root {
1792
+ ._PagesWrapperInner_1larq_90 > .xmlui-page-root {
1792
1793
  padding-top: var(--page-padding-top-override, var(--page-padding-top));
1793
1794
  padding-bottom: var(--page-padding-bottom-override, var(--page-padding-bottom));
1794
1795
  padding-right: var(--page-padding-right-override, var(--page-padding-right));
@@ -1800,7 +1801,7 @@ See this source for details: https://css-tricks.com/line-clampin/
1800
1801
  margin-right: calc(-1 * var(--page-padding-right));
1801
1802
  }
1802
1803
 
1803
- ._footerWrapper_szj14_41 {
1804
+ ._footerWrapper_1larq_41 {
1804
1805
  flex-shrink: 0;
1805
1806
  }/*
1806
1807
  * This file contains all CSS variables AppEngine uses for styling the UI, including individual visual components.
@@ -1814,7 +1815,7 @@ See this source for details: https://css-tricks.com/line-clampin/
1814
1815
  * This function allows other CSS modules to get the value of the CSS variable specified in $componentVariable.
1815
1816
  Optionally, you can provide a $fallbackValue to set the variable's value if that is not defined.
1816
1817
  */
1817
- ._header_2nmv3_13 {
1818
+ ._header_1m0kp_13 {
1818
1819
  position: relative;
1819
1820
  height: var(--xmlui-height-AppHeader);
1820
1821
  box-sizing: content-box;
@@ -1841,7 +1842,7 @@ See this source for details: https://css-tricks.com/line-clampin/
1841
1842
  border-end-end-radius: var(--xmlui-borderEndEndRadius-AppHeader, var(--xmlui-borderRadius-AppHeader));
1842
1843
  }
1843
1844
 
1844
- ._headerInner_2nmv3_40 {
1845
+ ._headerInner_1m0kp_40 {
1845
1846
  height: 100%;
1846
1847
  flex: 1;
1847
1848
  gap: var(--xmlui-space-4);
@@ -1859,11 +1860,11 @@ See this source for details: https://css-tricks.com/line-clampin/
1859
1860
  width: 100%;
1860
1861
  margin: 0 auto;
1861
1862
  }
1862
- ._headerInner_2nmv3_40._full_2nmv3_58 {
1863
+ ._headerInner_1m0kp_40._full_1m0kp_58 {
1863
1864
  max-width: 100%;
1864
1865
  }
1865
1866
 
1866
- ._childrenWrapper_2nmv3_62 {
1867
+ ._childrenWrapper_1m0kp_62 {
1867
1868
  --stack-gap-default: var(--xmlui-space-2);
1868
1869
  display: flex;
1869
1870
  flex-direction: row;
@@ -1875,20 +1876,25 @@ See this source for details: https://css-tricks.com/line-clampin/
1875
1876
  justify-content: var(--xmlui-align-content-AppHeader);
1876
1877
  }
1877
1878
 
1878
- ._logoAndTitle_2nmv3_74 {
1879
+ ._subNavPanelSlot_1m0kp_74 {
1880
+ display: flex;
1881
+ flex-direction: row;
1882
+ }
1883
+
1884
+ ._logoAndTitle_1m0kp_79 {
1879
1885
  display: flex;
1880
1886
  align-items: center;
1881
1887
  gap: var(--xmlui-space-4);
1882
1888
  height: 100%;
1883
1889
  }
1884
- ._logoAndTitle_2nmv3_74:not(:empty) {
1890
+ ._logoAndTitle_1m0kp_79:not(:empty) {
1885
1891
  padding-right: var(--xmlui-space-2);
1886
1892
  }
1887
- ._logoAndTitle_2nmv3_74:empty {
1893
+ ._logoAndTitle_1m0kp_79:empty {
1888
1894
  display: none;
1889
1895
  }
1890
1896
 
1891
- ._logoContainer_2nmv3_87:not(:empty) {
1897
+ ._logoContainer_1m0kp_92:not(:empty) {
1892
1898
  flex-shrink: 0;
1893
1899
  display: flex;
1894
1900
  width: var(--xmlui-width-logo-AppHeader);
@@ -1901,16 +1907,16 @@ See this source for details: https://css-tricks.com/line-clampin/
1901
1907
  padding-bottom: var(--xmlui-paddingBottom-logo-AppHeader, var(--xmlui-paddingVertical-logo-AppHeader, var(--xmlui-padding-logo-AppHeader)));
1902
1908
  }
1903
1909
 
1904
- ._customLogoContainer_2nmv3_100 {
1910
+ ._customLogoContainer_1m0kp_105 {
1905
1911
  display: flex;
1906
1912
  height: 100%;
1907
1913
  align-items: center;
1908
1914
  }
1909
- ._customLogoContainer_2nmv3_100 > img {
1915
+ ._customLogoContainer_1m0kp_105 > img {
1910
1916
  height: 100%;
1911
1917
  }
1912
1918
 
1913
- ._rightItems_2nmv3_109 {
1919
+ ._rightItems_1m0kp_114 {
1914
1920
  --stack-gap-default: var(--xmlui-space-2);
1915
1921
  gap: var(--stack-gap-default);
1916
1922
  height: 100%;
@@ -1918,11 +1924,11 @@ See this source for details: https://css-tricks.com/line-clampin/
1918
1924
  flex-direction: row;
1919
1925
  align-items: center;
1920
1926
  }
1921
- ._rightItems_2nmv3_109:not(:empty) {
1927
+ ._rightItems_1m0kp_114:not(:empty) {
1922
1928
  padding-left: var(--xmlui-space-4);
1923
1929
  }
1924
1930
 
1925
- ._appHub_2nmv3_121 {
1931
+ ._appHub_1m0kp_126 {
1926
1932
  text-decoration: none;
1927
1933
  margin-right: var(--xmlui-space-4);
1928
1934
  width: 40px;
@@ -1930,10 +1936,10 @@ See this source for details: https://css-tricks.com/line-clampin/
1930
1936
  color: var(--xmlui-textColor-subtitle);
1931
1937
  cursor: pointer;
1932
1938
  }
1933
- ._appHub_2nmv3_121:hover {
1939
+ ._appHub_1m0kp_126:hover {
1934
1940
  color: var(--xmlui-textColor-secondary);
1935
1941
  }
1936
- ._appHub_2nmv3_121 svg {
1942
+ ._appHub_1m0kp_126 svg {
1937
1943
  width: 100%;
1938
1944
  height: 100%;
1939
1945
  }/*
@@ -4165,40 +4171,40 @@ See this source for details: https://css-tricks.com/line-clampin/
4165
4171
  * This function allows other CSS modules to get the value of the CSS variable specified in $componentVariable.
4166
4172
  Optionally, you can provide a $fallbackValue to set the variable's value if that is not defined.
4167
4173
  */
4168
- ._selectValue_1gnmc_13 > span {
4174
+ ._selectValue_1o7b6_13 > span {
4169
4175
  font-size: var(--xmlui-fontSize-Select-default);
4170
4176
  color: var(--xmlui-textColor-placeholder-Select-default);
4171
4177
  }
4172
- ._selectValue_1gnmc_13 > span > div {
4178
+ ._selectValue_1o7b6_13 > span > div {
4173
4179
  color: var(--xmlui-textColor-Select-default);
4174
4180
  font-size: var(--xmlui-fontSize-Select-default);
4175
4181
  }
4176
- ._selectValue_1gnmc_13._error_1gnmc_21 > span {
4182
+ ._selectValue_1o7b6_13._error_1o7b6_21 > span {
4177
4183
  font-size: var(--xmlui-fontSize-Select-error);
4178
4184
  color: var(--xmlui-textColor-placeholder-Select-error);
4179
4185
  }
4180
- ._selectValue_1gnmc_13._error_1gnmc_21 > span > div {
4186
+ ._selectValue_1o7b6_13._error_1o7b6_21 > span > div {
4181
4187
  color: var(--xmlui-textColor-Select-error);
4182
4188
  font-size: var(--xmlui-fontSize-Select-error);
4183
4189
  }
4184
- ._selectValue_1gnmc_13._warning_1gnmc_29 > span {
4190
+ ._selectValue_1o7b6_13._warning_1o7b6_29 > span {
4185
4191
  font-size: var(--xmlui-fontSize-Select-warning);
4186
4192
  color: var(--xmlui-textColor-placeholder-Select-warning);
4187
4193
  }
4188
- ._selectValue_1gnmc_13._warning_1gnmc_29 > span > div {
4194
+ ._selectValue_1o7b6_13._warning_1o7b6_29 > span > div {
4189
4195
  color: var(--xmlui-textColor-Select-warning);
4190
4196
  font-size: var(--xmlui-fontSize-Select-warning);
4191
4197
  }
4192
- ._selectValue_1gnmc_13._valid_1gnmc_37 > span {
4198
+ ._selectValue_1o7b6_13._valid_1o7b6_37 > span {
4193
4199
  font-size: var(--xmlui-fontSize-Select-success);
4194
4200
  color: var(--xmlui-textColor-placeholder-Select-success);
4195
4201
  }
4196
- ._selectValue_1gnmc_13._valid_1gnmc_37 > span > div {
4202
+ ._selectValue_1o7b6_13._valid_1o7b6_37 > span > div {
4197
4203
  color: var(--xmlui-textColor-Select-success);
4198
4204
  font-size: var(--xmlui-fontSize-Select-success);
4199
4205
  }
4200
4206
 
4201
- ._selectTrigger_1gnmc_46 {
4207
+ button._selectTrigger_1o7b6_46 {
4202
4208
  min-height: 2.6rem;
4203
4209
  display: flex;
4204
4210
  padding: var(--xmlui-space-1) var(--xmlui-space-2);
@@ -4216,22 +4222,22 @@ See this source for details: https://css-tricks.com/line-clampin/
4216
4222
  box-shadow: var(--xmlui-boxShadow-Select-default);
4217
4223
  color: var(--xmlui-textColor-Select-default);
4218
4224
  }
4219
- ._selectTrigger_1gnmc_46:hover {
4225
+ button._selectTrigger_1o7b6_46:hover {
4220
4226
  border-color: var(--xmlui-borderColor-Select-default--hover);
4221
4227
  background-color: var(--xmlui-backgroundColor-Select-default--hover);
4222
4228
  box-shadow: var(--xmlui-boxShadow-Select-default--hover);
4223
4229
  color: var(--xmlui-textColor-Select-default--hover);
4224
4230
  }
4225
- ._selectTrigger_1gnmc_46:focus {
4231
+ button._selectTrigger_1o7b6_46:focus {
4226
4232
  outline-width: var(--xmlui-outlineWidth-Select-default--focus);
4227
4233
  outline-color: var(--xmlui-outlineColor-Select-default--focus);
4228
4234
  outline-style: var(--xmlui-outlineStyle-Select-default--focus);
4229
4235
  outline-offset: var(--xmlui-outlineOffset-Select-default--focus);
4230
4236
  }
4231
- ._selectTrigger_1gnmc_46::placeholder {
4237
+ button._selectTrigger_1o7b6_46::placeholder {
4232
4238
  color: var(--xmlui-textColor-placeholder-Select-default);
4233
4239
  }
4234
- ._selectTrigger_1gnmc_46._error_1gnmc_21 {
4240
+ button._selectTrigger_1o7b6_46._error_1o7b6_21 {
4235
4241
  border-radius: var(--xmlui-borderRadius-Select-error);
4236
4242
  border-color: var(--xmlui-borderColor-Select-error);
4237
4243
  border-width: var(--xmlui-borderWidth-Select-error);
@@ -4241,22 +4247,22 @@ See this source for details: https://css-tricks.com/line-clampin/
4241
4247
  box-shadow: var(--xmlui-boxShadow-Select-error);
4242
4248
  color: var(--xmlui-textColor-Select-error);
4243
4249
  }
4244
- ._selectTrigger_1gnmc_46._error_1gnmc_21:hover {
4250
+ button._selectTrigger_1o7b6_46._error_1o7b6_21:hover {
4245
4251
  border-color: var(--xmlui-borderColor-Select-error--hover);
4246
4252
  background-color: var(--xmlui-backgroundColor-Select-error--hover);
4247
4253
  box-shadow: var(--xmlui-boxShadow-Select-error--hover);
4248
4254
  color: var(--xmlui-textColor-Select-error--hover);
4249
4255
  }
4250
- ._selectTrigger_1gnmc_46._error_1gnmc_21:focus {
4256
+ button._selectTrigger_1o7b6_46._error_1o7b6_21:focus {
4251
4257
  outline-width: var(--xmlui-outlineWidth-Select-error--focus);
4252
4258
  outline-color: var(--xmlui-outlineColor-Select-error--focus);
4253
4259
  outline-style: var(--xmlui-outlineStyle-Select-error--focus);
4254
4260
  outline-offset: var(--xmlui-outlineOffset-Select-error--focus);
4255
4261
  }
4256
- ._selectTrigger_1gnmc_46._error_1gnmc_21::placeholder {
4262
+ button._selectTrigger_1o7b6_46._error_1o7b6_21::placeholder {
4257
4263
  color: var(--xmlui-textColor-placeholder-Select-error);
4258
4264
  }
4259
- ._selectTrigger_1gnmc_46._warning_1gnmc_29 {
4265
+ button._selectTrigger_1o7b6_46._warning_1o7b6_29 {
4260
4266
  border-radius: var(--xmlui-borderRadius-Select-warning);
4261
4267
  border-color: var(--xmlui-borderColor-Select-warning);
4262
4268
  border-width: var(--xmlui-borderWidth-Select-warning);
@@ -4266,22 +4272,22 @@ See this source for details: https://css-tricks.com/line-clampin/
4266
4272
  box-shadow: var(--xmlui-boxShadow-Select-warning);
4267
4273
  color: var(--xmlui-textColor-Select-warning);
4268
4274
  }
4269
- ._selectTrigger_1gnmc_46._warning_1gnmc_29:hover {
4275
+ button._selectTrigger_1o7b6_46._warning_1o7b6_29:hover {
4270
4276
  border-color: var(--xmlui-borderColor-Select-warning--hover);
4271
4277
  background-color: var(--xmlui-backgroundColor-Select-warning--hover);
4272
4278
  box-shadow: var(--xmlui-boxShadow-Select-warning--hover);
4273
4279
  color: var(--xmlui-textColor-Select-warning--hover);
4274
4280
  }
4275
- ._selectTrigger_1gnmc_46._warning_1gnmc_29:focus {
4281
+ button._selectTrigger_1o7b6_46._warning_1o7b6_29:focus {
4276
4282
  outline-width: var(--xmlui-outlineWidth-Select-warning--focus);
4277
4283
  outline-color: var(--xmlui-outlineColor-Select-warning--focus);
4278
4284
  outline-style: var(--xmlui-outlineStyle-Select-warning--focus);
4279
4285
  outline-offset: var(--xmlui-outlineOffset-Select-warning--focus);
4280
4286
  }
4281
- ._selectTrigger_1gnmc_46._warning_1gnmc_29::placeholder {
4287
+ button._selectTrigger_1o7b6_46._warning_1o7b6_29::placeholder {
4282
4288
  color: var(--xmlui-textColor-placeholder-Select-warning);
4283
4289
  }
4284
- ._selectTrigger_1gnmc_46._valid_1gnmc_37 {
4290
+ button._selectTrigger_1o7b6_46._valid_1o7b6_37 {
4285
4291
  border-radius: var(--xmlui-borderRadius-Select-success);
4286
4292
  border-color: var(--xmlui-borderColor-Select-success);
4287
4293
  border-width: var(--xmlui-borderWidth-Select-success);
@@ -4291,23 +4297,23 @@ See this source for details: https://css-tricks.com/line-clampin/
4291
4297
  box-shadow: var(--xmlui-boxShadow-Select-success);
4292
4298
  color: var(--xmlui-textColor-Select-success);
4293
4299
  }
4294
- ._selectTrigger_1gnmc_46._valid_1gnmc_37:hover {
4300
+ button._selectTrigger_1o7b6_46._valid_1o7b6_37:hover {
4295
4301
  border-color: var(--xmlui-borderColor-Select-success--hover);
4296
4302
  background-color: var(--xmlui-backgroundColor-Select-success--hover);
4297
4303
  box-shadow: var(--xmlui-boxShadow-Select-success--hover);
4298
4304
  color: var(--xmlui-textColor-Select-success--hover);
4299
4305
  }
4300
- ._selectTrigger_1gnmc_46._valid_1gnmc_37:focus {
4306
+ button._selectTrigger_1o7b6_46._valid_1o7b6_37:focus {
4301
4307
  outline-width: var(--xmlui-outlineWidth-Select-success--focus);
4302
4308
  outline-color: var(--xmlui-outlineColor-Select-success--focus);
4303
4309
  outline-style: var(--xmlui-outlineStyle-Select-success--focus);
4304
4310
  outline-offset: var(--xmlui-outlineOffset-Select-success--focus);
4305
4311
  }
4306
- ._selectTrigger_1gnmc_46._valid_1gnmc_37::placeholder {
4312
+ button._selectTrigger_1o7b6_46._valid_1o7b6_37::placeholder {
4307
4313
  color: var(--xmlui-textColor-placeholder-Select-success);
4308
4314
  }
4309
4315
 
4310
- ._selectTrigger_1gnmc_46:disabled {
4316
+ ._selectTrigger_1o7b6_46:disabled {
4311
4317
  cursor: not-allowed;
4312
4318
  opacity: var(--xmlui-opacity-Select--disabled);
4313
4319
  background-color: var(--xmlui-backgroundColor-Select--disabled);
@@ -4315,28 +4321,28 @@ See this source for details: https://css-tricks.com/line-clampin/
4315
4321
  border-color: var(--xmlui-borderColor-Select--disabled);
4316
4322
  }
4317
4323
 
4318
- ._selectTrigger_1gnmc_46 > span {
4324
+ ._selectTrigger_1o7b6_46 > span {
4319
4325
  display: -webkit-box;
4320
4326
  -webkit-box-orient: vertical;
4321
4327
  -webkit-line-clamp: 1;
4322
4328
  overflow: hidden;
4323
4329
  }
4324
4330
 
4325
- ._badgeListContainer_1gnmc_170 {
4331
+ ._badgeListContainer_1o7b6_170 {
4326
4332
  display: flex;
4327
4333
  justify-content: space-between;
4328
4334
  align-items: center;
4329
4335
  width: 100%;
4330
4336
  }
4331
4337
 
4332
- ._badgeList_1gnmc_170 {
4338
+ ._badgeList_1o7b6_170 {
4333
4339
  gap: 4px;
4334
4340
  display: flex;
4335
4341
  flex-wrap: wrap;
4336
4342
  align-items: center;
4337
4343
  }
4338
4344
 
4339
- ._badge_1gnmc_170 {
4345
+ ._badge_1o7b6_170 {
4340
4346
  width: fit-content;
4341
4347
  height: fit-content;
4342
4348
  min-width: 0;
@@ -4353,27 +4359,27 @@ See this source for details: https://css-tricks.com/line-clampin/
4353
4359
  background-color: var(--xmlui-backgroundColor-Select-badge);
4354
4360
  color: var(--xmlui-textColor-Select-badge);
4355
4361
  }
4356
- ._badge_1gnmc_170:hover {
4362
+ ._badge_1o7b6_170:hover {
4357
4363
  background-color: var(--xmlui-backgroundColor-Select-badge--hover);
4358
4364
  color: var(--xmlui-textColor-Select-badge--hover);
4359
4365
  }
4360
- ._badge_1gnmc_170:active {
4366
+ ._badge_1o7b6_170:active {
4361
4367
  background-color: var(--xmlui-backgroundColor-Select-badge--active);
4362
4368
  color: var(--xmlui-textColor-Select-badge--active);
4363
4369
  }
4364
4370
 
4365
- ._actions_1gnmc_210 {
4371
+ ._actions_1o7b6_210 {
4366
4372
  display: flex;
4367
4373
  align-items: center;
4368
4374
  justify-content: space-between;
4369
4375
  }
4370
4376
 
4371
- ._placeholder_1gnmc_216 {
4377
+ ._placeholder_1o7b6_216 {
4372
4378
  display: block;
4373
4379
  color: var(--xmlui-textColor-placeholder-Select);
4374
4380
  }
4375
4381
 
4376
- ._emptyList_1gnmc_221 {
4382
+ ._emptyList_1o7b6_221 {
4377
4383
  display: flex;
4378
4384
  gap: 0.2rem;
4379
4385
  padding: 10px 0;
@@ -4383,7 +4389,7 @@ See this source for details: https://css-tricks.com/line-clampin/
4383
4389
  width: 100%;
4384
4390
  }
4385
4391
 
4386
- ._selectScrollUpButton_1gnmc_231 {
4392
+ ._selectScrollUpButton_1o7b6_231 {
4387
4393
  display: flex;
4388
4394
  cursor: default;
4389
4395
  align-items: center;
@@ -4392,7 +4398,7 @@ See this source for details: https://css-tricks.com/line-clampin/
4392
4398
  padding-bottom: 0.25rem;
4393
4399
  }
4394
4400
 
4395
- ._selectScrollDownButton_1gnmc_240 {
4401
+ ._selectScrollDownButton_1o7b6_240 {
4396
4402
  display: flex;
4397
4403
  cursor: default;
4398
4404
  align-items: center;
@@ -4401,7 +4407,7 @@ See this source for details: https://css-tricks.com/line-clampin/
4401
4407
  padding-bottom: 0.25rem;
4402
4408
  }
4403
4409
 
4404
- ._command_1gnmc_249 {
4410
+ ._command_1o7b6_249 {
4405
4411
  display: flex;
4406
4412
  flex-direction: column;
4407
4413
  height: 100%;
@@ -4411,14 +4417,14 @@ See this source for details: https://css-tricks.com/line-clampin/
4411
4417
  background-color: var(--xmlui-backgroundColor-menu-Select);
4412
4418
  }
4413
4419
 
4414
- ._commandInputContainer_1gnmc_259 {
4420
+ ._commandInputContainer_1o7b6_259 {
4415
4421
  display: flex;
4416
4422
  align-items: center;
4417
4423
  padding: 0 12px;
4418
4424
  border-bottom: 1px solid var(--xmlui-borderColor);
4419
4425
  }
4420
4426
 
4421
- ._commandInput_1gnmc_259 {
4427
+ ._commandInput_1o7b6_259 {
4422
4428
  flex: 1;
4423
4429
  background-color: transparent;
4424
4430
  padding: 0.5rem;
@@ -4426,22 +4432,22 @@ See this source for details: https://css-tricks.com/line-clampin/
4426
4432
  outline: none;
4427
4433
  border: none;
4428
4434
  }
4429
- ._commandInput_1gnmc_259:focus {
4435
+ ._commandInput_1o7b6_259:focus {
4430
4436
  outline: none;
4431
4437
  box-shadow: none;
4432
4438
  border: 0;
4433
4439
  }
4434
- ._commandInput_1gnmc_259:disabled {
4440
+ ._commandInput_1o7b6_259:disabled {
4435
4441
  cursor: not-allowed;
4436
4442
  opacity: var(--xmlui-opacity-Select--disabled);
4437
4443
  }
4438
4444
 
4439
- ._commandList_1gnmc_284 {
4445
+ ._commandList_1o7b6_284 {
4440
4446
  overflow-y: auto;
4441
4447
  overflow-x: hidden;
4442
4448
  }
4443
4449
 
4444
- ._selectContent_1gnmc_289 {
4450
+ ._selectContent_1o7b6_289 {
4445
4451
  position: relative;
4446
4452
  z-index: 50;
4447
4453
  overflow: auto;
@@ -4450,38 +4456,38 @@ See this source for details: https://css-tricks.com/line-clampin/
4450
4456
  box-shadow: var(--xmlui-boxShadow-menu-Select);
4451
4457
  border: var(--xmlui-borderWidth-menu-Select) solid var(--xmlui-borderColor-menu-Select);
4452
4458
  }
4453
- ._selectContent_1gnmc_289[data-state=open] {
4454
- animation: _fadeIn_1gnmc_1 0.3s ease-in-out, _zoomIn_1gnmc_1 0.3s ease-in-out;
4459
+ ._selectContent_1o7b6_289[data-state=open] {
4460
+ animation: _fadeIn_1o7b6_1 0.3s ease-in-out, _zoomIn_1o7b6_1 0.3s ease-in-out;
4455
4461
  }
4456
- ._selectContent_1gnmc_289[data-state=closed] {
4457
- animation: _fadeOut_1gnmc_1 0.3s ease-in-out, _zoomOut_1gnmc_1 0.3s ease-in-out;
4462
+ ._selectContent_1o7b6_289[data-state=closed] {
4463
+ animation: _fadeOut_1o7b6_1 0.3s ease-in-out, _zoomOut_1o7b6_1 0.3s ease-in-out;
4458
4464
  }
4459
- ._selectContent_1gnmc_289[data-side=bottom] {
4460
- animation: _slideInFromTop_1gnmc_1 0.08s ease-in-out;
4465
+ ._selectContent_1o7b6_289[data-side=bottom] {
4466
+ animation: _slideInFromTop_1o7b6_1 0.08s ease-in-out;
4461
4467
  }
4462
- ._selectContent_1gnmc_289[data-side=left] {
4463
- animation: _slideInFromRight_1gnmc_1 0.3s ease-in-out;
4468
+ ._selectContent_1o7b6_289[data-side=left] {
4469
+ animation: _slideInFromRight_1o7b6_1 0.3s ease-in-out;
4464
4470
  }
4465
- ._selectContent_1gnmc_289[data-side=right] {
4466
- animation: _slideInFromLeft_1gnmc_1 0.3s ease-in-out;
4471
+ ._selectContent_1o7b6_289[data-side=right] {
4472
+ animation: _slideInFromLeft_1o7b6_1 0.3s ease-in-out;
4467
4473
  }
4468
- ._selectContent_1gnmc_289[data-side=top] {
4469
- animation: _slideInFromBottom_1gnmc_1 0.3s ease-in-out;
4474
+ ._selectContent_1o7b6_289[data-side=top] {
4475
+ animation: _slideInFromBottom_1o7b6_1 0.3s ease-in-out;
4470
4476
  }
4471
- ._selectContent_1gnmc_289[data-side=bottom] {
4477
+ ._selectContent_1o7b6_289[data-side=bottom] {
4472
4478
  transform: translateY(0.25rem);
4473
4479
  }
4474
- ._selectContent_1gnmc_289[data-side=left] {
4480
+ ._selectContent_1o7b6_289[data-side=left] {
4475
4481
  transform: translateX(-0.25rem);
4476
4482
  }
4477
- ._selectContent_1gnmc_289[data-side=right] {
4483
+ ._selectContent_1o7b6_289[data-side=right] {
4478
4484
  transform: translateX(0.25rem);
4479
4485
  }
4480
- ._selectContent_1gnmc_289[data-side=top] {
4486
+ ._selectContent_1o7b6_289[data-side=top] {
4481
4487
  transform: translateY(-0.25rem);
4482
4488
  }
4483
4489
 
4484
- ._multiComboboxOption_1gnmc_329 {
4490
+ ._multiComboboxOption_1o7b6_329 {
4485
4491
  padding: 0.5rem 1rem;
4486
4492
  display: flex;
4487
4493
  gap: 1rem;
@@ -4491,17 +4497,17 @@ See this source for details: https://css-tricks.com/line-clampin/
4491
4497
  transition: background-color 0.2s ease;
4492
4498
  background-color: var(--xmlui-backgroundColor-item-Select);
4493
4499
  }
4494
- ._multiComboboxOption_1gnmc_329[data-selected=true] {
4500
+ ._multiComboboxOption_1o7b6_329[data-selected=true] {
4495
4501
  background-color: var(--xmlui-backgroundColor-item-Select--hover);
4496
4502
  }
4497
- ._multiComboboxOption_1gnmc_329[data-disabled=true] {
4503
+ ._multiComboboxOption_1o7b6_329[data-disabled=true] {
4498
4504
  pointer-events: none;
4499
4505
  opacity: var(--xmlui-opacity-text-item-Select--disabled);
4500
4506
  cursor: not-allowed;
4501
4507
  font-style: italic;
4502
4508
  }
4503
4509
 
4504
- ._selectItem_1gnmc_349 {
4510
+ ._selectItem_1o7b6_349 {
4505
4511
  position: relative;
4506
4512
  display: flex;
4507
4513
  width: 100%;
@@ -4515,21 +4521,21 @@ See this source for details: https://css-tricks.com/line-clampin/
4515
4521
  outline: none;
4516
4522
  font-size: var(--xmlui-fontSize-Select);
4517
4523
  }
4518
- ._selectItem_1gnmc_349[data-highlighted] {
4524
+ ._selectItem_1o7b6_349[data-highlighted] {
4519
4525
  background-color: var(--xmlui-backgroundColor-item-Select--hover);
4520
4526
  }
4521
- ._selectItem_1gnmc_349[data-state=checked] {
4527
+ ._selectItem_1o7b6_349[data-state=checked] {
4522
4528
  background-color: var(--xmlui-backgroundColor-item-Select--active);
4523
4529
  }
4524
4530
 
4525
- ._selectItem_1gnmc_349[data-disabled] {
4531
+ ._selectItem_1o7b6_349[data-disabled] {
4526
4532
  pointer-events: none;
4527
4533
  opacity: var(--xmlui-opacity-text-item-Select--disabled);
4528
4534
  cursor: not-allowed;
4529
4535
  font-style: italic;
4530
4536
  }
4531
4537
 
4532
- ._selectItemIndicator_1gnmc_377 {
4538
+ ._selectItemIndicator_1o7b6_377 {
4533
4539
  position: absolute;
4534
4540
  right: 0.5rem;
4535
4541
  display: flex;
@@ -4540,13 +4546,13 @@ See this source for details: https://css-tricks.com/line-clampin/
4540
4546
  color: var(--xmlui-textColor-indicator-Select);
4541
4547
  }
4542
4548
 
4543
- ._selectViewport_1gnmc_388 {
4549
+ ._selectViewport_1o7b6_388 {
4544
4550
  height: var(--radix-select-trigger-height);
4545
4551
  width: 100%;
4546
4552
  min-width: var(--radix-select-trigger-width);
4547
4553
  }
4548
4554
 
4549
- ._selectEmpty_1gnmc_394 {
4555
+ ._selectEmpty_1o7b6_394 {
4550
4556
  display: flex;
4551
4557
  gap: 0.2rem;
4552
4558
  height: 100%;
@@ -4557,7 +4563,7 @@ See this source for details: https://css-tricks.com/line-clampin/
4557
4563
  width: 100%;
4558
4564
  }
4559
4565
 
4560
- ._srOnly_1gnmc_405 {
4566
+ ._srOnly_1o7b6_405 {
4561
4567
  position: absolute;
4562
4568
  width: 1px;
4563
4569
  height: 1px;
@@ -4569,7 +4575,7 @@ See this source for details: https://css-tricks.com/line-clampin/
4569
4575
  border: 0;
4570
4576
  }
4571
4577
 
4572
- @keyframes _fadeIn_1gnmc_1 {
4578
+ @keyframes _fadeIn_1o7b6_1 {
4573
4579
  from {
4574
4580
  opacity: 0;
4575
4581
  }
@@ -4577,7 +4583,7 @@ See this source for details: https://css-tricks.com/line-clampin/
4577
4583
  opacity: 1;
4578
4584
  }
4579
4585
  }
4580
- @keyframes _fadeOut_1gnmc_1 {
4586
+ @keyframes _fadeOut_1o7b6_1 {
4581
4587
  from {
4582
4588
  opacity: 1;
4583
4589
  }
@@ -4585,7 +4591,7 @@ See this source for details: https://css-tricks.com/line-clampin/
4585
4591
  opacity: 0;
4586
4592
  }
4587
4593
  }
4588
- @keyframes _zoomIn_1gnmc_1 {
4594
+ @keyframes _zoomIn_1o7b6_1 {
4589
4595
  from {
4590
4596
  transform: scale(0.95);
4591
4597
  }
@@ -4593,7 +4599,7 @@ See this source for details: https://css-tricks.com/line-clampin/
4593
4599
  transform: scale(1);
4594
4600
  }
4595
4601
  }
4596
- @keyframes _zoomOut_1gnmc_1 {
4602
+ @keyframes _zoomOut_1o7b6_1 {
4597
4603
  from {
4598
4604
  transform: scale(1);
4599
4605
  }
@@ -4601,7 +4607,7 @@ See this source for details: https://css-tricks.com/line-clampin/
4601
4607
  transform: scale(0.95);
4602
4608
  }
4603
4609
  }
4604
- @keyframes _slideInFromTop_1gnmc_1 {
4610
+ @keyframes _slideInFromTop_1o7b6_1 {
4605
4611
  from {
4606
4612
  transform: translateY(-0.75rem);
4607
4613
  }
@@ -4609,7 +4615,7 @@ See this source for details: https://css-tricks.com/line-clampin/
4609
4615
  transform: translateY(0);
4610
4616
  }
4611
4617
  }
4612
- @keyframes _slideInFromBottom_1gnmc_1 {
4618
+ @keyframes _slideInFromBottom_1o7b6_1 {
4613
4619
  from {
4614
4620
  transform: translateY(0.75rem);
4615
4621
  }
@@ -4617,7 +4623,7 @@ See this source for details: https://css-tricks.com/line-clampin/
4617
4623
  transform: translateY(0);
4618
4624
  }
4619
4625
  }
4620
- @keyframes _slideInFromLeft_1gnmc_1 {
4626
+ @keyframes _slideInFromLeft_1o7b6_1 {
4621
4627
  from {
4622
4628
  transform: translateX(-100%);
4623
4629
  }
@@ -4625,7 +4631,7 @@ See this source for details: https://css-tricks.com/line-clampin/
4625
4631
  transform: translateX(0);
4626
4632
  }
4627
4633
  }
4628
- @keyframes _slideInFromRight_1gnmc_1 {
4634
+ @keyframes _slideInFromRight_1o7b6_1 {
4629
4635
  from {
4630
4636
  transform: translateX(100%);
4631
4637
  }
@@ -4928,14 +4934,14 @@ See this source for details: https://css-tricks.com/line-clampin/
4928
4934
  * This function allows other CSS modules to get the value of the CSS variable specified in $componentVariable.
4929
4935
  Optionally, you can provide a $fallbackValue to set the variable's value if that is not defined.
4930
4936
  */
4931
- ._command_1bkxa_13 {
4937
+ ._command_17zx6_13 {
4932
4938
  width: 100%;
4933
4939
  height: auto;
4934
4940
  overflow: visible;
4935
4941
  background-color: transparent;
4936
4942
  }
4937
4943
 
4938
- ._badgeListWrapper_1bkxa_20 {
4944
+ ._badgeListWrapper_17zx6_20 {
4939
4945
  outline: none;
4940
4946
  display: flex;
4941
4947
  padding: var(--xmlui-space-1) var(--xmlui-space-2);
@@ -4949,16 +4955,16 @@ See this source for details: https://css-tricks.com/line-clampin/
4949
4955
  box-shadow: var(--xmlui-boxShadow-AutoComplete-default);
4950
4956
  color: var(--xmlui-textColor-AutoComplete-default);
4951
4957
  }
4952
- ._badgeListWrapper_1bkxa_20:hover {
4958
+ ._badgeListWrapper_17zx6_20:hover {
4953
4959
  border-color: var(--xmlui-borderColor-AutoComplete-default--hover);
4954
4960
  background-color: var(--xmlui-backgroundColor-AutoComplete-default--hover);
4955
4961
  box-shadow: var(--xmlui-boxShadow-AutoComplete-default--hover);
4956
4962
  color: var(--xmlui-textColor-AutoComplete-default--hover);
4957
4963
  }
4958
- ._badgeListWrapper_1bkxa_20::placeholder {
4964
+ ._badgeListWrapper_17zx6_20::placeholder {
4959
4965
  color: var(--xmlui-textColor-placeholder-AutoComplete-default);
4960
4966
  }
4961
- ._badgeListWrapper_1bkxa_20._error_1bkxa_43 {
4967
+ ._badgeListWrapper_17zx6_20._error_17zx6_43 {
4962
4968
  border-radius: var(--xmlui-borderRadius-AutoComplete-error);
4963
4969
  border-color: var(--xmlui-borderColor-AutoComplete-error);
4964
4970
  border-width: var(--xmlui-borderWidth-AutoComplete-error);
@@ -4968,16 +4974,16 @@ See this source for details: https://css-tricks.com/line-clampin/
4968
4974
  box-shadow: var(--xmlui-boxShadow-AutoComplete-error);
4969
4975
  color: var(--xmlui-textColor-AutoComplete-error);
4970
4976
  }
4971
- ._badgeListWrapper_1bkxa_20._error_1bkxa_43:hover {
4977
+ ._badgeListWrapper_17zx6_20._error_17zx6_43:hover {
4972
4978
  border-color: var(--xmlui-borderColor-AutoComplete-error--hover);
4973
4979
  background-color: var(--xmlui-backgroundColor-AutoComplete-error--hover);
4974
4980
  box-shadow: var(--xmlui-boxShadow-AutoComplete-error--hover);
4975
4981
  color: var(--xmlui-textColor-AutoComplete-error--hover);
4976
4982
  }
4977
- ._badgeListWrapper_1bkxa_20._error_1bkxa_43::placeholder {
4983
+ ._badgeListWrapper_17zx6_20._error_17zx6_43::placeholder {
4978
4984
  color: var(--xmlui-textColor-placeholder-AutoComplete-error);
4979
4985
  }
4980
- ._badgeListWrapper_1bkxa_20._warning_1bkxa_62 {
4986
+ ._badgeListWrapper_17zx6_20._warning_17zx6_62 {
4981
4987
  border-radius: var(--xmlui-borderRadius-AutoComplete-warning);
4982
4988
  border-color: var(--xmlui-borderColor-AutoComplete-warning);
4983
4989
  border-width: var(--xmlui-borderWidth-AutoComplete-warning);
@@ -4987,16 +4993,16 @@ See this source for details: https://css-tricks.com/line-clampin/
4987
4993
  box-shadow: var(--xmlui-boxShadow-AutoComplete-warning);
4988
4994
  color: var(--xmlui-textColor-AutoComplete-warning);
4989
4995
  }
4990
- ._badgeListWrapper_1bkxa_20._warning_1bkxa_62:hover {
4996
+ ._badgeListWrapper_17zx6_20._warning_17zx6_62:hover {
4991
4997
  border-color: var(--xmlui-borderColor-AutoComplete-warning--hover);
4992
4998
  background-color: var(--xmlui-backgroundColor-AutoComplete-warning--hover);
4993
4999
  box-shadow: var(--xmlui-boxShadow-AutoComplete-warning--hover);
4994
5000
  color: var(--xmlui-textColor-AutoComplete-warning--hover);
4995
5001
  }
4996
- ._badgeListWrapper_1bkxa_20._warning_1bkxa_62::placeholder {
5002
+ ._badgeListWrapper_17zx6_20._warning_17zx6_62::placeholder {
4997
5003
  color: var(--xmlui-textColor-placeholder-AutoComplete-warning);
4998
5004
  }
4999
- ._badgeListWrapper_1bkxa_20._valid_1bkxa_81 {
5005
+ ._badgeListWrapper_17zx6_20._valid_17zx6_81 {
5000
5006
  border-radius: var(--xmlui-borderRadius-AutoComplete-success);
5001
5007
  border-color: var(--xmlui-borderColor-AutoComplete-success);
5002
5008
  border-width: var(--xmlui-borderWidth-AutoComplete-success);
@@ -5006,30 +5012,30 @@ See this source for details: https://css-tricks.com/line-clampin/
5006
5012
  box-shadow: var(--xmlui-boxShadow-AutoComplete-success);
5007
5013
  color: var(--xmlui-textColor-AutoComplete-success);
5008
5014
  }
5009
- ._badgeListWrapper_1bkxa_20._valid_1bkxa_81:hover {
5015
+ ._badgeListWrapper_17zx6_20._valid_17zx6_81:hover {
5010
5016
  border-color: var(--xmlui-borderColor-AutoComplete-success--hover);
5011
5017
  background-color: var(--xmlui-backgroundColor-AutoComplete-success--hover);
5012
5018
  box-shadow: var(--xmlui-boxShadow-AutoComplete-success--hover);
5013
5019
  color: var(--xmlui-textColor-AutoComplete-success--hover);
5014
5020
  }
5015
- ._badgeListWrapper_1bkxa_20._valid_1bkxa_81::placeholder {
5021
+ ._badgeListWrapper_17zx6_20._valid_17zx6_81::placeholder {
5016
5022
  color: var(--xmlui-textColor-placeholder-AutoComplete-success);
5017
5023
  }
5018
- ._badgeListWrapper_1bkxa_20._disabled_1bkxa_100 {
5024
+ ._badgeListWrapper_17zx6_20._disabled_17zx6_100 {
5019
5025
  cursor: not-allowed;
5020
5026
  opacity: 0.5;
5021
5027
  background-color: var(--xmlui-backgroundColor-AutoComplete--disabled);
5022
5028
  color: var(--xmlui-textColor-AutoComplete--disabled);
5023
5029
  border-color: var(--xmlui-borderColor-AutoComplete--disabled);
5024
5030
  }
5025
- ._badgeListWrapper_1bkxa_20._focused_1bkxa_107 {
5031
+ ._badgeListWrapper_17zx6_20._focused_17zx6_107 {
5026
5032
  outline-width: var(--xmlui-outlineWidth-AutoComplete--focus);
5027
5033
  outline-color: var(--xmlui-outlineColor-AutoComplete--focus);
5028
5034
  outline-style: var(--xmlui-outlineStyle-AutoComplete--focus);
5029
5035
  outline-offset: var(--xmlui-outlineOffset-AutoComplete--focus);
5030
5036
  }
5031
5037
 
5032
- ._badgeList_1bkxa_20 {
5038
+ ._badgeList_17zx6_20 {
5033
5039
  position: relative;
5034
5040
  flex-grow: 1;
5035
5041
  align-items: center;
@@ -5038,35 +5044,12 @@ See this source for details: https://css-tricks.com/line-clampin/
5038
5044
  gap: 0.25rem;
5039
5045
  }
5040
5046
 
5041
- ._badge_1bkxa_20 {
5047
+ ._badge_17zx6_20 {
5042
5048
  width: fit-content;
5043
5049
  height: fit-content;
5044
5050
  min-width: 0;
5045
- padding: var(--xmlui-padding-badge-AutoComplete);
5046
- padding-left: var(--xmlui-paddingLeft-badge-AutoComplete, var(--xmlui-paddingHorizontal-badge-AutoComplete, var(--xmlui-padding-badge-AutoComplete)));
5047
- padding-right: var(--xmlui-paddingRight-badge-AutoComplete, var(--xmlui-paddingHorizontal-badge-AutoComplete, var(--xmlui-padding-badge-AutoComplete)));
5048
- padding-top: var(--xmlui-paddingTop-badge-AutoComplete, var(--xmlui-paddingVertical-badge-AutoComplete, var(--xmlui-padding-badge-AutoComplete)));
5049
- padding-bottom: var(--xmlui-paddingBottom-badge-AutoComplete, var(--xmlui-paddingVertical-badge-AutoComplete, var(--xmlui-padding-badge-AutoComplete)));
5050
- border-left: var(--xmlui-borderLeft-badge-AutoComplete, var(--xmlui-borderHorizontal-badge-AutoComplete, var(--xmlui-border-badge-AutoComplete)));
5051
- border-right: var(--xmlui-borderRight-badge-AutoComplete, var(--xmlui-borderHorizontal-badge-AutoComplete, var(--xmlui-border-badge-AutoComplete)));
5052
- border-top: var(--xmlui-borderTop-badge-AutoComplete, var(--xmlui-borderVertical-badge-AutoComplete, var(--xmlui-border-badge-AutoComplete)));
5053
- border-bottom: var(--xmlui-borderBottom-badge-AutoComplete, var(--xmlui-borderVertical-badge-AutoComplete, var(--xmlui-border-badge-AutoComplete)));
5054
- border-left-style: var(--xmlui-borderLeftStyle-badge-AutoComplete, var(--xmlui-borderHorizontalStyle-badge-AutoComplete, var(--xmlui-borderStyle-badge-AutoComplete)));
5055
- border-right-style: var(--xmlui-borderRightStyle-badge-AutoComplete, var(--xmlui-borderHorizontalStyle-badge-AutoComplete, var(--xmlui-borderStyle-badge-AutoComplete)));
5056
- border-top-style: var(--xmlui-borderTopStyle-badge-AutoComplete, var(--xmlui-borderVerticalStyle-badge-AutoComplete, var(--xmlui-borderStyle-badge-AutoComplete)));
5057
- border-bottom-style: var(--xmlui-borderBottomStyle-badge-AutoComplete, var(--xmlui-borderVerticalStyle-badge-AutoComplete, var(--xmlui-borderStyle-badge-AutoComplete)));
5058
- border-left-width: var(--xmlui-borderLeftWidth-badge-AutoComplete, var(--xmlui-borderHorizontalWidth-badge-AutoComplete, var(--xmlui-borderWidth-badge-AutoComplete)));
5059
- border-right-width: var(--xmlui-borderRightWidth-badge-AutoComplete, var(--xmlui-borderHorizontalWidth-badge-AutoComplete, var(--xmlui-borderWidth-badge-AutoComplete)));
5060
- border-top-width: var(--xmlui-borderTopWidth-badge-AutoComplete, var(--xmlui-borderVerticalWidth-badge-AutoComplete, var(--xmlui-borderWidth-badge-AutoComplete)));
5061
- border-bottom-width: var(--xmlui-borderBottomWidth-badge-AutoComplete, var(--xmlui-borderVerticalWidth-badge-AutoComplete, var(--xmlui-borderWidth-badge-AutoComplete)));
5062
- border-left-color: var(--xmlui-borderLeftColor-badge-AutoComplete, var(--xmlui-borderHorizontalColor-badge-AutoComplete, var(--xmlui-borderColor-badge-AutoComplete)));
5063
- border-right-color: var(--xmlui-borderRightColor-badge-AutoComplete, var(--xmlui-borderHorizontalColor-badge-AutoComplete, var(--xmlui-borderColor-badge-AutoComplete)));
5064
- border-top-color: var(--xmlui-borderTopColor-badge-AutoComplete, var(--xmlui-borderVerticalColor-badge-AutoComplete, var(--xmlui-borderColor-badge-AutoComplete)));
5065
- border-bottom-color: var(--xmlui-borderBottomColor-badge-AutoComplete, var(--xmlui-borderVerticalColor-badge-AutoComplete, var(--xmlui-borderColor-badge-AutoComplete)));
5066
- border-start-start-radius: var(--xmlui-borderStartStartRadius-badge-AutoComplete, var(--xmlui-borderRadius-badge-AutoComplete));
5067
- border-start-end-radius: var(--xmlui-borderStartEndRadius-badge-AutoComplete, var(--xmlui-borderRadius-badge-AutoComplete));
5068
- border-end-start-radius: var(--xmlui-borderEndStartRadius-badge-AutoComplete, var(--xmlui-borderRadius-badge-AutoComplete));
5069
- border-end-end-radius: var(--xmlui-borderEndEndRadius-badge-AutoComplete, var(--xmlui-borderRadius-badge-AutoComplete));
5051
+ padding: var(--xmlui-paddingVertical-AutoComplete-badge) var(--xmlui-paddingHorizontal-AutoComplete-badge);
5052
+ border-radius: var(--xmlui-radius);
5070
5053
  transition: color 0.2s, background-color 0.2s;
5071
5054
  user-select: none;
5072
5055
  cursor: pointer;
@@ -5074,42 +5057,42 @@ See this source for details: https://css-tricks.com/line-clampin/
5074
5057
  gap: var(--xmlui-space-1);
5075
5058
  justify-content: center;
5076
5059
  align-items: center;
5077
- font-size: var(--xmlui-fontSize-badge-AutoComplete);
5078
- background-color: var(--xmlui-backgroundColor-badge-AutoComplete);
5079
- color: var(--xmlui-textColor-badgeAutoComplete);
5060
+ font-size: var(--xmlui-fontSize-AutoComplete-badge);
5061
+ background-color: var(--xmlui-backgroundColor-AutoComplete-badge);
5062
+ color: var(--xmlui-textColor-AutoComplete-badge);
5080
5063
  }
5081
- ._badge_1bkxa_20:hover {
5082
- background-color: var(--xmlui-backgroundColor-badge-AutoComplete--hover);
5083
- color: var(--xmlui-textColor-badgeAutoComplete--hover);
5064
+ ._badge_17zx6_20:hover {
5065
+ background-color: var(--xmlui-backgroundColor-AutoComplete-badge--hover);
5066
+ color: var(--xmlui-textColor-AutoComplete-badge--hover);
5084
5067
  }
5085
- ._badge_1bkxa_20:active {
5086
- background-color: var(--xmlui-backgroundColor-badge-AutoComplete--active);
5087
- color: var(--xmlui-textColor-badgeAutoComplete--active);
5068
+ ._badge_17zx6_20:active {
5069
+ background-color: var(--xmlui-backgroundColor-AutoComplete-badge--active);
5070
+ color: var(--xmlui-textColor-AutoComplete-badge--active);
5088
5071
  }
5089
5072
 
5090
- ._commandInput_1bkxa_172 {
5073
+ ._commandInput_17zx6_149 {
5091
5074
  flex: 1;
5092
5075
  background-color: transparent;
5093
5076
  outline: none;
5094
5077
  }
5095
- ._commandInput_1bkxa_172:disabled {
5078
+ ._commandInput_17zx6_149:disabled {
5096
5079
  cursor: not-allowed;
5097
5080
  opacity: 0.5;
5098
5081
  }
5099
- ._commandInput_1bkxa_172::placeholder {
5082
+ ._commandInput_17zx6_149::placeholder {
5100
5083
  color: var(--xmlui-textColor-placeholder-AutoComplete);
5101
5084
  }
5102
- ._commandInput_1bkxa_172:focus-within {
5085
+ ._commandInput_17zx6_149:focus-within {
5103
5086
  outline: none;
5104
5087
  }
5105
5088
 
5106
- ._actions_1bkxa_188 {
5089
+ ._actions_17zx6_165 {
5107
5090
  display: flex;
5108
5091
  align-items: center;
5109
5092
  justify-content: space-between;
5110
5093
  }
5111
5094
 
5112
- ._autoCompleteEmpty_1bkxa_194 {
5095
+ ._autoCompleteEmpty_17zx6_171 {
5113
5096
  display: flex;
5114
5097
  gap: 0.2rem;
5115
5098
  padding: 10px 0;
@@ -5119,7 +5102,7 @@ See this source for details: https://css-tricks.com/line-clampin/
5119
5102
  width: 100%;
5120
5103
  }
5121
5104
 
5122
- ._commandList_1bkxa_204 {
5105
+ ._commandList_17zx6_181 {
5123
5106
  position: absolute;
5124
5107
  overflow: hidden;
5125
5108
  top: 0.25rem;
@@ -5129,10 +5112,10 @@ See this source for details: https://css-tricks.com/line-clampin/
5129
5112
  background-color: var(--xmlui-backgroundColor-menu-AutoComplete);
5130
5113
  border-radius: var(--xmlui-borderRadius-menu-AutoComplete);
5131
5114
  box-shadow: var(--xmlui-boxShadow-menu-AutoComplete);
5132
- animation: _fade-in_1bkxa_1 0.3s ease-in-out; /* animate-in */
5115
+ animation: _fade-in_17zx6_1 0.3s ease-in-out; /* animate-in */
5133
5116
  }
5134
5117
 
5135
- ._autoCompleteOption_1bkxa_217 {
5118
+ ._autoCompleteOption_17zx6_194 {
5136
5119
  padding: 0.5rem 1rem;
5137
5120
  display: flex;
5138
5121
  gap: 1rem;
@@ -5142,10 +5125,10 @@ See this source for details: https://css-tricks.com/line-clampin/
5142
5125
  transition: background-color 0.2s ease;
5143
5126
  background-color: var(--xmlui-backgroundColor-item-AutoComplete);
5144
5127
  }
5145
- ._autoCompleteOption_1bkxa_217[data-selected=true] {
5128
+ ._autoCompleteOption_17zx6_194[data-selected=true] {
5146
5129
  background-color: var(--xmlui-backgroundColor-item-AutoComplete--hover);
5147
5130
  }
5148
- ._autoCompleteOption_1bkxa_217[data-disabled=true] {
5131
+ ._autoCompleteOption_17zx6_194[data-disabled=true] {
5149
5132
  pointer-events: none;
5150
5133
  opacity: 0.5;
5151
5134
  cursor: not-allowed;
@@ -5819,7 +5802,7 @@ li ._htmlOl_1snis_205 {
5819
5802
  * This function allows other CSS modules to get the value of the CSS variable specified in $componentVariable.
5820
5803
  Optionally, you can provide a $fallbackValue to set the variable's value if that is not defined.
5821
5804
  */
5822
- ._dropdownList_92nyg_13 {
5805
+ ._dropdownList_qxju2_13 {
5823
5806
  padding: 0;
5824
5807
  margin: 0;
5825
5808
  left: 0;
@@ -5834,32 +5817,8 @@ li ._htmlOl_1snis_205 {
5834
5817
  min-width: 11rem;
5835
5818
  border-radius: var(--xmlui-borderRadius-dropdown-NavGroup);
5836
5819
  }
5837
- ._dropdownList_92nyg_13:focus, ._dropdownList_92nyg_13:focus-visible {
5820
+ ._dropdownList_qxju2_13:focus, ._dropdownList_qxju2_13:focus-visible {
5838
5821
  outline: none;
5839
- }
5840
-
5841
- ._withNavGroupChevron_92nyg_32 {
5842
- display: inline-flex;
5843
- align-items: center;
5844
- }
5845
- ._withNavGroupChevron_92nyg_32:after {
5846
- content: "";
5847
- display: inline-block;
5848
- vertical-align: 0.306em;
5849
- width: 0.36em;
5850
- height: 0.36em;
5851
- border-bottom: 1px solid currentColor;
5852
- border-left: 1px solid currentColor;
5853
- margin-right: 0.1em;
5854
- margin-left: 0.4em;
5855
- transform: rotate(-45deg);
5856
- }
5857
- ._withNavGroupChevron_92nyg_32._pointRight_92nyg_48 {
5858
- flex: 1;
5859
- }
5860
- ._withNavGroupChevron_92nyg_32._pointRight_92nyg_48:after {
5861
- margin-left: auto;
5862
- transform: rotate(-135deg);
5863
5822
  }/*
5864
5823
  * This file contains all CSS variables AppEngine uses for styling the UI, including individual visual components.
5865
5824
  *