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/index.css CHANGED
@@ -102,10 +102,6 @@
102
102
  :-moz-ui-invalid {
103
103
  box-shadow: none;
104
104
  }
105
- *:focus-visible {
106
- outline: var(--xmlui-outlineWidth--focus) var(--xmlui-outlineStyle--focus) var(--xmlui-outlineColor--focus);
107
- outline-offset: var(--xmlui-outlineOffset--focus);
108
- }
109
105
  progress {
110
106
  vertical-align: baseline;
111
107
  }
@@ -980,7 +976,7 @@
980
976
  * This function allows other CSS modules to get the value of the CSS variable specified in $componentVariable.
981
977
  Optionally, you can provide a $fallbackValue to set the variable's value if that is not defined.
982
978
  */
983
- ._wrapper_szj14_13 {
979
+ ._wrapper_1larq_13 {
984
980
  --footer-height: 0px;
985
981
  --header-height: 0px;
986
982
  width: 100%;
@@ -990,137 +986,138 @@
990
986
  flex-direction: column;
991
987
  isolation: isolate;
992
988
  }
993
- ._wrapper_szj14_13._vertical_szj14_23 {
989
+ ._wrapper_1larq_13._vertical_1larq_23 {
994
990
  flex-direction: row;
995
991
  overflow: initial;
996
992
  }
997
- ._wrapper_szj14_13._vertical_szj14_23 ._contentWrapper_szj14_27 {
993
+ ._wrapper_1larq_13._vertical_1larq_23 ._contentWrapper_1larq_27 {
998
994
  overflow: auto;
999
995
  scroll-padding-block: var(--xmlui-scroll-padding-block-Pages);
1000
996
  position: relative;
1001
997
  scrollbar-gutter: stable both-edges;
1002
998
  }
1003
- ._wrapper_szj14_13._vertical_szj14_23 ._navPanelWrapper_szj14_33 {
999
+ ._wrapper_1larq_13._vertical_1larq_23 ._navPanelWrapper_1larq_33 {
1004
1000
  width: var(--xmlui-width-navPanel-App);
1005
1001
  flex-shrink: 0;
1006
1002
  }
1007
- ._wrapper_szj14_13._vertical_szj14_23 ._PagesWrapper_szj14_37 {
1003
+ ._wrapper_1larq_13._vertical_1larq_23 ._PagesWrapper_1larq_37 {
1008
1004
  min-height: initial;
1009
1005
  flex: 1;
1010
1006
  }
1011
- ._wrapper_szj14_13._vertical_szj14_23 ._footerWrapper_szj14_41 {
1007
+ ._wrapper_1larq_13._vertical_1larq_23 ._footerWrapper_1larq_41 {
1012
1008
  position: static;
1013
1009
  }
1014
- ._wrapper_szj14_13._vertical_szj14_23._sticky_szj14_44 ._contentWrapper_szj14_27 {
1010
+ ._wrapper_1larq_13._vertical_1larq_23._sticky_1larq_44 ._contentWrapper_1larq_27 {
1015
1011
  scroll-padding-top: var(--header-height);
1016
1012
  }
1017
- ._wrapper_szj14_13._vertical_szj14_23._sticky_szj14_44 ._footerWrapper_szj14_41 {
1013
+ ._wrapper_1larq_13._vertical_1larq_23._sticky_1larq_44 ._footerWrapper_1larq_41 {
1018
1014
  position: sticky;
1019
1015
  bottom: 0;
1020
1016
  }
1021
- ._wrapper_szj14_13._horizontal_szj14_51 {
1017
+ ._wrapper_1larq_13._horizontal_1larq_51 {
1022
1018
  overflow: auto;
1023
1019
  scroll-padding-block: var(--xmlui-scroll-padding-block-Pages);
1024
1020
  }
1025
- ._wrapper_szj14_13._horizontal_szj14_51 ._PagesWrapper_szj14_37 {
1021
+ ._wrapper_1larq_13._horizontal_1larq_51 ._PagesWrapper_1larq_37 {
1026
1022
  min-height: initial;
1027
1023
  }
1028
- ._wrapper_szj14_13._horizontal_szj14_51 ._footerWrapper_szj14_41 {
1024
+ ._wrapper_1larq_13._horizontal_1larq_51 ._footerWrapper_1larq_41 {
1029
1025
  position: static;
1030
1026
  }
1031
- ._wrapper_szj14_13._horizontal_szj14_51._sticky_szj14_44 {
1027
+ ._wrapper_1larq_13._horizontal_1larq_51._sticky_1larq_44 {
1032
1028
  scroll-padding-top: var(--header-height);
1033
1029
  min-height: 100%;
1034
1030
  }
1035
- ._wrapper_szj14_13._horizontal_szj14_51._sticky_szj14_44 ._footerWrapper_szj14_41 {
1031
+ ._wrapper_1larq_13._horizontal_1larq_51._sticky_1larq_44 ._footerWrapper_1larq_41 {
1036
1032
  position: sticky;
1037
1033
  bottom: 0;
1038
1034
  }
1039
- ._wrapper_szj14_13._horizontal_szj14_51 ._navPanelWrapper_szj14_33 {
1035
+ ._wrapper_1larq_13._horizontal_1larq_51 ._navPanelWrapper_1larq_33 {
1040
1036
  border-bottom: var(--xmlui-borderBottom-AppHeader);
1041
1037
  justify-content: end;
1042
1038
  }
1043
- ._wrapper_szj14_13._verticalFullHeader_szj14_73 {
1039
+ ._wrapper_1larq_13._verticalFullHeader_1larq_73 {
1044
1040
  min-height: 100%;
1045
1041
  height: 100%;
1046
1042
  overflow: auto;
1047
1043
  scroll-padding-block: var(--xmlui-scroll-padding-block-Pages);
1048
1044
  }
1049
- ._wrapper_szj14_13._verticalFullHeader_szj14_73 ._navPanelWrapper_szj14_33 {
1045
+ ._wrapper_1larq_13._verticalFullHeader_1larq_73 ._navPanelWrapper_1larq_33 {
1050
1046
  width: var(--xmlui-width-navPanel-App);
1051
1047
  position: sticky;
1052
1048
  height: calc(var(--containerHeight, 100vh) - var(--footer-height) - var(--header-height));
1053
1049
  top: var(--header-height);
1054
1050
  }
1055
- ._wrapper_szj14_13._verticalFullHeader_szj14_73 ._PagesWrapper_szj14_37 {
1051
+ ._wrapper_1larq_13._verticalFullHeader_1larq_73 ._PagesWrapper_1larq_37 {
1056
1052
  overflow: initial;
1057
1053
  min-height: calc(var(--containerHeight, 100vh) - var(--header-height) - var(--footer-height));
1058
1054
  height: 100%;
1059
1055
  }
1060
- ._wrapper_szj14_13._verticalFullHeader_szj14_73 ._PagesWrapperInner_szj14_90 {
1056
+ ._wrapper_1larq_13._verticalFullHeader_1larq_73 ._PagesWrapperInner_1larq_90 {
1061
1057
  height: 100%;
1062
1058
  }
1063
- ._wrapper_szj14_13._verticalFullHeader_szj14_73 ._PagesWrapperInner_szj14_90 > .xmlui-page-root {
1059
+ ._wrapper_1larq_13._verticalFullHeader_1larq_73 ._PagesWrapperInner_1larq_90 > .xmlui-page-root {
1064
1060
  height: 100%;
1065
1061
  }
1066
- ._wrapper_szj14_13._verticalFullHeader_szj14_73 ._footerWrapper_szj14_41 {
1062
+ ._wrapper_1larq_13._verticalFullHeader_1larq_73 ._footerWrapper_1larq_41 {
1067
1063
  position: sticky;
1068
1064
  left: 0;
1069
1065
  right: 0;
1070
1066
  bottom: 0;
1071
1067
  }
1072
- ._wrapper_szj14_13._scrollWholePage_szj14_102 {
1068
+ ._wrapper_1larq_13._scrollWholePage_1larq_102 {
1073
1069
  scrollbar-gutter: stable both-edges;
1074
1070
  }
1075
- ._wrapper_szj14_13._scrollWholePage_szj14_102 ._headerWrapper_szj14_105 {
1071
+ ._wrapper_1larq_13._scrollWholePage_1larq_102 ._headerWrapper_1larq_105 {
1076
1072
  margin-inline: calc(-1 * var(--scrollbar-width));
1077
1073
  }
1078
- ._wrapper_szj14_13._scrollWholePage_szj14_102 ._headerWrapper_szj14_105 > div {
1074
+ ._wrapper_1larq_13._scrollWholePage_1larq_102 ._headerWrapper_1larq_105 > div {
1079
1075
  padding-inline: var(--scrollbar-width);
1080
1076
  }
1081
- ._wrapper_szj14_13._scrollWholePage_szj14_102 ._footerWrapper_szj14_41 {
1077
+ ._wrapper_1larq_13._scrollWholePage_1larq_102 ._footerWrapper_1larq_41 {
1082
1078
  margin-inline: calc(-1 * var(--scrollbar-width));
1083
1079
  }
1084
- ._wrapper_szj14_13._scrollWholePage_szj14_102 ._footerWrapper_szj14_41 > div {
1080
+ ._wrapper_1larq_13._scrollWholePage_1larq_102 ._footerWrapper_1larq_41 > div {
1085
1081
  padding-inline: var(--scrollbar-width);
1086
1082
  }
1087
- ._wrapper_szj14_13._scrollWholePage_szj14_102._verticalFullHeader_szj14_73 {
1083
+ ._wrapper_1larq_13._scrollWholePage_1larq_102._verticalFullHeader_1larq_73 {
1088
1084
  scroll-padding-top: var(--header-height);
1089
1085
  }
1090
- ._wrapper_szj14_13._scrollWholePage_szj14_102._verticalFullHeader_szj14_73 ._content_szj14_27 {
1086
+ ._wrapper_1larq_13._scrollWholePage_1larq_102._verticalFullHeader_1larq_73 ._content_1larq_27 {
1091
1087
  margin-inline: calc(-1 * var(--scrollbar-width));
1092
1088
  }
1093
- ._wrapper_szj14_13._scrollWholePage_szj14_102._verticalFullHeader_szj14_73 ._contentWrapper_szj14_27 {
1089
+ ._wrapper_1larq_13._scrollWholePage_1larq_102._verticalFullHeader_1larq_73 ._contentWrapper_1larq_27 {
1094
1090
  padding-inline: var(--scrollbar-width);
1095
1091
  }
1096
- ._wrapper_szj14_13:not(._scrollWholePage_szj14_102) {
1092
+ ._wrapper_1larq_13:not(._scrollWholePage_1larq_102) {
1097
1093
  overflow: hidden;
1098
1094
  }
1099
- ._wrapper_szj14_13:not(._scrollWholePage_szj14_102) ._content_szj14_27 {
1095
+ ._wrapper_1larq_13:not(._scrollWholePage_1larq_102) ._content_1larq_27 {
1100
1096
  min-height: 0;
1101
1097
  height: 100%;
1102
1098
  }
1103
- ._wrapper_szj14_13:not(._scrollWholePage_szj14_102) ._contentWrapper_szj14_27 {
1099
+ ._wrapper_1larq_13:not(._scrollWholePage_1larq_102) ._contentWrapper_1larq_27 {
1104
1100
  overflow: initial;
1105
1101
  }
1106
- ._wrapper_szj14_13:not(._scrollWholePage_szj14_102) ._PagesWrapper_szj14_37 {
1102
+ ._wrapper_1larq_13:not(._scrollWholePage_1larq_102) ._PagesWrapper_1larq_37 {
1107
1103
  overflow: auto;
1108
1104
  scroll-padding-block: var(--xmlui-scroll-padding-block-Pages);
1109
1105
  min-height: 0;
1110
1106
  height: 100%;
1111
1107
  scrollbar-gutter: stable both-edges;
1112
1108
  }
1113
- ._wrapper_szj14_13:not(._scrollWholePage_szj14_102) ._PagesWrapperInner_szj14_90 {
1109
+ ._wrapper_1larq_13:not(._scrollWholePage_1larq_102) ._PagesWrapperInner_1larq_90 {
1114
1110
  min-height: 100%;
1111
+ height: 0;
1115
1112
  }
1116
- ._wrapper_szj14_13._noScrollbarGutters_szj14_146 {
1113
+ ._wrapper_1larq_13._noScrollbarGutters_1larq_147 {
1117
1114
  scrollbar-gutter: auto;
1118
1115
  }
1119
- ._wrapper_szj14_13._noScrollbarGutters_szj14_146 ._PagesWrapper_szj14_37 {
1116
+ ._wrapper_1larq_13._noScrollbarGutters_1larq_147 ._PagesWrapper_1larq_37 {
1120
1117
  scrollbar-gutter: auto;
1121
1118
  }
1122
1119
 
1123
- ._headerWrapper_szj14_105 {
1120
+ ._headerWrapper_1larq_105 {
1124
1121
  z-index: 1;
1125
1122
  min-height: 0;
1126
1123
  flex-shrink: 0;
@@ -1129,17 +1126,17 @@
1129
1126
  box-shadow: var(--xmlui-boxShadow-header-App);
1130
1127
  background-color: var(--xmlui-backgroundColor-AppHeader);
1131
1128
  }
1132
- ._headerWrapper_szj14_105._sticky_szj14_44 {
1129
+ ._headerWrapper_1larq_105._sticky_1larq_44 {
1133
1130
  position: sticky;
1134
1131
  }
1135
1132
 
1136
- ._content_szj14_27 {
1133
+ ._content_1larq_27 {
1137
1134
  display: flex;
1138
1135
  flex-direction: row;
1139
1136
  isolation: isolate;
1140
1137
  }
1141
1138
 
1142
- ._contentWrapper_szj14_27 {
1139
+ ._contentWrapper_1larq_27 {
1143
1140
  position: relative;
1144
1141
  min-width: 0;
1145
1142
  flex: 1;
@@ -1148,21 +1145,21 @@
1148
1145
  box-shadow: var(--xmlui-boxShadow-navPanel-App);
1149
1146
  }
1150
1147
 
1151
- ._navPanelWrapper_szj14_33 {
1148
+ ._navPanelWrapper_1larq_33 {
1152
1149
  display: flex;
1153
1150
  position: sticky;
1154
1151
  top: 0;
1155
1152
  }
1156
- ._navPanelWrapper_szj14_33:empty {
1153
+ ._navPanelWrapper_1larq_33:empty {
1157
1154
  display: none;
1158
1155
  }
1159
1156
 
1160
- ._PagesWrapper_szj14_37 {
1157
+ ._PagesWrapper_1larq_37 {
1161
1158
  flex: 1;
1162
1159
  isolation: isolate;
1163
1160
  }
1164
1161
 
1165
- ._PagesWrapperInner_szj14_90 {
1162
+ ._PagesWrapperInner_1larq_90 {
1166
1163
  --page-padding-left: var(--xmlui-space-4);
1167
1164
  --page-padding-right: var(--xmlui-space-4);
1168
1165
  --page-padding-top: var(--xmlui-space-5);
@@ -1180,7 +1177,7 @@
1180
1177
  display: flex;
1181
1178
  flex-direction: column;
1182
1179
  }
1183
- ._PagesWrapperInner_szj14_90 > .xmlui-page-root {
1180
+ ._PagesWrapperInner_1larq_90 > .xmlui-page-root {
1184
1181
  padding-top: var(--page-padding-top-override, var(--page-padding-top));
1185
1182
  padding-bottom: var(--page-padding-bottom-override, var(--page-padding-bottom));
1186
1183
  padding-right: var(--page-padding-right-override, var(--page-padding-right));
@@ -1192,7 +1189,7 @@
1192
1189
  margin-right: calc(-1 * var(--page-padding-right));
1193
1190
  }
1194
1191
 
1195
- ._footerWrapper_szj14_41 {
1192
+ ._footerWrapper_1larq_41 {
1196
1193
  flex-shrink: 0;
1197
1194
  }/*
1198
1195
  * This file contains all CSS variables AppEngine uses for styling the UI, including individual visual components.
@@ -1326,7 +1323,7 @@
1326
1323
  * This function allows other CSS modules to get the value of the CSS variable specified in $componentVariable.
1327
1324
  Optionally, you can provide a $fallbackValue to set the variable's value if that is not defined.
1328
1325
  */
1329
- ._header_2nmv3_13 {
1326
+ ._header_1m0kp_13 {
1330
1327
  position: relative;
1331
1328
  height: var(--xmlui-height-AppHeader);
1332
1329
  box-sizing: content-box;
@@ -1353,7 +1350,7 @@
1353
1350
  border-end-end-radius: var(--xmlui-borderEndEndRadius-AppHeader, var(--xmlui-borderRadius-AppHeader));
1354
1351
  }
1355
1352
 
1356
- ._headerInner_2nmv3_40 {
1353
+ ._headerInner_1m0kp_40 {
1357
1354
  height: 100%;
1358
1355
  flex: 1;
1359
1356
  gap: var(--xmlui-space-4);
@@ -1371,11 +1368,11 @@
1371
1368
  width: 100%;
1372
1369
  margin: 0 auto;
1373
1370
  }
1374
- ._headerInner_2nmv3_40._full_2nmv3_58 {
1371
+ ._headerInner_1m0kp_40._full_1m0kp_58 {
1375
1372
  max-width: 100%;
1376
1373
  }
1377
1374
 
1378
- ._childrenWrapper_2nmv3_62 {
1375
+ ._childrenWrapper_1m0kp_62 {
1379
1376
  --stack-gap-default: var(--xmlui-space-2);
1380
1377
  display: flex;
1381
1378
  flex-direction: row;
@@ -1387,20 +1384,25 @@
1387
1384
  justify-content: var(--xmlui-align-content-AppHeader);
1388
1385
  }
1389
1386
 
1390
- ._logoAndTitle_2nmv3_74 {
1387
+ ._subNavPanelSlot_1m0kp_74 {
1388
+ display: flex;
1389
+ flex-direction: row;
1390
+ }
1391
+
1392
+ ._logoAndTitle_1m0kp_79 {
1391
1393
  display: flex;
1392
1394
  align-items: center;
1393
1395
  gap: var(--xmlui-space-4);
1394
1396
  height: 100%;
1395
1397
  }
1396
- ._logoAndTitle_2nmv3_74:not(:empty) {
1398
+ ._logoAndTitle_1m0kp_79:not(:empty) {
1397
1399
  padding-right: var(--xmlui-space-2);
1398
1400
  }
1399
- ._logoAndTitle_2nmv3_74:empty {
1401
+ ._logoAndTitle_1m0kp_79:empty {
1400
1402
  display: none;
1401
1403
  }
1402
1404
 
1403
- ._logoContainer_2nmv3_87:not(:empty) {
1405
+ ._logoContainer_1m0kp_92:not(:empty) {
1404
1406
  flex-shrink: 0;
1405
1407
  display: flex;
1406
1408
  width: var(--xmlui-width-logo-AppHeader);
@@ -1413,16 +1415,16 @@
1413
1415
  padding-bottom: var(--xmlui-paddingBottom-logo-AppHeader, var(--xmlui-paddingVertical-logo-AppHeader, var(--xmlui-padding-logo-AppHeader)));
1414
1416
  }
1415
1417
 
1416
- ._customLogoContainer_2nmv3_100 {
1418
+ ._customLogoContainer_1m0kp_105 {
1417
1419
  display: flex;
1418
1420
  height: 100%;
1419
1421
  align-items: center;
1420
1422
  }
1421
- ._customLogoContainer_2nmv3_100 > img {
1423
+ ._customLogoContainer_1m0kp_105 > img {
1422
1424
  height: 100%;
1423
1425
  }
1424
1426
 
1425
- ._rightItems_2nmv3_109 {
1427
+ ._rightItems_1m0kp_114 {
1426
1428
  --stack-gap-default: var(--xmlui-space-2);
1427
1429
  gap: var(--stack-gap-default);
1428
1430
  height: 100%;
@@ -1430,11 +1432,11 @@
1430
1432
  flex-direction: row;
1431
1433
  align-items: center;
1432
1434
  }
1433
- ._rightItems_2nmv3_109:not(:empty) {
1435
+ ._rightItems_1m0kp_114:not(:empty) {
1434
1436
  padding-left: var(--xmlui-space-4);
1435
1437
  }
1436
1438
 
1437
- ._appHub_2nmv3_121 {
1439
+ ._appHub_1m0kp_126 {
1438
1440
  text-decoration: none;
1439
1441
  margin-right: var(--xmlui-space-4);
1440
1442
  width: 40px;
@@ -1442,10 +1444,10 @@
1442
1444
  color: var(--xmlui-textColor-subtitle);
1443
1445
  cursor: pointer;
1444
1446
  }
1445
- ._appHub_2nmv3_121:hover {
1447
+ ._appHub_1m0kp_126:hover {
1446
1448
  color: var(--xmlui-textColor-secondary);
1447
1449
  }
1448
- ._appHub_2nmv3_121 svg {
1450
+ ._appHub_1m0kp_126 svg {
1449
1451
  width: 100%;
1450
1452
  height: 100%;
1451
1453
  }/*
@@ -2274,21 +2276,21 @@ See this source for details: https://css-tricks.com/line-clampin/
2274
2276
  * This function allows other CSS modules to get the value of the CSS variable specified in $componentVariable.
2275
2277
  Optionally, you can provide a $fallbackValue to set the variable's value if that is not defined.
2276
2278
  */
2277
- ._text_umtqa_13 {
2279
+ ._text_1x9lo_13 {
2278
2280
  overflow: hidden;
2279
2281
  text-overflow: ellipsis;
2280
2282
  margin: 0;
2281
2283
  padding: 0;
2282
2284
  min-height: fit-content;
2283
2285
  }
2284
- ._text_umtqa_13 ._text_umtqa_13 {
2286
+ ._text_1x9lo_13 ._text_1x9lo_13 {
2285
2287
  display: inline;
2286
2288
  }
2287
- ._text_umtqa_13._abbr_umtqa_23 {
2289
+ ._text_1x9lo_13._abbr_1x9lo_23 {
2288
2290
  font-family: var(--xmlui-fontFamily-Text-abbr);
2289
2291
  font-size: var(--xmlui-fontSize-Text-abbr);
2290
2292
  font-weight: var(--xmlui-fontWeight-Text-abbr);
2291
- font-style: var(--xmlui-font-style-Text-abbr);
2293
+ font-style: var(--xmlui-fontStyle-Text-abbr);
2292
2294
  font-stretch: var(--xmlui-fontStretch-Text-abbr);
2293
2295
  text-decoration-line: var(--xmlui-textDecorationLine-Text-abbr);
2294
2296
  text-decoration-color: var(--xmlui-textDecorationColor-Text-abbr);
@@ -2313,11 +2315,11 @@ See this source for details: https://css-tricks.com/line-clampin/
2313
2315
  vertical-align: var(--xmlui-verticalAlign-Text-abbr);
2314
2316
  letter-spacing: var(--xmlui-letterSpacing-Text-abbr);
2315
2317
  }
2316
- ._text_umtqa_13._cite_umtqa_52 {
2318
+ ._text_1x9lo_13._cite_1x9lo_52 {
2317
2319
  font-family: var(--xmlui-fontFamily-Text-cite);
2318
2320
  font-size: var(--xmlui-fontSize-Text-cite);
2319
2321
  font-weight: var(--xmlui-fontWeight-Text-cite);
2320
- font-style: var(--xmlui-font-style-Text-cite);
2322
+ font-style: var(--xmlui-fontStyle-Text-cite);
2321
2323
  font-stretch: var(--xmlui-fontStretch-Text-cite);
2322
2324
  text-decoration-line: var(--xmlui-textDecorationLine-Text-cite);
2323
2325
  text-decoration-color: var(--xmlui-textDecorationColor-Text-cite);
@@ -2342,14 +2344,14 @@ See this source for details: https://css-tricks.com/line-clampin/
2342
2344
  vertical-align: var(--xmlui-verticalAlign-Text-cite);
2343
2345
  letter-spacing: var(--xmlui-letterSpacing-Text-cite);
2344
2346
  }
2345
- ._text_umtqa_13 ._text_umtqa_13._codefence_umtqa_81 {
2347
+ ._text_1x9lo_13 ._text_1x9lo_13._codefence_1x9lo_81 {
2346
2348
  display: block;
2347
2349
  }
2348
- :not(._text_umtqa_13._codefence_umtqa_81) > ._text_umtqa_13._code_umtqa_81 {
2350
+ :not(._text_1x9lo_13._codefence_1x9lo_81) > ._text_1x9lo_13._code_1x9lo_81 {
2349
2351
  font-family: var(--xmlui-fontFamily-Text-code);
2350
2352
  font-size: var(--xmlui-fontSize-Text-code);
2351
2353
  font-weight: var(--xmlui-fontWeight-Text-code);
2352
- font-style: var(--xmlui-font-style-Text-code);
2354
+ font-style: var(--xmlui-fontStyle-Text-code);
2353
2355
  font-stretch: var(--xmlui-fontStretch-Text-code);
2354
2356
  text-decoration-line: var(--xmlui-textDecorationLine-Text-code);
2355
2357
  text-decoration-color: var(--xmlui-textDecorationColor-Text-code);
@@ -2374,11 +2376,11 @@ See this source for details: https://css-tricks.com/line-clampin/
2374
2376
  vertical-align: var(--xmlui-verticalAlign-Text-code);
2375
2377
  letter-spacing: var(--xmlui-letterSpacing-Text-code);
2376
2378
  }
2377
- ._text_umtqa_13._codefence_umtqa_81:has(> ._text_umtqa_13._code_umtqa_81) {
2379
+ ._text_1x9lo_13._codefence_1x9lo_81:has(> ._text_1x9lo_13._code_1x9lo_81) {
2378
2380
  font-family: var(--xmlui-fontFamily-Text-codefence);
2379
2381
  font-size: var(--xmlui-fontSize-Text-codefence);
2380
2382
  font-weight: var(--xmlui-fontWeight-Text-codefence);
2381
- font-style: var(--xmlui-font-style-Text-codefence);
2383
+ font-style: var(--xmlui-fontStyle-Text-codefence);
2382
2384
  font-stretch: var(--xmlui-fontStretch-Text-codefence);
2383
2385
  text-decoration-line: var(--xmlui-textDecorationLine-Text-codefence);
2384
2386
  text-decoration-color: var(--xmlui-textDecorationColor-Text-codefence);
@@ -2405,11 +2407,11 @@ See this source for details: https://css-tricks.com/line-clampin/
2405
2407
  overflow-x: auto;
2406
2408
  text-overflow: initial;
2407
2409
  }
2408
- ._text_umtqa_13._deleted_umtqa_144 {
2410
+ ._text_1x9lo_13._deleted_1x9lo_144 {
2409
2411
  font-family: var(--xmlui-fontFamily-Text-deleted);
2410
2412
  font-size: var(--xmlui-fontSize-Text-deleted);
2411
2413
  font-weight: var(--xmlui-fontWeight-Text-deleted);
2412
- font-style: var(--xmlui-font-style-Text-deleted);
2414
+ font-style: var(--xmlui-fontStyle-Text-deleted);
2413
2415
  font-stretch: var(--xmlui-fontStretch-Text-deleted);
2414
2416
  text-decoration-line: var(--xmlui-textDecorationLine-Text-deleted);
2415
2417
  text-decoration-color: var(--xmlui-textDecorationColor-Text-deleted);
@@ -2434,7 +2436,7 @@ See this source for details: https://css-tricks.com/line-clampin/
2434
2436
  vertical-align: var(--xmlui-verticalAlign-Text-deleted);
2435
2437
  letter-spacing: var(--xmlui-letterSpacing-Text-deleted);
2436
2438
  }
2437
- ._text_umtqa_13._deleted_umtqa_144::before, ._text_umtqa_13._deleted_umtqa_144::after {
2439
+ ._text_1x9lo_13._deleted_1x9lo_144::before, ._text_1x9lo_13._deleted_1x9lo_144::after {
2438
2440
  clip-path: inset(100%);
2439
2441
  clip: rect(1px, 1px, 1px, 1px);
2440
2442
  height: 1px;
@@ -2443,17 +2445,17 @@ See this source for details: https://css-tricks.com/line-clampin/
2443
2445
  white-space: nowrap;
2444
2446
  width: 1px;
2445
2447
  }
2446
- ._text_umtqa_13._deleted_umtqa_144::before {
2448
+ ._text_1x9lo_13._deleted_1x9lo_144::before {
2447
2449
  content: " [deletion start] ";
2448
2450
  }
2449
- ._text_umtqa_13._deleted_umtqa_144::after {
2451
+ ._text_1x9lo_13._deleted_1x9lo_144::after {
2450
2452
  content: " [deletion end] ";
2451
2453
  }
2452
- ._text_umtqa_13._inserted_umtqa_188 {
2454
+ ._text_1x9lo_13._inserted_1x9lo_188 {
2453
2455
  font-family: var(--xmlui-fontFamily-Text-inserted);
2454
2456
  font-size: var(--xmlui-fontSize-Text-inserted);
2455
2457
  font-weight: var(--xmlui-fontWeight-Text-inserted);
2456
- font-style: var(--xmlui-font-style-Text-inserted);
2458
+ font-style: var(--xmlui-fontStyle-Text-inserted);
2457
2459
  font-stretch: var(--xmlui-fontStretch-Text-inserted);
2458
2460
  text-decoration-line: var(--xmlui-textDecorationLine-Text-inserted);
2459
2461
  text-decoration-color: var(--xmlui-textDecorationColor-Text-inserted);
@@ -2478,7 +2480,7 @@ See this source for details: https://css-tricks.com/line-clampin/
2478
2480
  vertical-align: var(--xmlui-verticalAlign-Text-inserted);
2479
2481
  letter-spacing: var(--xmlui-letterSpacing-Text-inserted);
2480
2482
  }
2481
- ._text_umtqa_13._inserted_umtqa_188::before, ._text_umtqa_13._inserted_umtqa_188::after {
2483
+ ._text_1x9lo_13._inserted_1x9lo_188::before, ._text_1x9lo_13._inserted_1x9lo_188::after {
2482
2484
  clip-path: inset(100%);
2483
2485
  clip: rect(1px, 1px, 1px, 1px);
2484
2486
  height: 1px;
@@ -2487,17 +2489,17 @@ See this source for details: https://css-tricks.com/line-clampin/
2487
2489
  white-space: nowrap;
2488
2490
  width: 1px;
2489
2491
  }
2490
- ._text_umtqa_13._inserted_umtqa_188::before {
2492
+ ._text_1x9lo_13._inserted_1x9lo_188::before {
2491
2493
  content: " [insertion start] ";
2492
2494
  }
2493
- ._text_umtqa_13._inserted_umtqa_188::after {
2495
+ ._text_1x9lo_13._inserted_1x9lo_188::after {
2494
2496
  content: " [insertion end] ";
2495
2497
  }
2496
- ._text_umtqa_13._keyboard_umtqa_232 {
2498
+ ._text_1x9lo_13._keyboard_1x9lo_232 {
2497
2499
  font-family: var(--xmlui-fontFamily-Text-keyboard);
2498
2500
  font-size: var(--xmlui-fontSize-Text-keyboard);
2499
2501
  font-weight: var(--xmlui-fontWeight-Text-keyboard);
2500
- font-style: var(--xmlui-font-style-Text-keyboard);
2502
+ font-style: var(--xmlui-fontStyle-Text-keyboard);
2501
2503
  font-stretch: var(--xmlui-fontStretch-Text-keyboard);
2502
2504
  text-decoration-line: var(--xmlui-textDecorationLine-Text-keyboard);
2503
2505
  text-decoration-color: var(--xmlui-textDecorationColor-Text-keyboard);
@@ -2522,11 +2524,11 @@ See this source for details: https://css-tricks.com/line-clampin/
2522
2524
  vertical-align: var(--xmlui-verticalAlign-Text-keyboard);
2523
2525
  letter-spacing: var(--xmlui-letterSpacing-Text-keyboard);
2524
2526
  }
2525
- ._text_umtqa_13._marked_umtqa_261 {
2527
+ ._text_1x9lo_13._marked_1x9lo_261 {
2526
2528
  font-family: var(--xmlui-fontFamily-Text-marked);
2527
2529
  font-size: var(--xmlui-fontSize-Text-marked);
2528
2530
  font-weight: var(--xmlui-fontWeight-Text-marked);
2529
- font-style: var(--xmlui-font-style-Text-marked);
2531
+ font-style: var(--xmlui-fontStyle-Text-marked);
2530
2532
  font-stretch: var(--xmlui-fontStretch-Text-marked);
2531
2533
  text-decoration-line: var(--xmlui-textDecorationLine-Text-marked);
2532
2534
  text-decoration-color: var(--xmlui-textDecorationColor-Text-marked);
@@ -2551,7 +2553,7 @@ See this source for details: https://css-tricks.com/line-clampin/
2551
2553
  vertical-align: var(--xmlui-verticalAlign-Text-marked);
2552
2554
  letter-spacing: var(--xmlui-letterSpacing-Text-marked);
2553
2555
  }
2554
- ._text_umtqa_13._marked_umtqa_261::before, ._text_umtqa_13._marked_umtqa_261::after {
2556
+ ._text_1x9lo_13._marked_1x9lo_261::before, ._text_1x9lo_13._marked_1x9lo_261::after {
2555
2557
  clip-path: inset(100%);
2556
2558
  clip: rect(1px, 1px, 1px, 1px);
2557
2559
  height: 1px;
@@ -2560,17 +2562,17 @@ See this source for details: https://css-tricks.com/line-clampin/
2560
2562
  white-space: nowrap;
2561
2563
  width: 1px;
2562
2564
  }
2563
- ._text_umtqa_13._marked_umtqa_261::before {
2565
+ ._text_1x9lo_13._marked_1x9lo_261::before {
2564
2566
  content: " [highlight start] ";
2565
2567
  }
2566
- ._text_umtqa_13._marked_umtqa_261::after {
2568
+ ._text_1x9lo_13._marked_1x9lo_261::after {
2567
2569
  content: " [highlight end] ";
2568
2570
  }
2569
- ._text_umtqa_13._mono_umtqa_305 {
2571
+ ._text_1x9lo_13._mono_1x9lo_305 {
2570
2572
  font-family: var(--xmlui-fontFamily-Text-mono);
2571
2573
  font-size: var(--xmlui-fontSize-Text-mono);
2572
2574
  font-weight: var(--xmlui-fontWeight-Text-mono);
2573
- font-style: var(--xmlui-font-style-Text-mono);
2575
+ font-style: var(--xmlui-fontStyle-Text-mono);
2574
2576
  font-stretch: var(--xmlui-fontStretch-Text-mono);
2575
2577
  text-decoration-line: var(--xmlui-textDecorationLine-Text-mono);
2576
2578
  text-decoration-color: var(--xmlui-textDecorationColor-Text-mono);
@@ -2595,11 +2597,11 @@ See this source for details: https://css-tricks.com/line-clampin/
2595
2597
  vertical-align: var(--xmlui-verticalAlign-Text-mono);
2596
2598
  letter-spacing: var(--xmlui-letterSpacing-Text-mono);
2597
2599
  }
2598
- ._text_umtqa_13._sample_umtqa_334 {
2600
+ ._text_1x9lo_13._sample_1x9lo_334 {
2599
2601
  font-family: var(--xmlui-fontFamily-Text-sample);
2600
2602
  font-size: var(--xmlui-fontSize-Text-sample);
2601
2603
  font-weight: var(--xmlui-fontWeight-Text-sample);
2602
- font-style: var(--xmlui-font-style-Text-sample);
2604
+ font-style: var(--xmlui-fontStyle-Text-sample);
2603
2605
  font-stretch: var(--xmlui-fontStretch-Text-sample);
2604
2606
  text-decoration-line: var(--xmlui-textDecorationLine-Text-sample);
2605
2607
  text-decoration-color: var(--xmlui-textDecorationColor-Text-sample);
@@ -2624,11 +2626,11 @@ See this source for details: https://css-tricks.com/line-clampin/
2624
2626
  vertical-align: var(--xmlui-verticalAlign-Text-sample);
2625
2627
  letter-spacing: var(--xmlui-letterSpacing-Text-sample);
2626
2628
  }
2627
- ._text_umtqa_13._sup_umtqa_363 {
2629
+ ._text_1x9lo_13._sup_1x9lo_363 {
2628
2630
  font-family: var(--xmlui-fontFamily-Text-sup);
2629
2631
  font-size: var(--xmlui-fontSize-Text-sup);
2630
2632
  font-weight: var(--xmlui-fontWeight-Text-sup);
2631
- font-style: var(--xmlui-font-style-Text-sup);
2633
+ font-style: var(--xmlui-fontStyle-Text-sup);
2632
2634
  font-stretch: var(--xmlui-fontStretch-Text-sup);
2633
2635
  text-decoration-line: var(--xmlui-textDecorationLine-Text-sup);
2634
2636
  text-decoration-color: var(--xmlui-textDecorationColor-Text-sup);
@@ -2653,11 +2655,11 @@ See this source for details: https://css-tricks.com/line-clampin/
2653
2655
  vertical-align: var(--xmlui-verticalAlign-Text-sup);
2654
2656
  letter-spacing: var(--xmlui-letterSpacing-Text-sup);
2655
2657
  }
2656
- ._text_umtqa_13._sub_umtqa_392 {
2658
+ ._text_1x9lo_13._sub_1x9lo_392 {
2657
2659
  font-family: var(--xmlui-fontFamily-Text-sub);
2658
2660
  font-size: var(--xmlui-fontSize-Text-sub);
2659
2661
  font-weight: var(--xmlui-fontWeight-Text-sub);
2660
- font-style: var(--xmlui-font-style-Text-sub);
2662
+ font-style: var(--xmlui-fontStyle-Text-sub);
2661
2663
  font-stretch: var(--xmlui-fontStretch-Text-sub);
2662
2664
  text-decoration-line: var(--xmlui-textDecorationLine-Text-sub);
2663
2665
  text-decoration-color: var(--xmlui-textDecorationColor-Text-sub);
@@ -2682,11 +2684,11 @@ See this source for details: https://css-tricks.com/line-clampin/
2682
2684
  vertical-align: var(--xmlui-verticalAlign-Text-sub);
2683
2685
  letter-spacing: var(--xmlui-letterSpacing-Text-sub);
2684
2686
  }
2685
- ._text_umtqa_13._var_umtqa_421 {
2687
+ ._text_1x9lo_13._var_1x9lo_421 {
2686
2688
  font-family: var(--xmlui-fontFamily-Text-var);
2687
2689
  font-size: var(--xmlui-fontSize-Text-var);
2688
2690
  font-weight: var(--xmlui-fontWeight-Text-var);
2689
- font-style: var(--xmlui-font-style-Text-var);
2691
+ font-style: var(--xmlui-fontStyle-Text-var);
2690
2692
  font-stretch: var(--xmlui-fontStretch-Text-var);
2691
2693
  text-decoration-line: var(--xmlui-textDecorationLine-Text-var);
2692
2694
  text-decoration-color: var(--xmlui-textDecorationColor-Text-var);
@@ -2711,11 +2713,11 @@ See this source for details: https://css-tricks.com/line-clampin/
2711
2713
  vertical-align: var(--xmlui-verticalAlign-Text-var);
2712
2714
  letter-spacing: var(--xmlui-letterSpacing-Text-var);
2713
2715
  }
2714
- ._text_umtqa_13._title_umtqa_450 {
2716
+ ._text_1x9lo_13._title_1x9lo_450 {
2715
2717
  font-family: var(--xmlui-fontFamily-Text-title);
2716
2718
  font-size: var(--xmlui-fontSize-Text-title);
2717
2719
  font-weight: var(--xmlui-fontWeight-Text-title);
2718
- font-style: var(--xmlui-font-style-Text-title);
2720
+ font-style: var(--xmlui-fontStyle-Text-title);
2719
2721
  font-stretch: var(--xmlui-fontStretch-Text-title);
2720
2722
  text-decoration-line: var(--xmlui-textDecorationLine-Text-title);
2721
2723
  text-decoration-color: var(--xmlui-textDecorationColor-Text-title);
@@ -2740,11 +2742,11 @@ See this source for details: https://css-tricks.com/line-clampin/
2740
2742
  vertical-align: var(--xmlui-verticalAlign-Text-title);
2741
2743
  letter-spacing: var(--xmlui-letterSpacing-Text-title);
2742
2744
  }
2743
- ._text_umtqa_13._subtitle_umtqa_479 {
2745
+ ._text_1x9lo_13._subtitle_1x9lo_479 {
2744
2746
  font-family: var(--xmlui-fontFamily-Text-subtitle);
2745
2747
  font-size: var(--xmlui-fontSize-Text-subtitle);
2746
2748
  font-weight: var(--xmlui-fontWeight-Text-subtitle);
2747
- font-style: var(--xmlui-font-style-Text-subtitle);
2749
+ font-style: var(--xmlui-fontStyle-Text-subtitle);
2748
2750
  font-stretch: var(--xmlui-fontStretch-Text-subtitle);
2749
2751
  text-decoration-line: var(--xmlui-textDecorationLine-Text-subtitle);
2750
2752
  text-decoration-color: var(--xmlui-textDecorationColor-Text-subtitle);
@@ -2769,11 +2771,11 @@ See this source for details: https://css-tricks.com/line-clampin/
2769
2771
  vertical-align: var(--xmlui-verticalAlign-Text-subtitle);
2770
2772
  letter-spacing: var(--xmlui-letterSpacing-Text-subtitle);
2771
2773
  }
2772
- ._text_umtqa_13._small_umtqa_508 {
2774
+ ._text_1x9lo_13._small_1x9lo_508 {
2773
2775
  font-family: var(--xmlui-fontFamily-Text-small);
2774
2776
  font-size: var(--xmlui-fontSize-Text-small);
2775
2777
  font-weight: var(--xmlui-fontWeight-Text-small);
2776
- font-style: var(--xmlui-font-style-Text-small);
2778
+ font-style: var(--xmlui-fontStyle-Text-small);
2777
2779
  font-stretch: var(--xmlui-fontStretch-Text-small);
2778
2780
  text-decoration-line: var(--xmlui-textDecorationLine-Text-small);
2779
2781
  text-decoration-color: var(--xmlui-textDecorationColor-Text-small);
@@ -2798,11 +2800,11 @@ See this source for details: https://css-tricks.com/line-clampin/
2798
2800
  vertical-align: var(--xmlui-verticalAlign-Text-small);
2799
2801
  letter-spacing: var(--xmlui-letterSpacing-Text-small);
2800
2802
  }
2801
- ._text_umtqa_13._caption_umtqa_537 {
2803
+ ._text_1x9lo_13._caption_1x9lo_537 {
2802
2804
  font-family: var(--xmlui-fontFamily-Text-caption);
2803
2805
  font-size: var(--xmlui-fontSize-Text-caption);
2804
2806
  font-weight: var(--xmlui-fontWeight-Text-caption);
2805
- font-style: var(--xmlui-font-style-Text-caption);
2807
+ font-style: var(--xmlui-fontStyle-Text-caption);
2806
2808
  font-stretch: var(--xmlui-fontStretch-Text-caption);
2807
2809
  text-decoration-line: var(--xmlui-textDecorationLine-Text-caption);
2808
2810
  text-decoration-color: var(--xmlui-textDecorationColor-Text-caption);
@@ -2827,11 +2829,11 @@ See this source for details: https://css-tricks.com/line-clampin/
2827
2829
  vertical-align: var(--xmlui-verticalAlign-Text-caption);
2828
2830
  letter-spacing: var(--xmlui-letterSpacing-Text-caption);
2829
2831
  }
2830
- ._text_umtqa_13._placeholder_umtqa_566 {
2832
+ ._text_1x9lo_13._placeholder_1x9lo_566 {
2831
2833
  font-family: var(--xmlui-fontFamily-Text-placeholder);
2832
2834
  font-size: var(--xmlui-fontSize-Text-placeholder);
2833
2835
  font-weight: var(--xmlui-fontWeight-Text-placeholder);
2834
- font-style: var(--xmlui-font-style-Text-placeholder);
2836
+ font-style: var(--xmlui-fontStyle-Text-placeholder);
2835
2837
  font-stretch: var(--xmlui-fontStretch-Text-placeholder);
2836
2838
  text-decoration-line: var(--xmlui-textDecorationLine-Text-placeholder);
2837
2839
  text-decoration-color: var(--xmlui-textDecorationColor-Text-placeholder);
@@ -2856,11 +2858,11 @@ See this source for details: https://css-tricks.com/line-clampin/
2856
2858
  vertical-align: var(--xmlui-verticalAlign-Text-placeholder);
2857
2859
  letter-spacing: var(--xmlui-letterSpacing-Text-placeholder);
2858
2860
  }
2859
- ._text_umtqa_13._paragraph_umtqa_595 {
2861
+ ._text_1x9lo_13._paragraph_1x9lo_595 {
2860
2862
  font-family: var(--xmlui-fontFamily-Text-paragraph);
2861
2863
  font-size: var(--xmlui-fontSize-Text-paragraph);
2862
2864
  font-weight: var(--xmlui-fontWeight-Text-paragraph);
2863
- font-style: var(--xmlui-font-style-Text-paragraph);
2865
+ font-style: var(--xmlui-fontStyle-Text-paragraph);
2864
2866
  font-stretch: var(--xmlui-fontStretch-Text-paragraph);
2865
2867
  text-decoration-line: var(--xmlui-textDecorationLine-Text-paragraph);
2866
2868
  text-decoration-color: var(--xmlui-textDecorationColor-Text-paragraph);
@@ -2885,11 +2887,11 @@ See this source for details: https://css-tricks.com/line-clampin/
2885
2887
  vertical-align: var(--xmlui-verticalAlign-Text-paragraph);
2886
2888
  letter-spacing: var(--xmlui-letterSpacing-Text-paragraph);
2887
2889
  }
2888
- ._text_umtqa_13._subheading_umtqa_624 {
2890
+ ._text_1x9lo_13._subheading_1x9lo_624 {
2889
2891
  font-family: var(--xmlui-fontFamily-Text-subheading);
2890
2892
  font-size: var(--xmlui-fontSize-Text-subheading);
2891
2893
  font-weight: var(--xmlui-fontWeight-Text-subheading);
2892
- font-style: var(--xmlui-font-style-Text-subheading);
2894
+ font-style: var(--xmlui-fontStyle-Text-subheading);
2893
2895
  font-stretch: var(--xmlui-fontStretch-Text-subheading);
2894
2896
  text-decoration-line: var(--xmlui-textDecorationLine-Text-subheading);
2895
2897
  text-decoration-color: var(--xmlui-textDecorationColor-Text-subheading);
@@ -2914,11 +2916,11 @@ See this source for details: https://css-tricks.com/line-clampin/
2914
2916
  vertical-align: var(--xmlui-verticalAlign-Text-subheading);
2915
2917
  letter-spacing: var(--xmlui-letterSpacing-Text-subheading);
2916
2918
  }
2917
- ._text_umtqa_13._tableheading_umtqa_653 {
2919
+ ._text_1x9lo_13._tableheading_1x9lo_653 {
2918
2920
  font-family: var(--xmlui-fontFamily-Text-tableheading);
2919
2921
  font-size: var(--xmlui-fontSize-Text-tableheading);
2920
2922
  font-weight: var(--xmlui-fontWeight-Text-tableheading);
2921
- font-style: var(--xmlui-font-style-Text-tableheading);
2923
+ font-style: var(--xmlui-fontStyle-Text-tableheading);
2922
2924
  font-stretch: var(--xmlui-fontStretch-Text-tableheading);
2923
2925
  text-decoration-line: var(--xmlui-textDecorationLine-Text-tableheading);
2924
2926
  text-decoration-color: var(--xmlui-textDecorationColor-Text-tableheading);
@@ -2943,11 +2945,11 @@ See this source for details: https://css-tricks.com/line-clampin/
2943
2945
  vertical-align: var(--xmlui-verticalAlign-Text-tableheading);
2944
2946
  letter-spacing: var(--xmlui-letterSpacing-Text-tableheading);
2945
2947
  }
2946
- ._text_umtqa_13._secondary_umtqa_682 {
2948
+ ._text_1x9lo_13._secondary_1x9lo_682 {
2947
2949
  font-family: var(--xmlui-fontFamily-Text-secondary);
2948
2950
  font-size: var(--xmlui-fontSize-Text-secondary);
2949
2951
  font-weight: var(--xmlui-fontWeight-Text-secondary);
2950
- font-style: var(--xmlui-font-style-Text-secondary);
2952
+ font-style: var(--xmlui-fontStyle-Text-secondary);
2951
2953
  font-stretch: var(--xmlui-fontStretch-Text-secondary);
2952
2954
  text-decoration-line: var(--xmlui-textDecorationLine-Text-secondary);
2953
2955
  text-decoration-color: var(--xmlui-textDecorationColor-Text-secondary);
@@ -2972,7 +2974,7 @@ See this source for details: https://css-tricks.com/line-clampin/
2972
2974
  vertical-align: var(--xmlui-verticalAlign-Text-secondary);
2973
2975
  letter-spacing: var(--xmlui-letterSpacing-Text-secondary);
2974
2976
  }
2975
- ._text_umtqa_13._strong_umtqa_711 {
2977
+ ._text_1x9lo_13._strong_1x9lo_711 {
2976
2978
  font-weight: var(--xmlui-fontWeight-bold);
2977
2979
  }
2978
2980
 
@@ -2980,18 +2982,18 @@ See this source for details: https://css-tricks.com/line-clampin/
2980
2982
  This is a Chromium based solution that is supported by most modern browsers.
2981
2983
  See this source for details: https://css-tricks.com/line-clampin/
2982
2984
  */
2983
- ._truncateOverflow_umtqa_719 {
2985
+ ._truncateOverflow_1x9lo_719 {
2984
2986
  overflow: hidden;
2985
2987
  overflow-wrap: break-word;
2986
2988
  white-space: nowrap;
2987
2989
  max-width: 100%;
2988
2990
  }
2989
2991
 
2990
- ._preserveLinebreaks_umtqa_726 {
2992
+ ._preserveLinebreaks_1x9lo_726 {
2991
2993
  white-space: pre-wrap;
2992
2994
  }
2993
2995
 
2994
- ._noEllipsis_umtqa_730 {
2996
+ ._noEllipsis_1x9lo_730 {
2995
2997
  text-overflow: clip;
2996
2998
  }/*
2997
2999
  * This file contains all CSS variables AppEngine uses for styling the UI, including individual visual components.
@@ -4676,40 +4678,40 @@ See this source for details: https://css-tricks.com/line-clampin/
4676
4678
  * This function allows other CSS modules to get the value of the CSS variable specified in $componentVariable.
4677
4679
  Optionally, you can provide a $fallbackValue to set the variable's value if that is not defined.
4678
4680
  */
4679
- ._selectValue_1gnmc_13 > span {
4681
+ ._selectValue_1o7b6_13 > span {
4680
4682
  font-size: var(--xmlui-fontSize-Select-default);
4681
4683
  color: var(--xmlui-textColor-placeholder-Select-default);
4682
4684
  }
4683
- ._selectValue_1gnmc_13 > span > div {
4685
+ ._selectValue_1o7b6_13 > span > div {
4684
4686
  color: var(--xmlui-textColor-Select-default);
4685
4687
  font-size: var(--xmlui-fontSize-Select-default);
4686
4688
  }
4687
- ._selectValue_1gnmc_13._error_1gnmc_21 > span {
4689
+ ._selectValue_1o7b6_13._error_1o7b6_21 > span {
4688
4690
  font-size: var(--xmlui-fontSize-Select-error);
4689
4691
  color: var(--xmlui-textColor-placeholder-Select-error);
4690
4692
  }
4691
- ._selectValue_1gnmc_13._error_1gnmc_21 > span > div {
4693
+ ._selectValue_1o7b6_13._error_1o7b6_21 > span > div {
4692
4694
  color: var(--xmlui-textColor-Select-error);
4693
4695
  font-size: var(--xmlui-fontSize-Select-error);
4694
4696
  }
4695
- ._selectValue_1gnmc_13._warning_1gnmc_29 > span {
4697
+ ._selectValue_1o7b6_13._warning_1o7b6_29 > span {
4696
4698
  font-size: var(--xmlui-fontSize-Select-warning);
4697
4699
  color: var(--xmlui-textColor-placeholder-Select-warning);
4698
4700
  }
4699
- ._selectValue_1gnmc_13._warning_1gnmc_29 > span > div {
4701
+ ._selectValue_1o7b6_13._warning_1o7b6_29 > span > div {
4700
4702
  color: var(--xmlui-textColor-Select-warning);
4701
4703
  font-size: var(--xmlui-fontSize-Select-warning);
4702
4704
  }
4703
- ._selectValue_1gnmc_13._valid_1gnmc_37 > span {
4705
+ ._selectValue_1o7b6_13._valid_1o7b6_37 > span {
4704
4706
  font-size: var(--xmlui-fontSize-Select-success);
4705
4707
  color: var(--xmlui-textColor-placeholder-Select-success);
4706
4708
  }
4707
- ._selectValue_1gnmc_13._valid_1gnmc_37 > span > div {
4709
+ ._selectValue_1o7b6_13._valid_1o7b6_37 > span > div {
4708
4710
  color: var(--xmlui-textColor-Select-success);
4709
4711
  font-size: var(--xmlui-fontSize-Select-success);
4710
4712
  }
4711
4713
 
4712
- ._selectTrigger_1gnmc_46 {
4714
+ button._selectTrigger_1o7b6_46 {
4713
4715
  min-height: 2.6rem;
4714
4716
  display: flex;
4715
4717
  padding: var(--xmlui-space-1) var(--xmlui-space-2);
@@ -4727,22 +4729,22 @@ See this source for details: https://css-tricks.com/line-clampin/
4727
4729
  box-shadow: var(--xmlui-boxShadow-Select-default);
4728
4730
  color: var(--xmlui-textColor-Select-default);
4729
4731
  }
4730
- ._selectTrigger_1gnmc_46:hover {
4732
+ button._selectTrigger_1o7b6_46:hover {
4731
4733
  border-color: var(--xmlui-borderColor-Select-default--hover);
4732
4734
  background-color: var(--xmlui-backgroundColor-Select-default--hover);
4733
4735
  box-shadow: var(--xmlui-boxShadow-Select-default--hover);
4734
4736
  color: var(--xmlui-textColor-Select-default--hover);
4735
4737
  }
4736
- ._selectTrigger_1gnmc_46:focus {
4738
+ button._selectTrigger_1o7b6_46:focus {
4737
4739
  outline-width: var(--xmlui-outlineWidth-Select-default--focus);
4738
4740
  outline-color: var(--xmlui-outlineColor-Select-default--focus);
4739
4741
  outline-style: var(--xmlui-outlineStyle-Select-default--focus);
4740
4742
  outline-offset: var(--xmlui-outlineOffset-Select-default--focus);
4741
4743
  }
4742
- ._selectTrigger_1gnmc_46::placeholder {
4744
+ button._selectTrigger_1o7b6_46::placeholder {
4743
4745
  color: var(--xmlui-textColor-placeholder-Select-default);
4744
4746
  }
4745
- ._selectTrigger_1gnmc_46._error_1gnmc_21 {
4747
+ button._selectTrigger_1o7b6_46._error_1o7b6_21 {
4746
4748
  border-radius: var(--xmlui-borderRadius-Select-error);
4747
4749
  border-color: var(--xmlui-borderColor-Select-error);
4748
4750
  border-width: var(--xmlui-borderWidth-Select-error);
@@ -4752,22 +4754,22 @@ See this source for details: https://css-tricks.com/line-clampin/
4752
4754
  box-shadow: var(--xmlui-boxShadow-Select-error);
4753
4755
  color: var(--xmlui-textColor-Select-error);
4754
4756
  }
4755
- ._selectTrigger_1gnmc_46._error_1gnmc_21:hover {
4757
+ button._selectTrigger_1o7b6_46._error_1o7b6_21:hover {
4756
4758
  border-color: var(--xmlui-borderColor-Select-error--hover);
4757
4759
  background-color: var(--xmlui-backgroundColor-Select-error--hover);
4758
4760
  box-shadow: var(--xmlui-boxShadow-Select-error--hover);
4759
4761
  color: var(--xmlui-textColor-Select-error--hover);
4760
4762
  }
4761
- ._selectTrigger_1gnmc_46._error_1gnmc_21:focus {
4763
+ button._selectTrigger_1o7b6_46._error_1o7b6_21:focus {
4762
4764
  outline-width: var(--xmlui-outlineWidth-Select-error--focus);
4763
4765
  outline-color: var(--xmlui-outlineColor-Select-error--focus);
4764
4766
  outline-style: var(--xmlui-outlineStyle-Select-error--focus);
4765
4767
  outline-offset: var(--xmlui-outlineOffset-Select-error--focus);
4766
4768
  }
4767
- ._selectTrigger_1gnmc_46._error_1gnmc_21::placeholder {
4769
+ button._selectTrigger_1o7b6_46._error_1o7b6_21::placeholder {
4768
4770
  color: var(--xmlui-textColor-placeholder-Select-error);
4769
4771
  }
4770
- ._selectTrigger_1gnmc_46._warning_1gnmc_29 {
4772
+ button._selectTrigger_1o7b6_46._warning_1o7b6_29 {
4771
4773
  border-radius: var(--xmlui-borderRadius-Select-warning);
4772
4774
  border-color: var(--xmlui-borderColor-Select-warning);
4773
4775
  border-width: var(--xmlui-borderWidth-Select-warning);
@@ -4777,22 +4779,22 @@ See this source for details: https://css-tricks.com/line-clampin/
4777
4779
  box-shadow: var(--xmlui-boxShadow-Select-warning);
4778
4780
  color: var(--xmlui-textColor-Select-warning);
4779
4781
  }
4780
- ._selectTrigger_1gnmc_46._warning_1gnmc_29:hover {
4782
+ button._selectTrigger_1o7b6_46._warning_1o7b6_29:hover {
4781
4783
  border-color: var(--xmlui-borderColor-Select-warning--hover);
4782
4784
  background-color: var(--xmlui-backgroundColor-Select-warning--hover);
4783
4785
  box-shadow: var(--xmlui-boxShadow-Select-warning--hover);
4784
4786
  color: var(--xmlui-textColor-Select-warning--hover);
4785
4787
  }
4786
- ._selectTrigger_1gnmc_46._warning_1gnmc_29:focus {
4788
+ button._selectTrigger_1o7b6_46._warning_1o7b6_29:focus {
4787
4789
  outline-width: var(--xmlui-outlineWidth-Select-warning--focus);
4788
4790
  outline-color: var(--xmlui-outlineColor-Select-warning--focus);
4789
4791
  outline-style: var(--xmlui-outlineStyle-Select-warning--focus);
4790
4792
  outline-offset: var(--xmlui-outlineOffset-Select-warning--focus);
4791
4793
  }
4792
- ._selectTrigger_1gnmc_46._warning_1gnmc_29::placeholder {
4794
+ button._selectTrigger_1o7b6_46._warning_1o7b6_29::placeholder {
4793
4795
  color: var(--xmlui-textColor-placeholder-Select-warning);
4794
4796
  }
4795
- ._selectTrigger_1gnmc_46._valid_1gnmc_37 {
4797
+ button._selectTrigger_1o7b6_46._valid_1o7b6_37 {
4796
4798
  border-radius: var(--xmlui-borderRadius-Select-success);
4797
4799
  border-color: var(--xmlui-borderColor-Select-success);
4798
4800
  border-width: var(--xmlui-borderWidth-Select-success);
@@ -4802,23 +4804,23 @@ See this source for details: https://css-tricks.com/line-clampin/
4802
4804
  box-shadow: var(--xmlui-boxShadow-Select-success);
4803
4805
  color: var(--xmlui-textColor-Select-success);
4804
4806
  }
4805
- ._selectTrigger_1gnmc_46._valid_1gnmc_37:hover {
4807
+ button._selectTrigger_1o7b6_46._valid_1o7b6_37:hover {
4806
4808
  border-color: var(--xmlui-borderColor-Select-success--hover);
4807
4809
  background-color: var(--xmlui-backgroundColor-Select-success--hover);
4808
4810
  box-shadow: var(--xmlui-boxShadow-Select-success--hover);
4809
4811
  color: var(--xmlui-textColor-Select-success--hover);
4810
4812
  }
4811
- ._selectTrigger_1gnmc_46._valid_1gnmc_37:focus {
4813
+ button._selectTrigger_1o7b6_46._valid_1o7b6_37:focus {
4812
4814
  outline-width: var(--xmlui-outlineWidth-Select-success--focus);
4813
4815
  outline-color: var(--xmlui-outlineColor-Select-success--focus);
4814
4816
  outline-style: var(--xmlui-outlineStyle-Select-success--focus);
4815
4817
  outline-offset: var(--xmlui-outlineOffset-Select-success--focus);
4816
4818
  }
4817
- ._selectTrigger_1gnmc_46._valid_1gnmc_37::placeholder {
4819
+ button._selectTrigger_1o7b6_46._valid_1o7b6_37::placeholder {
4818
4820
  color: var(--xmlui-textColor-placeholder-Select-success);
4819
4821
  }
4820
4822
 
4821
- ._selectTrigger_1gnmc_46:disabled {
4823
+ ._selectTrigger_1o7b6_46:disabled {
4822
4824
  cursor: not-allowed;
4823
4825
  opacity: var(--xmlui-opacity-Select--disabled);
4824
4826
  background-color: var(--xmlui-backgroundColor-Select--disabled);
@@ -4826,28 +4828,28 @@ See this source for details: https://css-tricks.com/line-clampin/
4826
4828
  border-color: var(--xmlui-borderColor-Select--disabled);
4827
4829
  }
4828
4830
 
4829
- ._selectTrigger_1gnmc_46 > span {
4831
+ ._selectTrigger_1o7b6_46 > span {
4830
4832
  display: -webkit-box;
4831
4833
  -webkit-box-orient: vertical;
4832
4834
  -webkit-line-clamp: 1;
4833
4835
  overflow: hidden;
4834
4836
  }
4835
4837
 
4836
- ._badgeListContainer_1gnmc_170 {
4838
+ ._badgeListContainer_1o7b6_170 {
4837
4839
  display: flex;
4838
4840
  justify-content: space-between;
4839
4841
  align-items: center;
4840
4842
  width: 100%;
4841
4843
  }
4842
4844
 
4843
- ._badgeList_1gnmc_170 {
4845
+ ._badgeList_1o7b6_170 {
4844
4846
  gap: 4px;
4845
4847
  display: flex;
4846
4848
  flex-wrap: wrap;
4847
4849
  align-items: center;
4848
4850
  }
4849
4851
 
4850
- ._badge_1gnmc_170 {
4852
+ ._badge_1o7b6_170 {
4851
4853
  width: fit-content;
4852
4854
  height: fit-content;
4853
4855
  min-width: 0;
@@ -4864,27 +4866,27 @@ See this source for details: https://css-tricks.com/line-clampin/
4864
4866
  background-color: var(--xmlui-backgroundColor-Select-badge);
4865
4867
  color: var(--xmlui-textColor-Select-badge);
4866
4868
  }
4867
- ._badge_1gnmc_170:hover {
4869
+ ._badge_1o7b6_170:hover {
4868
4870
  background-color: var(--xmlui-backgroundColor-Select-badge--hover);
4869
4871
  color: var(--xmlui-textColor-Select-badge--hover);
4870
4872
  }
4871
- ._badge_1gnmc_170:active {
4873
+ ._badge_1o7b6_170:active {
4872
4874
  background-color: var(--xmlui-backgroundColor-Select-badge--active);
4873
4875
  color: var(--xmlui-textColor-Select-badge--active);
4874
4876
  }
4875
4877
 
4876
- ._actions_1gnmc_210 {
4878
+ ._actions_1o7b6_210 {
4877
4879
  display: flex;
4878
4880
  align-items: center;
4879
4881
  justify-content: space-between;
4880
4882
  }
4881
4883
 
4882
- ._placeholder_1gnmc_216 {
4884
+ ._placeholder_1o7b6_216 {
4883
4885
  display: block;
4884
4886
  color: var(--xmlui-textColor-placeholder-Select);
4885
4887
  }
4886
4888
 
4887
- ._emptyList_1gnmc_221 {
4889
+ ._emptyList_1o7b6_221 {
4888
4890
  display: flex;
4889
4891
  gap: 0.2rem;
4890
4892
  padding: 10px 0;
@@ -4894,7 +4896,7 @@ See this source for details: https://css-tricks.com/line-clampin/
4894
4896
  width: 100%;
4895
4897
  }
4896
4898
 
4897
- ._selectScrollUpButton_1gnmc_231 {
4899
+ ._selectScrollUpButton_1o7b6_231 {
4898
4900
  display: flex;
4899
4901
  cursor: default;
4900
4902
  align-items: center;
@@ -4903,7 +4905,7 @@ See this source for details: https://css-tricks.com/line-clampin/
4903
4905
  padding-bottom: 0.25rem;
4904
4906
  }
4905
4907
 
4906
- ._selectScrollDownButton_1gnmc_240 {
4908
+ ._selectScrollDownButton_1o7b6_240 {
4907
4909
  display: flex;
4908
4910
  cursor: default;
4909
4911
  align-items: center;
@@ -4912,7 +4914,7 @@ See this source for details: https://css-tricks.com/line-clampin/
4912
4914
  padding-bottom: 0.25rem;
4913
4915
  }
4914
4916
 
4915
- ._command_1gnmc_249 {
4917
+ ._command_1o7b6_249 {
4916
4918
  display: flex;
4917
4919
  flex-direction: column;
4918
4920
  height: 100%;
@@ -4922,14 +4924,14 @@ See this source for details: https://css-tricks.com/line-clampin/
4922
4924
  background-color: var(--xmlui-backgroundColor-menu-Select);
4923
4925
  }
4924
4926
 
4925
- ._commandInputContainer_1gnmc_259 {
4927
+ ._commandInputContainer_1o7b6_259 {
4926
4928
  display: flex;
4927
4929
  align-items: center;
4928
4930
  padding: 0 12px;
4929
4931
  border-bottom: 1px solid var(--xmlui-borderColor);
4930
4932
  }
4931
4933
 
4932
- ._commandInput_1gnmc_259 {
4934
+ ._commandInput_1o7b6_259 {
4933
4935
  flex: 1;
4934
4936
  background-color: transparent;
4935
4937
  padding: 0.5rem;
@@ -4937,22 +4939,22 @@ See this source for details: https://css-tricks.com/line-clampin/
4937
4939
  outline: none;
4938
4940
  border: none;
4939
4941
  }
4940
- ._commandInput_1gnmc_259:focus {
4942
+ ._commandInput_1o7b6_259:focus {
4941
4943
  outline: none;
4942
4944
  box-shadow: none;
4943
4945
  border: 0;
4944
4946
  }
4945
- ._commandInput_1gnmc_259:disabled {
4947
+ ._commandInput_1o7b6_259:disabled {
4946
4948
  cursor: not-allowed;
4947
4949
  opacity: var(--xmlui-opacity-Select--disabled);
4948
4950
  }
4949
4951
 
4950
- ._commandList_1gnmc_284 {
4952
+ ._commandList_1o7b6_284 {
4951
4953
  overflow-y: auto;
4952
4954
  overflow-x: hidden;
4953
4955
  }
4954
4956
 
4955
- ._selectContent_1gnmc_289 {
4957
+ ._selectContent_1o7b6_289 {
4956
4958
  position: relative;
4957
4959
  z-index: 50;
4958
4960
  overflow: auto;
@@ -4961,38 +4963,38 @@ See this source for details: https://css-tricks.com/line-clampin/
4961
4963
  box-shadow: var(--xmlui-boxShadow-menu-Select);
4962
4964
  border: var(--xmlui-borderWidth-menu-Select) solid var(--xmlui-borderColor-menu-Select);
4963
4965
  }
4964
- ._selectContent_1gnmc_289[data-state=open] {
4965
- animation: _fadeIn_1gnmc_1 0.3s ease-in-out, _zoomIn_1gnmc_1 0.3s ease-in-out;
4966
+ ._selectContent_1o7b6_289[data-state=open] {
4967
+ animation: _fadeIn_1o7b6_1 0.3s ease-in-out, _zoomIn_1o7b6_1 0.3s ease-in-out;
4966
4968
  }
4967
- ._selectContent_1gnmc_289[data-state=closed] {
4968
- animation: _fadeOut_1gnmc_1 0.3s ease-in-out, _zoomOut_1gnmc_1 0.3s ease-in-out;
4969
+ ._selectContent_1o7b6_289[data-state=closed] {
4970
+ animation: _fadeOut_1o7b6_1 0.3s ease-in-out, _zoomOut_1o7b6_1 0.3s ease-in-out;
4969
4971
  }
4970
- ._selectContent_1gnmc_289[data-side=bottom] {
4971
- animation: _slideInFromTop_1gnmc_1 0.08s ease-in-out;
4972
+ ._selectContent_1o7b6_289[data-side=bottom] {
4973
+ animation: _slideInFromTop_1o7b6_1 0.08s ease-in-out;
4972
4974
  }
4973
- ._selectContent_1gnmc_289[data-side=left] {
4974
- animation: _slideInFromRight_1gnmc_1 0.3s ease-in-out;
4975
+ ._selectContent_1o7b6_289[data-side=left] {
4976
+ animation: _slideInFromRight_1o7b6_1 0.3s ease-in-out;
4975
4977
  }
4976
- ._selectContent_1gnmc_289[data-side=right] {
4977
- animation: _slideInFromLeft_1gnmc_1 0.3s ease-in-out;
4978
+ ._selectContent_1o7b6_289[data-side=right] {
4979
+ animation: _slideInFromLeft_1o7b6_1 0.3s ease-in-out;
4978
4980
  }
4979
- ._selectContent_1gnmc_289[data-side=top] {
4980
- animation: _slideInFromBottom_1gnmc_1 0.3s ease-in-out;
4981
+ ._selectContent_1o7b6_289[data-side=top] {
4982
+ animation: _slideInFromBottom_1o7b6_1 0.3s ease-in-out;
4981
4983
  }
4982
- ._selectContent_1gnmc_289[data-side=bottom] {
4984
+ ._selectContent_1o7b6_289[data-side=bottom] {
4983
4985
  transform: translateY(0.25rem);
4984
4986
  }
4985
- ._selectContent_1gnmc_289[data-side=left] {
4987
+ ._selectContent_1o7b6_289[data-side=left] {
4986
4988
  transform: translateX(-0.25rem);
4987
4989
  }
4988
- ._selectContent_1gnmc_289[data-side=right] {
4990
+ ._selectContent_1o7b6_289[data-side=right] {
4989
4991
  transform: translateX(0.25rem);
4990
4992
  }
4991
- ._selectContent_1gnmc_289[data-side=top] {
4993
+ ._selectContent_1o7b6_289[data-side=top] {
4992
4994
  transform: translateY(-0.25rem);
4993
4995
  }
4994
4996
 
4995
- ._multiComboboxOption_1gnmc_329 {
4997
+ ._multiComboboxOption_1o7b6_329 {
4996
4998
  padding: 0.5rem 1rem;
4997
4999
  display: flex;
4998
5000
  gap: 1rem;
@@ -5002,17 +5004,17 @@ See this source for details: https://css-tricks.com/line-clampin/
5002
5004
  transition: background-color 0.2s ease;
5003
5005
  background-color: var(--xmlui-backgroundColor-item-Select);
5004
5006
  }
5005
- ._multiComboboxOption_1gnmc_329[data-selected=true] {
5007
+ ._multiComboboxOption_1o7b6_329[data-selected=true] {
5006
5008
  background-color: var(--xmlui-backgroundColor-item-Select--hover);
5007
5009
  }
5008
- ._multiComboboxOption_1gnmc_329[data-disabled=true] {
5010
+ ._multiComboboxOption_1o7b6_329[data-disabled=true] {
5009
5011
  pointer-events: none;
5010
5012
  opacity: var(--xmlui-opacity-text-item-Select--disabled);
5011
5013
  cursor: not-allowed;
5012
5014
  font-style: italic;
5013
5015
  }
5014
5016
 
5015
- ._selectItem_1gnmc_349 {
5017
+ ._selectItem_1o7b6_349 {
5016
5018
  position: relative;
5017
5019
  display: flex;
5018
5020
  width: 100%;
@@ -5026,21 +5028,21 @@ See this source for details: https://css-tricks.com/line-clampin/
5026
5028
  outline: none;
5027
5029
  font-size: var(--xmlui-fontSize-Select);
5028
5030
  }
5029
- ._selectItem_1gnmc_349[data-highlighted] {
5031
+ ._selectItem_1o7b6_349[data-highlighted] {
5030
5032
  background-color: var(--xmlui-backgroundColor-item-Select--hover);
5031
5033
  }
5032
- ._selectItem_1gnmc_349[data-state=checked] {
5034
+ ._selectItem_1o7b6_349[data-state=checked] {
5033
5035
  background-color: var(--xmlui-backgroundColor-item-Select--active);
5034
5036
  }
5035
5037
 
5036
- ._selectItem_1gnmc_349[data-disabled] {
5038
+ ._selectItem_1o7b6_349[data-disabled] {
5037
5039
  pointer-events: none;
5038
5040
  opacity: var(--xmlui-opacity-text-item-Select--disabled);
5039
5041
  cursor: not-allowed;
5040
5042
  font-style: italic;
5041
5043
  }
5042
5044
 
5043
- ._selectItemIndicator_1gnmc_377 {
5045
+ ._selectItemIndicator_1o7b6_377 {
5044
5046
  position: absolute;
5045
5047
  right: 0.5rem;
5046
5048
  display: flex;
@@ -5051,13 +5053,13 @@ See this source for details: https://css-tricks.com/line-clampin/
5051
5053
  color: var(--xmlui-textColor-indicator-Select);
5052
5054
  }
5053
5055
 
5054
- ._selectViewport_1gnmc_388 {
5056
+ ._selectViewport_1o7b6_388 {
5055
5057
  height: var(--radix-select-trigger-height);
5056
5058
  width: 100%;
5057
5059
  min-width: var(--radix-select-trigger-width);
5058
5060
  }
5059
5061
 
5060
- ._selectEmpty_1gnmc_394 {
5062
+ ._selectEmpty_1o7b6_394 {
5061
5063
  display: flex;
5062
5064
  gap: 0.2rem;
5063
5065
  height: 100%;
@@ -5068,7 +5070,7 @@ See this source for details: https://css-tricks.com/line-clampin/
5068
5070
  width: 100%;
5069
5071
  }
5070
5072
 
5071
- ._srOnly_1gnmc_405 {
5073
+ ._srOnly_1o7b6_405 {
5072
5074
  position: absolute;
5073
5075
  width: 1px;
5074
5076
  height: 1px;
@@ -5080,7 +5082,7 @@ See this source for details: https://css-tricks.com/line-clampin/
5080
5082
  border: 0;
5081
5083
  }
5082
5084
 
5083
- @keyframes _fadeIn_1gnmc_1 {
5085
+ @keyframes _fadeIn_1o7b6_1 {
5084
5086
  from {
5085
5087
  opacity: 0;
5086
5088
  }
@@ -5088,7 +5090,7 @@ See this source for details: https://css-tricks.com/line-clampin/
5088
5090
  opacity: 1;
5089
5091
  }
5090
5092
  }
5091
- @keyframes _fadeOut_1gnmc_1 {
5093
+ @keyframes _fadeOut_1o7b6_1 {
5092
5094
  from {
5093
5095
  opacity: 1;
5094
5096
  }
@@ -5096,7 +5098,7 @@ See this source for details: https://css-tricks.com/line-clampin/
5096
5098
  opacity: 0;
5097
5099
  }
5098
5100
  }
5099
- @keyframes _zoomIn_1gnmc_1 {
5101
+ @keyframes _zoomIn_1o7b6_1 {
5100
5102
  from {
5101
5103
  transform: scale(0.95);
5102
5104
  }
@@ -5104,7 +5106,7 @@ See this source for details: https://css-tricks.com/line-clampin/
5104
5106
  transform: scale(1);
5105
5107
  }
5106
5108
  }
5107
- @keyframes _zoomOut_1gnmc_1 {
5109
+ @keyframes _zoomOut_1o7b6_1 {
5108
5110
  from {
5109
5111
  transform: scale(1);
5110
5112
  }
@@ -5112,7 +5114,7 @@ See this source for details: https://css-tricks.com/line-clampin/
5112
5114
  transform: scale(0.95);
5113
5115
  }
5114
5116
  }
5115
- @keyframes _slideInFromTop_1gnmc_1 {
5117
+ @keyframes _slideInFromTop_1o7b6_1 {
5116
5118
  from {
5117
5119
  transform: translateY(-0.75rem);
5118
5120
  }
@@ -5120,7 +5122,7 @@ See this source for details: https://css-tricks.com/line-clampin/
5120
5122
  transform: translateY(0);
5121
5123
  }
5122
5124
  }
5123
- @keyframes _slideInFromBottom_1gnmc_1 {
5125
+ @keyframes _slideInFromBottom_1o7b6_1 {
5124
5126
  from {
5125
5127
  transform: translateY(0.75rem);
5126
5128
  }
@@ -5128,7 +5130,7 @@ See this source for details: https://css-tricks.com/line-clampin/
5128
5130
  transform: translateY(0);
5129
5131
  }
5130
5132
  }
5131
- @keyframes _slideInFromLeft_1gnmc_1 {
5133
+ @keyframes _slideInFromLeft_1o7b6_1 {
5132
5134
  from {
5133
5135
  transform: translateX(-100%);
5134
5136
  }
@@ -5136,7 +5138,7 @@ See this source for details: https://css-tricks.com/line-clampin/
5136
5138
  transform: translateX(0);
5137
5139
  }
5138
5140
  }
5139
- @keyframes _slideInFromRight_1gnmc_1 {
5141
+ @keyframes _slideInFromRight_1o7b6_1 {
5140
5142
  from {
5141
5143
  transform: translateX(100%);
5142
5144
  }
@@ -5969,14 +5971,14 @@ See this source for details: https://css-tricks.com/line-clampin/
5969
5971
  * This function allows other CSS modules to get the value of the CSS variable specified in $componentVariable.
5970
5972
  Optionally, you can provide a $fallbackValue to set the variable's value if that is not defined.
5971
5973
  */
5972
- ._command_1bkxa_13 {
5974
+ ._command_17zx6_13 {
5973
5975
  width: 100%;
5974
5976
  height: auto;
5975
5977
  overflow: visible;
5976
5978
  background-color: transparent;
5977
5979
  }
5978
5980
 
5979
- ._badgeListWrapper_1bkxa_20 {
5981
+ ._badgeListWrapper_17zx6_20 {
5980
5982
  outline: none;
5981
5983
  display: flex;
5982
5984
  padding: var(--xmlui-space-1) var(--xmlui-space-2);
@@ -5990,16 +5992,16 @@ See this source for details: https://css-tricks.com/line-clampin/
5990
5992
  box-shadow: var(--xmlui-boxShadow-AutoComplete-default);
5991
5993
  color: var(--xmlui-textColor-AutoComplete-default);
5992
5994
  }
5993
- ._badgeListWrapper_1bkxa_20:hover {
5995
+ ._badgeListWrapper_17zx6_20:hover {
5994
5996
  border-color: var(--xmlui-borderColor-AutoComplete-default--hover);
5995
5997
  background-color: var(--xmlui-backgroundColor-AutoComplete-default--hover);
5996
5998
  box-shadow: var(--xmlui-boxShadow-AutoComplete-default--hover);
5997
5999
  color: var(--xmlui-textColor-AutoComplete-default--hover);
5998
6000
  }
5999
- ._badgeListWrapper_1bkxa_20::placeholder {
6001
+ ._badgeListWrapper_17zx6_20::placeholder {
6000
6002
  color: var(--xmlui-textColor-placeholder-AutoComplete-default);
6001
6003
  }
6002
- ._badgeListWrapper_1bkxa_20._error_1bkxa_43 {
6004
+ ._badgeListWrapper_17zx6_20._error_17zx6_43 {
6003
6005
  border-radius: var(--xmlui-borderRadius-AutoComplete-error);
6004
6006
  border-color: var(--xmlui-borderColor-AutoComplete-error);
6005
6007
  border-width: var(--xmlui-borderWidth-AutoComplete-error);
@@ -6009,16 +6011,16 @@ See this source for details: https://css-tricks.com/line-clampin/
6009
6011
  box-shadow: var(--xmlui-boxShadow-AutoComplete-error);
6010
6012
  color: var(--xmlui-textColor-AutoComplete-error);
6011
6013
  }
6012
- ._badgeListWrapper_1bkxa_20._error_1bkxa_43:hover {
6014
+ ._badgeListWrapper_17zx6_20._error_17zx6_43:hover {
6013
6015
  border-color: var(--xmlui-borderColor-AutoComplete-error--hover);
6014
6016
  background-color: var(--xmlui-backgroundColor-AutoComplete-error--hover);
6015
6017
  box-shadow: var(--xmlui-boxShadow-AutoComplete-error--hover);
6016
6018
  color: var(--xmlui-textColor-AutoComplete-error--hover);
6017
6019
  }
6018
- ._badgeListWrapper_1bkxa_20._error_1bkxa_43::placeholder {
6020
+ ._badgeListWrapper_17zx6_20._error_17zx6_43::placeholder {
6019
6021
  color: var(--xmlui-textColor-placeholder-AutoComplete-error);
6020
6022
  }
6021
- ._badgeListWrapper_1bkxa_20._warning_1bkxa_62 {
6023
+ ._badgeListWrapper_17zx6_20._warning_17zx6_62 {
6022
6024
  border-radius: var(--xmlui-borderRadius-AutoComplete-warning);
6023
6025
  border-color: var(--xmlui-borderColor-AutoComplete-warning);
6024
6026
  border-width: var(--xmlui-borderWidth-AutoComplete-warning);
@@ -6028,16 +6030,16 @@ See this source for details: https://css-tricks.com/line-clampin/
6028
6030
  box-shadow: var(--xmlui-boxShadow-AutoComplete-warning);
6029
6031
  color: var(--xmlui-textColor-AutoComplete-warning);
6030
6032
  }
6031
- ._badgeListWrapper_1bkxa_20._warning_1bkxa_62:hover {
6033
+ ._badgeListWrapper_17zx6_20._warning_17zx6_62:hover {
6032
6034
  border-color: var(--xmlui-borderColor-AutoComplete-warning--hover);
6033
6035
  background-color: var(--xmlui-backgroundColor-AutoComplete-warning--hover);
6034
6036
  box-shadow: var(--xmlui-boxShadow-AutoComplete-warning--hover);
6035
6037
  color: var(--xmlui-textColor-AutoComplete-warning--hover);
6036
6038
  }
6037
- ._badgeListWrapper_1bkxa_20._warning_1bkxa_62::placeholder {
6039
+ ._badgeListWrapper_17zx6_20._warning_17zx6_62::placeholder {
6038
6040
  color: var(--xmlui-textColor-placeholder-AutoComplete-warning);
6039
6041
  }
6040
- ._badgeListWrapper_1bkxa_20._valid_1bkxa_81 {
6042
+ ._badgeListWrapper_17zx6_20._valid_17zx6_81 {
6041
6043
  border-radius: var(--xmlui-borderRadius-AutoComplete-success);
6042
6044
  border-color: var(--xmlui-borderColor-AutoComplete-success);
6043
6045
  border-width: var(--xmlui-borderWidth-AutoComplete-success);
@@ -6047,30 +6049,30 @@ See this source for details: https://css-tricks.com/line-clampin/
6047
6049
  box-shadow: var(--xmlui-boxShadow-AutoComplete-success);
6048
6050
  color: var(--xmlui-textColor-AutoComplete-success);
6049
6051
  }
6050
- ._badgeListWrapper_1bkxa_20._valid_1bkxa_81:hover {
6052
+ ._badgeListWrapper_17zx6_20._valid_17zx6_81:hover {
6051
6053
  border-color: var(--xmlui-borderColor-AutoComplete-success--hover);
6052
6054
  background-color: var(--xmlui-backgroundColor-AutoComplete-success--hover);
6053
6055
  box-shadow: var(--xmlui-boxShadow-AutoComplete-success--hover);
6054
6056
  color: var(--xmlui-textColor-AutoComplete-success--hover);
6055
6057
  }
6056
- ._badgeListWrapper_1bkxa_20._valid_1bkxa_81::placeholder {
6058
+ ._badgeListWrapper_17zx6_20._valid_17zx6_81::placeholder {
6057
6059
  color: var(--xmlui-textColor-placeholder-AutoComplete-success);
6058
6060
  }
6059
- ._badgeListWrapper_1bkxa_20._disabled_1bkxa_100 {
6061
+ ._badgeListWrapper_17zx6_20._disabled_17zx6_100 {
6060
6062
  cursor: not-allowed;
6061
6063
  opacity: 0.5;
6062
6064
  background-color: var(--xmlui-backgroundColor-AutoComplete--disabled);
6063
6065
  color: var(--xmlui-textColor-AutoComplete--disabled);
6064
6066
  border-color: var(--xmlui-borderColor-AutoComplete--disabled);
6065
6067
  }
6066
- ._badgeListWrapper_1bkxa_20._focused_1bkxa_107 {
6068
+ ._badgeListWrapper_17zx6_20._focused_17zx6_107 {
6067
6069
  outline-width: var(--xmlui-outlineWidth-AutoComplete--focus);
6068
6070
  outline-color: var(--xmlui-outlineColor-AutoComplete--focus);
6069
6071
  outline-style: var(--xmlui-outlineStyle-AutoComplete--focus);
6070
6072
  outline-offset: var(--xmlui-outlineOffset-AutoComplete--focus);
6071
6073
  }
6072
6074
 
6073
- ._badgeList_1bkxa_20 {
6075
+ ._badgeList_17zx6_20 {
6074
6076
  position: relative;
6075
6077
  flex-grow: 1;
6076
6078
  align-items: center;
@@ -6079,35 +6081,12 @@ See this source for details: https://css-tricks.com/line-clampin/
6079
6081
  gap: 0.25rem;
6080
6082
  }
6081
6083
 
6082
- ._badge_1bkxa_20 {
6084
+ ._badge_17zx6_20 {
6083
6085
  width: fit-content;
6084
6086
  height: fit-content;
6085
6087
  min-width: 0;
6086
- padding: var(--xmlui-padding-badge-AutoComplete);
6087
- padding-left: var(--xmlui-paddingLeft-badge-AutoComplete, var(--xmlui-paddingHorizontal-badge-AutoComplete, var(--xmlui-padding-badge-AutoComplete)));
6088
- padding-right: var(--xmlui-paddingRight-badge-AutoComplete, var(--xmlui-paddingHorizontal-badge-AutoComplete, var(--xmlui-padding-badge-AutoComplete)));
6089
- padding-top: var(--xmlui-paddingTop-badge-AutoComplete, var(--xmlui-paddingVertical-badge-AutoComplete, var(--xmlui-padding-badge-AutoComplete)));
6090
- padding-bottom: var(--xmlui-paddingBottom-badge-AutoComplete, var(--xmlui-paddingVertical-badge-AutoComplete, var(--xmlui-padding-badge-AutoComplete)));
6091
- border-left: var(--xmlui-borderLeft-badge-AutoComplete, var(--xmlui-borderHorizontal-badge-AutoComplete, var(--xmlui-border-badge-AutoComplete)));
6092
- border-right: var(--xmlui-borderRight-badge-AutoComplete, var(--xmlui-borderHorizontal-badge-AutoComplete, var(--xmlui-border-badge-AutoComplete)));
6093
- border-top: var(--xmlui-borderTop-badge-AutoComplete, var(--xmlui-borderVertical-badge-AutoComplete, var(--xmlui-border-badge-AutoComplete)));
6094
- border-bottom: var(--xmlui-borderBottom-badge-AutoComplete, var(--xmlui-borderVertical-badge-AutoComplete, var(--xmlui-border-badge-AutoComplete)));
6095
- border-left-style: var(--xmlui-borderLeftStyle-badge-AutoComplete, var(--xmlui-borderHorizontalStyle-badge-AutoComplete, var(--xmlui-borderStyle-badge-AutoComplete)));
6096
- border-right-style: var(--xmlui-borderRightStyle-badge-AutoComplete, var(--xmlui-borderHorizontalStyle-badge-AutoComplete, var(--xmlui-borderStyle-badge-AutoComplete)));
6097
- border-top-style: var(--xmlui-borderTopStyle-badge-AutoComplete, var(--xmlui-borderVerticalStyle-badge-AutoComplete, var(--xmlui-borderStyle-badge-AutoComplete)));
6098
- border-bottom-style: var(--xmlui-borderBottomStyle-badge-AutoComplete, var(--xmlui-borderVerticalStyle-badge-AutoComplete, var(--xmlui-borderStyle-badge-AutoComplete)));
6099
- border-left-width: var(--xmlui-borderLeftWidth-badge-AutoComplete, var(--xmlui-borderHorizontalWidth-badge-AutoComplete, var(--xmlui-borderWidth-badge-AutoComplete)));
6100
- border-right-width: var(--xmlui-borderRightWidth-badge-AutoComplete, var(--xmlui-borderHorizontalWidth-badge-AutoComplete, var(--xmlui-borderWidth-badge-AutoComplete)));
6101
- border-top-width: var(--xmlui-borderTopWidth-badge-AutoComplete, var(--xmlui-borderVerticalWidth-badge-AutoComplete, var(--xmlui-borderWidth-badge-AutoComplete)));
6102
- border-bottom-width: var(--xmlui-borderBottomWidth-badge-AutoComplete, var(--xmlui-borderVerticalWidth-badge-AutoComplete, var(--xmlui-borderWidth-badge-AutoComplete)));
6103
- border-left-color: var(--xmlui-borderLeftColor-badge-AutoComplete, var(--xmlui-borderHorizontalColor-badge-AutoComplete, var(--xmlui-borderColor-badge-AutoComplete)));
6104
- border-right-color: var(--xmlui-borderRightColor-badge-AutoComplete, var(--xmlui-borderHorizontalColor-badge-AutoComplete, var(--xmlui-borderColor-badge-AutoComplete)));
6105
- border-top-color: var(--xmlui-borderTopColor-badge-AutoComplete, var(--xmlui-borderVerticalColor-badge-AutoComplete, var(--xmlui-borderColor-badge-AutoComplete)));
6106
- border-bottom-color: var(--xmlui-borderBottomColor-badge-AutoComplete, var(--xmlui-borderVerticalColor-badge-AutoComplete, var(--xmlui-borderColor-badge-AutoComplete)));
6107
- border-start-start-radius: var(--xmlui-borderStartStartRadius-badge-AutoComplete, var(--xmlui-borderRadius-badge-AutoComplete));
6108
- border-start-end-radius: var(--xmlui-borderStartEndRadius-badge-AutoComplete, var(--xmlui-borderRadius-badge-AutoComplete));
6109
- border-end-start-radius: var(--xmlui-borderEndStartRadius-badge-AutoComplete, var(--xmlui-borderRadius-badge-AutoComplete));
6110
- border-end-end-radius: var(--xmlui-borderEndEndRadius-badge-AutoComplete, var(--xmlui-borderRadius-badge-AutoComplete));
6088
+ padding: var(--xmlui-paddingVertical-AutoComplete-badge) var(--xmlui-paddingHorizontal-AutoComplete-badge);
6089
+ border-radius: var(--xmlui-radius);
6111
6090
  transition: color 0.2s, background-color 0.2s;
6112
6091
  user-select: none;
6113
6092
  cursor: pointer;
@@ -6115,42 +6094,42 @@ See this source for details: https://css-tricks.com/line-clampin/
6115
6094
  gap: var(--xmlui-space-1);
6116
6095
  justify-content: center;
6117
6096
  align-items: center;
6118
- font-size: var(--xmlui-fontSize-badge-AutoComplete);
6119
- background-color: var(--xmlui-backgroundColor-badge-AutoComplete);
6120
- color: var(--xmlui-textColor-badgeAutoComplete);
6097
+ font-size: var(--xmlui-fontSize-AutoComplete-badge);
6098
+ background-color: var(--xmlui-backgroundColor-AutoComplete-badge);
6099
+ color: var(--xmlui-textColor-AutoComplete-badge);
6121
6100
  }
6122
- ._badge_1bkxa_20:hover {
6123
- background-color: var(--xmlui-backgroundColor-badge-AutoComplete--hover);
6124
- color: var(--xmlui-textColor-badgeAutoComplete--hover);
6101
+ ._badge_17zx6_20:hover {
6102
+ background-color: var(--xmlui-backgroundColor-AutoComplete-badge--hover);
6103
+ color: var(--xmlui-textColor-AutoComplete-badge--hover);
6125
6104
  }
6126
- ._badge_1bkxa_20:active {
6127
- background-color: var(--xmlui-backgroundColor-badge-AutoComplete--active);
6128
- color: var(--xmlui-textColor-badgeAutoComplete--active);
6105
+ ._badge_17zx6_20:active {
6106
+ background-color: var(--xmlui-backgroundColor-AutoComplete-badge--active);
6107
+ color: var(--xmlui-textColor-AutoComplete-badge--active);
6129
6108
  }
6130
6109
 
6131
- ._commandInput_1bkxa_172 {
6110
+ ._commandInput_17zx6_149 {
6132
6111
  flex: 1;
6133
6112
  background-color: transparent;
6134
6113
  outline: none;
6135
6114
  }
6136
- ._commandInput_1bkxa_172:disabled {
6115
+ ._commandInput_17zx6_149:disabled {
6137
6116
  cursor: not-allowed;
6138
6117
  opacity: 0.5;
6139
6118
  }
6140
- ._commandInput_1bkxa_172::placeholder {
6119
+ ._commandInput_17zx6_149::placeholder {
6141
6120
  color: var(--xmlui-textColor-placeholder-AutoComplete);
6142
6121
  }
6143
- ._commandInput_1bkxa_172:focus-within {
6122
+ ._commandInput_17zx6_149:focus-within {
6144
6123
  outline: none;
6145
6124
  }
6146
6125
 
6147
- ._actions_1bkxa_188 {
6126
+ ._actions_17zx6_165 {
6148
6127
  display: flex;
6149
6128
  align-items: center;
6150
6129
  justify-content: space-between;
6151
6130
  }
6152
6131
 
6153
- ._autoCompleteEmpty_1bkxa_194 {
6132
+ ._autoCompleteEmpty_17zx6_171 {
6154
6133
  display: flex;
6155
6134
  gap: 0.2rem;
6156
6135
  padding: 10px 0;
@@ -6160,7 +6139,7 @@ See this source for details: https://css-tricks.com/line-clampin/
6160
6139
  width: 100%;
6161
6140
  }
6162
6141
 
6163
- ._commandList_1bkxa_204 {
6142
+ ._commandList_17zx6_181 {
6164
6143
  position: absolute;
6165
6144
  overflow: hidden;
6166
6145
  top: 0.25rem;
@@ -6170,10 +6149,10 @@ See this source for details: https://css-tricks.com/line-clampin/
6170
6149
  background-color: var(--xmlui-backgroundColor-menu-AutoComplete);
6171
6150
  border-radius: var(--xmlui-borderRadius-menu-AutoComplete);
6172
6151
  box-shadow: var(--xmlui-boxShadow-menu-AutoComplete);
6173
- animation: _fade-in_1bkxa_1 0.3s ease-in-out; /* animate-in */
6152
+ animation: _fade-in_17zx6_1 0.3s ease-in-out; /* animate-in */
6174
6153
  }
6175
6154
 
6176
- ._autoCompleteOption_1bkxa_217 {
6155
+ ._autoCompleteOption_17zx6_194 {
6177
6156
  padding: 0.5rem 1rem;
6178
6157
  display: flex;
6179
6158
  gap: 1rem;
@@ -6183,10 +6162,10 @@ See this source for details: https://css-tricks.com/line-clampin/
6183
6162
  transition: background-color 0.2s ease;
6184
6163
  background-color: var(--xmlui-backgroundColor-item-AutoComplete);
6185
6164
  }
6186
- ._autoCompleteOption_1bkxa_217[data-selected=true] {
6165
+ ._autoCompleteOption_17zx6_194[data-selected=true] {
6187
6166
  background-color: var(--xmlui-backgroundColor-item-AutoComplete--hover);
6188
6167
  }
6189
- ._autoCompleteOption_1bkxa_217[data-disabled=true] {
6168
+ ._autoCompleteOption_17zx6_194[data-disabled=true] {
6190
6169
  pointer-events: none;
6191
6170
  opacity: 0.5;
6192
6171
  cursor: not-allowed;
@@ -6519,7 +6498,7 @@ See this source for details: https://css-tricks.com/line-clampin/
6519
6498
  * This function allows other CSS modules to get the value of the CSS variable specified in $componentVariable.
6520
6499
  Optionally, you can provide a $fallbackValue to set the variable's value if that is not defined.
6521
6500
  */
6522
- ._dropdownList_92nyg_13 {
6501
+ ._dropdownList_qxju2_13 {
6523
6502
  padding: 0;
6524
6503
  margin: 0;
6525
6504
  left: 0;
@@ -6534,32 +6513,8 @@ See this source for details: https://css-tricks.com/line-clampin/
6534
6513
  min-width: 11rem;
6535
6514
  border-radius: var(--xmlui-borderRadius-dropdown-NavGroup);
6536
6515
  }
6537
- ._dropdownList_92nyg_13:focus, ._dropdownList_92nyg_13:focus-visible {
6516
+ ._dropdownList_qxju2_13:focus, ._dropdownList_qxju2_13:focus-visible {
6538
6517
  outline: none;
6539
- }
6540
-
6541
- ._withNavGroupChevron_92nyg_32 {
6542
- display: inline-flex;
6543
- align-items: center;
6544
- }
6545
- ._withNavGroupChevron_92nyg_32:after {
6546
- content: "";
6547
- display: inline-block;
6548
- vertical-align: 0.306em;
6549
- width: 0.36em;
6550
- height: 0.36em;
6551
- border-bottom: 1px solid currentColor;
6552
- border-left: 1px solid currentColor;
6553
- margin-right: 0.1em;
6554
- margin-left: 0.4em;
6555
- transform: rotate(-45deg);
6556
- }
6557
- ._withNavGroupChevron_92nyg_32._pointRight_92nyg_48 {
6558
- flex: 1;
6559
- }
6560
- ._withNavGroupChevron_92nyg_32._pointRight_92nyg_48:after {
6561
- margin-left: auto;
6562
- transform: rotate(-135deg);
6563
6518
  }/*
6564
6519
  * This file contains all CSS variables AppEngine uses for styling the UI, including individual visual components.
6565
6520
  *
@@ -7128,7 +7083,7 @@ li ._htmlOl_1snis_205 {
7128
7083
  * This function allows other CSS modules to get the value of the CSS variable specified in $componentVariable.
7129
7084
  Optionally, you can provide a $fallbackValue to set the variable's value if that is not defined.
7130
7085
  */
7131
- ._wrapper_i851i_13 {
7086
+ ._wrapper_1f03i_13 {
7132
7087
  z-index: 9999;
7133
7088
  overflow: hidden;
7134
7089
  box-shadow: 0 2px 6px 0 rgba(58, 57, 68, 0.4);
@@ -7139,26 +7094,32 @@ li ._htmlOl_1snis_205 {
7139
7094
  border: 1px solid var(--xmlui-borderColor);
7140
7095
  }
7141
7096
 
7142
- ._actions_i851i_24 {
7097
+ ._actions_1f03i_24 {
7143
7098
  display: inline-flex;
7099
+ align-items: center;
7144
7100
  justify-content: flex-end;
7145
7101
  }
7146
7102
 
7147
- ._tabs_i851i_29 {
7103
+ ._tabs_1f03i_30 {
7148
7104
  display: flex;
7149
7105
  flex-direction: column;
7150
7106
  background-color: var(--xmlui-backgroundColor);
7151
7107
  }
7152
7108
 
7153
- ._sideButtons_i851i_35 {
7109
+ ._tabItems_1f03i_36 {
7154
7110
  display: flex;
7111
+ flex-direction: row;
7155
7112
  }
7156
7113
 
7157
- ._sideButton_i851i_35 {
7114
+ ._sideButtons_1f03i_41 {
7115
+ display: flex;
7116
+ }
7117
+
7118
+ ._sideButton_1f03i_41 {
7158
7119
  padding: 2px;
7159
7120
  }
7160
7121
 
7161
- ._menuItem_i851i_43 {
7122
+ ._menuItem_1f03i_49 {
7162
7123
  width: 240px;
7163
7124
  display: flex;
7164
7125
  justify-content: space-between;
@@ -7168,7 +7129,7 @@ li ._htmlOl_1snis_205 {
7168
7129
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
7169
7130
  }
7170
7131
 
7171
- ._list_i851i_53 {
7132
+ ._list_1f03i_59 {
7172
7133
  padding: 0.2rem;
7173
7134
  display: flex;
7174
7135
  flex: 0 0 auto;
@@ -7178,17 +7139,18 @@ li ._htmlOl_1snis_205 {
7178
7139
  border-bottom: 1px solid var(--xmlui-borderColor);
7179
7140
  }
7180
7141
 
7181
- ._menu_i851i_43 {
7142
+ ._menu_1f03i_49 {
7182
7143
  position: relative;
7183
7144
  z-index: 9999;
7145
+ padding: var(--xmlui-space-1_5);
7184
7146
  }
7185
7147
 
7186
- ._content_i851i_68 {
7148
+ ._content_1f03i_75 {
7187
7149
  flex: 1;
7188
7150
  position: relative;
7189
7151
  overflow: auto;
7190
7152
  }
7191
- ._content_i851i_68 ._copyButton_i851i_73 {
7153
+ ._content_1f03i_75 ._copyButton_1f03i_80 {
7192
7154
  position: absolute;
7193
7155
  top: 16px;
7194
7156
  right: 16px;
@@ -7201,7 +7163,7 @@ li ._htmlOl_1snis_205 {
7201
7163
  gap: 5px;
7202
7164
  transition: opacity 0.2s;
7203
7165
  }
7204
- ._content_i851i_68:hover ._copyButton_i851i_73 {
7166
+ ._content_1f03i_75:hover ._copyButton_1f03i_80 {
7205
7167
  display: flex;
7206
7168
  }/*
7207
7169
  * This file contains all CSS variables AppEngine uses for styling the UI, including individual visual components.
@@ -7858,6 +7820,17 @@ li ._htmlOl_1snis_205 {
7858
7820
  /*
7859
7821
  * This function creates a CSS variable name by combining the prefix and the argument variable name
7860
7822
  */
7823
+ /*
7824
+ * This function allows other CSS modules to get the value of the CSS variable specified in $componentVariable.
7825
+ Optionally, you can provide a $fallbackValue to set the variable's value if that is not defined.
7826
+ *//*
7827
+ * This file contains all CSS variables AppEngine uses for styling the UI, including individual visual components.
7828
+ *
7829
+ * We use a subset of these CSS variables in themes.
7830
+ */
7831
+ /*
7832
+ * This function creates a CSS variable name by combining the prefix and the argument variable name
7833
+ */
7861
7834
  /*
7862
7835
  * This function allows other CSS modules to get the value of the CSS variable specified in $componentVariable.
7863
7836
  Optionally, you can provide a $fallbackValue to set the variable's value if that is not defined.