@adaptabletools/adaptable 11.0.0-canary.6 → 11.0.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 (164) hide show
  1. package/README.md +4 -4
  2. package/agGrid.d.ts +5 -4
  3. package/agGrid.js +7 -5
  4. package/base.css +3 -4
  5. package/bundle.cjs.js +120 -115
  6. package/index.css +3 -4
  7. package/package.json +1 -1
  8. package/publishTimestamp.d.ts +1 -1
  9. package/publishTimestamp.js +1 -1
  10. package/src/AdaptableInterfaces/IAdaptable.d.ts +3 -1
  11. package/src/AdaptableOptions/AdaptableOptions.d.ts +3 -5
  12. package/src/AdaptableOptions/{QueryLanguageOptions.d.ts → AdaptableQLOptions.d.ts} +34 -2
  13. package/src/AdaptableOptions/{QueryLanguageOptions.js → AdaptableQLOptions.js} +0 -0
  14. package/src/AdaptableOptions/FilterOptions.d.ts +4 -0
  15. package/src/AdaptableOptions/GeneralOptions.d.ts +0 -7
  16. package/src/AdaptableOptions/SearchOptions.d.ts +0 -9
  17. package/src/AdaptableOptions/SettingsPanelOptions.d.ts +7 -6
  18. package/src/AdaptableOptions/StateOptions.d.ts +7 -7
  19. package/src/AdaptableOptions/ToolPanelOptions.d.ts +2 -2
  20. package/src/Api/CalculatedColumnApi.d.ts +2 -9
  21. package/src/Api/GridApi.d.ts +12 -3
  22. package/src/Api/Implementation/AlertApiImpl.js +1 -2
  23. package/src/Api/Implementation/ApiBase.d.ts +3 -2
  24. package/src/Api/Implementation/ApiBase.js +5 -2
  25. package/src/Api/Implementation/CalculatedColumnApiImpl.js +3 -4
  26. package/src/Api/Implementation/ColumnApiImpl.js +1 -1
  27. package/src/Api/Implementation/GridApiImpl.d.ts +2 -0
  28. package/src/Api/Implementation/GridApiImpl.js +41 -21
  29. package/src/Api/Implementation/InternalApiImpl.d.ts +2 -3
  30. package/src/Api/Implementation/InternalApiImpl.js +5 -4
  31. package/src/Api/Implementation/QueryLanguageApiImpl.d.ts +3 -0
  32. package/src/Api/Implementation/QueryLanguageApiImpl.js +15 -2
  33. package/src/Api/Implementation/SettingsPanelApiImpl.js +1 -1
  34. package/src/Api/Implementation/ToolPanelApiImpl.js +1 -1
  35. package/src/Api/InternalApi.d.ts +2 -3
  36. package/src/Api/QueryApi.d.ts +2 -2
  37. package/src/Api/QueryLanguageApi.d.ts +13 -0
  38. package/src/Api/SettingsPanelApi.d.ts +4 -5
  39. package/src/PredefinedConfig/AlertState.d.ts +5 -1
  40. package/src/PredefinedConfig/CalculatedColumnState.d.ts +8 -3
  41. package/src/PredefinedConfig/Common/AdaptableColumn.d.ts +1 -1
  42. package/src/PredefinedConfig/Common/AdaptableFormat.d.ts +3 -0
  43. package/src/PredefinedConfig/Common/AdaptableQuery.d.ts +0 -1
  44. package/src/PredefinedConfig/Common/AdaptableQuery.js +1 -5
  45. package/src/PredefinedConfig/Common/SpecialColumnSettings.d.ts +1 -1
  46. package/src/PredefinedConfig/Common/Types.d.ts +6 -1
  47. package/src/PredefinedConfig/Common/Types.js +1 -0
  48. package/src/PredefinedConfig/ConditionalStyleState.d.ts +2 -2
  49. package/src/PredefinedConfig/FormatColumnState.d.ts +15 -0
  50. package/src/PredefinedConfig/PlusMinusState.d.ts +1 -1
  51. package/src/PredefinedConfig/Selection/GridCellRange.d.ts +3 -1
  52. package/src/PredefinedConfig/ToolPanelState.d.ts +3 -0
  53. package/src/Redux/ActionsReducers/AlertRedux.d.ts +1 -1
  54. package/src/Redux/ActionsReducers/AlertRedux.js +4 -4
  55. package/src/Redux/ActionsReducers/ConditionalStyleRedux.d.ts +1 -1
  56. package/src/Redux/ActionsReducers/ConditionalStyleRedux.js +4 -4
  57. package/src/Redux/ActionsReducers/CustomSortRedux.d.ts +1 -1
  58. package/src/Redux/ActionsReducers/CustomSortRedux.js +4 -4
  59. package/src/Redux/ActionsReducers/FlashingCellRedux.d.ts +12 -12
  60. package/src/Redux/ActionsReducers/FlashingCellRedux.js +33 -29
  61. package/src/Redux/ActionsReducers/FormatColumnRedux.d.ts +1 -1
  62. package/src/Redux/ActionsReducers/FormatColumnRedux.js +4 -4
  63. package/src/Redux/ActionsReducers/PlusMinusRedux.d.ts +1 -1
  64. package/src/Redux/ActionsReducers/PlusMinusRedux.js +4 -4
  65. package/src/Redux/ActionsReducers/ScheduleRedux.d.ts +5 -5
  66. package/src/Redux/ActionsReducers/ScheduleRedux.js +16 -16
  67. package/src/Redux/ActionsReducers/ShortcutRedux.d.ts +1 -1
  68. package/src/Redux/ActionsReducers/ShortcutRedux.js +4 -4
  69. package/src/Redux/ActionsReducers/SystemRedux.js +1 -1
  70. package/src/Redux/Store/AdaptableReduxMerger.js +1 -1
  71. package/src/Redux/Store/AdaptableStore.js +47 -22
  72. package/src/Strategy/AlertModule.js +4 -4
  73. package/src/Strategy/CalculatedColumnModule.js +4 -4
  74. package/src/Strategy/ChartingModule.d.ts +3 -3
  75. package/src/Strategy/ChartingModule.js +2 -2
  76. package/src/Strategy/FlashingCellModule.js +4 -4
  77. package/src/Strategy/FreeTextColumnModule.js +1 -0
  78. package/src/Strategy/{SetingsPanelModule.d.ts → SettingsPanelModule.d.ts} +0 -0
  79. package/src/Strategy/{SetingsPanelModule.js → SettingsPanelModule.js} +0 -0
  80. package/src/Strategy/Utilities/getAlertPreviewViewItems.js +1 -1
  81. package/src/Strategy/Utilities/getExpressionViewItems.d.ts +2 -2
  82. package/src/Strategy/Utilities/getExpressionViewItems.js +2 -1
  83. package/src/Strategy/Utilities/getRuleViewItems.js +1 -2
  84. package/src/Utilities/Constants/DocumentationLinkConstants.d.ts +3 -2
  85. package/src/Utilities/Constants/DocumentationLinkConstants.js +12 -10
  86. package/src/Utilities/Defaults/DefaultAdaptableOptions.js +18 -13
  87. package/src/Utilities/ExpressionFunctions/aggregatedBooleanExpressionFunctions.js +1 -1
  88. package/src/Utilities/ExpressionFunctions/aggregatedScalarExpressionFunctions.d.ts +18 -1
  89. package/src/Utilities/ExpressionFunctions/aggregatedScalarExpressionFunctions.js +311 -14
  90. package/src/Utilities/ExpressionFunctions/expressionFunctionUtils.d.ts +2 -2
  91. package/src/Utilities/ExpressionFunctions/expressionFunctionUtils.js +8 -8
  92. package/src/Utilities/ExpressionFunctions/groupingMap.d.ts +2 -3
  93. package/src/Utilities/ExpressionFunctions/groupingMap.js +3 -2
  94. package/src/Utilities/ExpressionFunctions/observableExpressionFunctions.js +3 -2
  95. package/src/Utilities/ExpressionFunctions/scalarAggregationHelper.d.ts +33 -0
  96. package/src/Utilities/ExpressionFunctions/scalarAggregationHelper.js +154 -0
  97. package/src/Utilities/Helpers/AdaptableHelper.js +2 -1
  98. package/src/Utilities/Services/AlertService.js +5 -1
  99. package/src/Utilities/Services/CalculatedColumnExpressionService.d.ts +7 -3
  100. package/src/Utilities/Services/CalculatedColumnExpressionService.js +143 -18
  101. package/src/Utilities/Services/Interface/IAdaptableService.d.ts +1 -1
  102. package/src/Utilities/Services/Interface/ICalculatedColumnExpressionService.d.ts +6 -3
  103. package/src/Utilities/Services/Interface/IQueryLanguageService.d.ts +7 -1
  104. package/src/Utilities/Services/LicenseService.js +1 -1
  105. package/src/Utilities/Services/ModuleService.js +33 -40
  106. package/src/Utilities/Services/QueryLanguageService.d.ts +9 -2
  107. package/src/Utilities/Services/QueryLanguageService.js +81 -22
  108. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ConfigurationForm.js +5 -3
  109. package/src/View/Alert/Wizard/AlertDisplayWizardSection.d.ts +1 -0
  110. package/src/View/Alert/Wizard/AlertDisplayWizardSection.js +2 -2
  111. package/src/View/Alert/Wizard/isValidAlertRules.js +3 -3
  112. package/src/View/CalculatedColumn/CalculatedColumnSharedEntity.js +3 -3
  113. package/src/View/CalculatedColumn/CalculatedColumnSummary.js +2 -4
  114. package/src/View/CalculatedColumn/Wizard/CalculatedColumnExpressionWizardSection.js +43 -12
  115. package/src/View/CalculatedColumn/Wizard/CalculatedColumnSettingsWizardSection.js +1 -2
  116. package/src/View/ColorPicker.d.ts +1 -1
  117. package/src/View/Components/AdaptableDateInput/index.d.ts +1 -1
  118. package/src/View/Components/AdaptableInput/index.d.ts +1 -1
  119. package/src/View/Components/Buttons/ButtonDelete.d.ts +1 -1
  120. package/src/View/Components/EntityRulesEditor/index.d.ts +1 -1
  121. package/src/View/Components/EntityRulesEditor/index.js +3 -4
  122. package/src/View/Components/Forms/AdaptableFormControlTextClear.d.ts +1 -1
  123. package/src/View/Components/Panels/PanelWithImage.d.ts +1 -1
  124. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopup.js +4 -8
  125. package/src/View/Components/Popups/AdaptablePopup/useMenuItems.js +1 -2
  126. package/src/View/Components/Popups/AdaptablePopupAlert.d.ts +1 -0
  127. package/src/View/Components/Popups/AdaptablePopupAlert.js +1 -1
  128. package/src/View/Components/ToolPanel/CustomToolPanelContent.js +1 -1
  129. package/src/View/Components/ValueSelector/index.js +1 -1
  130. package/src/View/Dashboard/DashboardPopup.js +1 -1
  131. package/src/View/FlashingCell/Wizard/isValidFlashingCellRules.js +1 -1
  132. package/src/View/Layout/Wizard/LayoutEditor/index.js +1 -1
  133. package/src/View/License/LicenseWatermark.js +1 -1
  134. package/src/View/PlusMinus/Wizard/PlusMinusSettingsWizardSection.d.ts +1 -1
  135. package/src/View/Query/Wizard/NamedQueryExpressionWizardSection.js +2 -2
  136. package/src/View/Schedule/Wizard/ScheduleWizard.js +3 -3
  137. package/src/agGrid/Adaptable.d.ts +4 -1
  138. package/src/agGrid/Adaptable.js +71 -48
  139. package/src/agGrid/CheckboxRenderer.d.ts +8 -1
  140. package/src/agGrid/CheckboxRenderer.js +18 -3
  141. package/src/agGrid/agGridHelper.d.ts +1 -1
  142. package/src/agGrid/agGridHelper.js +9 -10
  143. package/src/components/AdaptableFormComponent/AdaptableFormComponent.d.ts +4 -2
  144. package/src/components/AdaptableFormComponent/AdaptableFormComponent.js +4 -4
  145. package/src/components/Datepicker/index.d.ts +1 -1
  146. package/src/components/ExpressionEditor/EditorInput.d.ts +1 -1
  147. package/src/components/ExpressionEditor/EditorInput.js +5 -2
  148. package/src/components/ExpressionEditor/ExpressionFunctionDocumentation.js +1 -1
  149. package/src/components/ExpressionEditor/editorButtonsAggregatedScalar.d.ts +2 -0
  150. package/src/components/ExpressionEditor/editorButtonsAggregatedScalar.js +45 -0
  151. package/src/components/ExpressionEditor/editorButtonsReactive.js +8 -13
  152. package/src/components/ExpressionEditor/index.d.ts +2 -1
  153. package/src/components/ExpressionEditor/index.js +9 -2
  154. package/src/components/Input/index.d.ts +1 -1
  155. package/src/components/List/ListGroupItem/index.d.ts +1 -1
  156. package/src/components/Logo/index.js +8 -7
  157. package/src/components/PopupWithFooter.d.ts +1 -1
  158. package/src/components/Textarea/index.d.ts +1 -1
  159. package/src/components/icons/calculated-column.js +2 -1
  160. package/src/metamodel/adaptable.metamodel.d.ts +235 -41
  161. package/src/metamodel/adaptable.metamodel.js +435 -149
  162. package/src/types.d.ts +5 -5
  163. package/version.d.ts +1 -1
  164. package/version.js +1 -1
@@ -6,13 +6,16 @@ const BaseEditorInput_1 = require("./BaseEditorInput");
6
6
  const editorButtonsSearch_1 = require("./editorButtonsSearch");
7
7
  const EditorContext_1 = require("./EditorContext");
8
8
  const StringExtensions_1 = tslib_1.__importDefault(require("../../Utilities/Extensions/StringExtensions"));
9
+ const editorButtonsAggregatedScalar_1 = require("./editorButtonsAggregatedScalar");
9
10
  function EditorInput(props) {
10
11
  const moduleExpressionFunctions = props.api.internalApi
11
12
  .getQueryLanguageService()
12
13
  .getModuleExpressionFunctions(props.module);
13
- const booleanAndScalarFunctions = Object.assign(Object.assign({}, moduleExpressionFunctions.booleanFunctions), moduleExpressionFunctions.scalarFunctions);
14
+ const expressionFunctions = props.type === 'aggregatedScalar'
15
+ ? moduleExpressionFunctions.aggregatedScalarFunctions
16
+ : Object.assign(Object.assign({}, moduleExpressionFunctions.booleanFunctions), moduleExpressionFunctions.scalarFunctions);
14
17
  const { setSelectedFunction } = EditorContext_1.useExpressionEditor();
15
18
  const queryName = `${StringExtensions_1.default.CapitaliseFirstLetter(props.type)}Query`;
16
- return (React.createElement(BaseEditorInput_1.BaseEditorInput, { value: props.value, placeholder: `Create ${queryName}`, onChange: props.onChange, onSelectedFunctionChange: setSelectedFunction, expressionFunctions: booleanAndScalarFunctions, editorButtons: editorButtonsSearch_1.editorButtonsSearch, testData: props.testData, isFullExpression: props.isFullExpression, api: props.api }));
19
+ return (React.createElement(BaseEditorInput_1.BaseEditorInput, { value: props.value, placeholder: `Create ${queryName}`, onChange: props.onChange, onSelectedFunctionChange: setSelectedFunction, expressionFunctions: expressionFunctions, editorButtons: props.type === 'aggregatedScalar' ? editorButtonsAggregatedScalar_1.editorButtonsAggregatedScalar : editorButtonsSearch_1.editorButtonsSearch, testData: props.testData, isFullExpression: props.isFullExpression, hideResultPreview: props.type === 'aggregatedScalar', api: props.api }));
17
20
  }
18
21
  exports.default = EditorInput;
@@ -9,7 +9,7 @@ exports.ExpressionFunctionDocumentation = (props) => {
9
9
  background: 'var(--ab-color-primary)',
10
10
  borderRadius: 'var(--ab__border-radius)',
11
11
  } },
12
- props.expressionFunction.description && (React.createElement(rebass_1.Box, { mb: 3, style: { fontWeight: 'bold' }, "data-name": "expression-editor-documentation-description" }, props.expressionFunction.description)),
12
+ props.expressionFunction.description && (React.createElement(rebass_1.Box, { mb: 3, style: { fontWeight: 'bold', whiteSpace: 'pre-wrap' }, "data-name": "expression-editor-documentation-description" }, props.expressionFunction.description)),
13
13
  props.expressionFunction.signatures && (React.createElement(rebass_1.Box, { "data-name": "expression-editor-documentation-signatures" },
14
14
  React.createElement("b", null, "Signatures"),
15
15
  React.createElement("ul", null, props.expressionFunction.signatures.map((signature, index) => (React.createElement("li", { key: index },
@@ -0,0 +1,2 @@
1
+ import { OperatorEditorButton } from './BaseEditorInput';
2
+ export declare const editorButtonsAggregatedScalar: OperatorEditorButton[];
@@ -0,0 +1,45 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.editorButtonsAggregatedScalar = void 0;
4
+ exports.editorButtonsAggregatedScalar = [
5
+ {
6
+ functionName: 'SUM',
7
+ data: 'SUM()',
8
+ text: 'Sum',
9
+ },
10
+ {
11
+ functionName: 'PERCENTAGE',
12
+ data: 'PERCENTAGE()',
13
+ text: 'Percentage',
14
+ },
15
+ {
16
+ functionName: 'AVG',
17
+ data: 'AVG()',
18
+ text: 'Average',
19
+ },
20
+ {
21
+ functionName: 'MIN',
22
+ data: 'MIN()',
23
+ text: 'Min',
24
+ },
25
+ {
26
+ functionName: 'MAX',
27
+ data: 'MAX()',
28
+ text: 'Max',
29
+ },
30
+ {
31
+ functionName: 'GROUP_BY',
32
+ data: 'GROUP_BY()',
33
+ text: 'GroupBy',
34
+ },
35
+ {
36
+ functionName: 'CUMUL',
37
+ data: 'CUMUL()',
38
+ text: 'Cumulate',
39
+ },
40
+ {
41
+ functionName: 'OVER',
42
+ data: 'OVER()',
43
+ text: 'Over',
44
+ },
45
+ ];
@@ -2,15 +2,10 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.editorButtonsReactive = void 0;
4
4
  exports.editorButtonsReactive = [
5
- {
6
- functionName: 'AGGREGATE',
7
- data: 'AGGREGATE()',
8
- text: 'Aggregate',
9
- },
10
5
  {
11
6
  functionName: 'SUM',
12
7
  data: 'SUM()',
13
- text: 'SUM',
8
+ text: 'Sum',
14
9
  },
15
10
  {
16
11
  functionName: 'EQ',
@@ -45,36 +40,36 @@ exports.editorButtonsReactive = [
45
40
  {
46
41
  functionName: 'ROW_CHANGE',
47
42
  data: 'ROW_CHANGE()',
48
- text: 'ROW_CHANGE',
43
+ text: 'RowChange',
49
44
  },
50
45
  {
51
46
  functionName: 'GRID_CHANGE',
52
47
  data: 'GRID_CHANGE()',
53
- text: 'GRID_CHANGE',
48
+ text: 'GridChange',
54
49
  },
55
50
  {
56
51
  functionName: 'COUNT',
57
52
  data: 'COUNT()',
58
- text: 'COUNT',
53
+ text: 'Count',
59
54
  },
60
55
  {
61
56
  functionName: 'NONE',
62
57
  data: 'NONE()',
63
- text: 'NONE',
58
+ text: 'None',
64
59
  },
65
60
  {
66
61
  functionName: 'MIN',
67
62
  data: 'MIN()',
68
- text: 'MIN',
63
+ text: 'Min',
69
64
  },
70
65
  {
71
66
  functionName: 'MAX',
72
67
  data: 'MAX()',
73
- text: 'MAX',
68
+ text: 'Max',
74
69
  },
75
70
  {
76
71
  functionName: 'TIMEFRAME',
77
72
  data: 'TIMEFRAME()',
78
- text: 'TIMEFRAME',
73
+ text: 'Timeframe',
79
74
  },
80
75
  ];
@@ -1,10 +1,11 @@
1
1
  import * as React from 'react';
2
2
  import { AdaptableApi, AdaptableColumn, AdaptableModule } from '../../types';
3
3
  import { NamedQuery } from '../../PredefinedConfig/QueryState';
4
+ declare type ExpressionEditorType = 'boolean' | 'scalar' | 'observable' | 'aggregatedBoolean' | 'aggregatedScalar';
4
5
  interface ExpressionEditorProps {
5
6
  value: string;
6
7
  onChange: (value: string) => void;
7
- type: 'boolean' | 'scalar' | 'observable' | 'aggregatedBoolean';
8
+ type: ExpressionEditorType;
8
9
  module: AdaptableModule;
9
10
  initialData: {
10
11
  [key: string]: any;
@@ -39,7 +39,7 @@ function ExpressionEditor(props) {
39
39
  setExpressionText(value);
40
40
  props.onChange(value);
41
41
  }, testData: data, api: props.api })) : (
42
- // 'boolean' or 'scalar'
42
+ // 'boolean','scalar' or 'aggregatedScalar'
43
43
  React.createElement(EditorInput_1.default, { type: type, module: module, value: props.value, onChange: (value) => {
44
44
  setExpressionText(value);
45
45
  props.onChange(value);
@@ -167,6 +167,12 @@ const renderQueryHints = (type) => {
167
167
  description: "The sum of the 'PnL' column values in all rows where named query 'CurrencyDollar' is evaluated to TRUE is greater than 5 Billions",
168
168
  });
169
169
  }
170
+ if (type === 'aggregatedScalar') {
171
+ examples.push({
172
+ code: 'TODO',
173
+ description: 'TODO',
174
+ });
175
+ }
170
176
  return examples.length ? (React.createElement(rebass_1.Box, { "data-name": "expression-hints", my: 2, p: 2, style: {
171
177
  background: 'var(--ab-color-primary)',
172
178
  borderRadius: 'var(--ab__border-radius)',
@@ -188,5 +194,6 @@ const queryDocumentationLinks = {
188
194
  boolean: DocumentationLinkConstants_1.BooleanQueryDocsLink,
189
195
  scalar: DocumentationLinkConstants_1.ScalarQueryDocsLink,
190
196
  observable: DocumentationLinkConstants_1.ObservableQueryDocsLink,
191
- aggregatedBoolean: DocumentationLinkConstants_1.AggregationQueryDocsLink,
197
+ aggregatedBoolean: DocumentationLinkConstants_1.AggregatedBooleanQueryDocsLink,
198
+ aggregatedScalar: DocumentationLinkConstants_1.AggregatedScalarQueryDocsLink,
192
199
  };
@@ -8,5 +8,5 @@ export declare type InputProps = HTMLProps<HTMLInputElement> & {
8
8
  disabled?: boolean;
9
9
  list?: any;
10
10
  } & BoxProps;
11
- declare const Input: React.ForwardRefExoticComponent<Pick<InputProps, "max" | "required" | "default" | "high" | "low" | "disabled" | "start" | "open" | "media" | "hidden" | "cite" | "data" | "dir" | "form" | "label" | "p" | "slot" | "span" | "style" | "summary" | "title" | "pattern" | "async" | "defer" | "manifest" | "m" | "color" | "content" | "size" | "flex" | "wrap" | "padding" | "multiple" | "alignSelf" | "backgroundColor" | "fontSize" | "height" | "marginBottom" | "marginLeft" | "marginRight" | "marginTop" | "opacity" | "order" | "paddingBottom" | "paddingLeft" | "paddingRight" | "paddingTop" | "translate" | "width" | "margin" | "children" | "key" | "list" | "step" | "contextMenu" | "type" | "min" | "rows" | "download" | "value" | "checked" | "onClick" | "colSpan" | "rowSpan" | "name" | "className" | "id" | "lang" | "method" | "target" | "role" | "tabIndex" | "crossOrigin" | "href" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "classID" | "useMap" | "wmode" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "draggable" | "placeholder" | "spellCheck" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "as" | "hrefLang" | "integrity" | "rel" | "sizes" | "charSet" | "kind" | "src" | "srcLang" | "alt" | "coords" | "shape" | "autoPlay" | "controls" | "loop" | "mediaGroup" | "muted" | "playsInline" | "preload" | "autoFocus" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "dateTime" | "acceptCharset" | "action" | "autoComplete" | "encType" | "noValidate" | "allowFullScreen" | "allowTransparency" | "frameBorder" | "marginHeight" | "marginWidth" | "sandbox" | "scrolling" | "seamless" | "srcDoc" | "srcSet" | "accept" | "capture" | "maxLength" | "minLength" | "readOnly" | "htmlFor" | "httpEquiv" | "optimum" | "reversed" | "selected" | "nonce" | "scoped" | "cellPadding" | "cellSpacing" | "headers" | "scope" | "cols" | "poster" | "challenge" | "keyType" | "keyParams" | "mt" | "mb" | "ml" | "mr" | "my" | "marginY" | "mx" | "marginX" | "pt" | "pr" | "pb" | "pl" | "px" | "paddingX" | "py" | "paddingY" | "css" | "bg" | "placehoder"> & React.RefAttributes<HTMLInputElement>>;
11
+ declare const Input: React.ForwardRefExoticComponent<Pick<InputProps, "max" | "required" | "default" | "high" | "low" | "disabled" | "start" | "open" | "media" | "hidden" | "cite" | "data" | "dir" | "form" | "label" | "p" | "slot" | "span" | "style" | "summary" | "title" | "pattern" | "async" | "defer" | "manifest" | "m" | "color" | "content" | "size" | "flex" | "wrap" | "padding" | "multiple" | "alignSelf" | "backgroundColor" | "fontSize" | "height" | "marginBottom" | "marginLeft" | "marginRight" | "marginTop" | "opacity" | "order" | "paddingBottom" | "paddingLeft" | "paddingRight" | "paddingTop" | "translate" | "width" | "margin" | "children" | "key" | "list" | "step" | "contextMenu" | "type" | "min" | "rows" | "download" | "value" | "checked" | "onClick" | "name" | "colSpan" | "rowSpan" | "className" | "id" | "lang" | "method" | "target" | "role" | "tabIndex" | "crossOrigin" | "href" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "classID" | "useMap" | "wmode" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "draggable" | "placeholder" | "spellCheck" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "as" | "hrefLang" | "integrity" | "rel" | "sizes" | "charSet" | "kind" | "src" | "srcLang" | "alt" | "coords" | "shape" | "autoPlay" | "controls" | "loop" | "mediaGroup" | "muted" | "playsInline" | "preload" | "autoFocus" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "dateTime" | "acceptCharset" | "action" | "autoComplete" | "encType" | "noValidate" | "allowFullScreen" | "allowTransparency" | "frameBorder" | "marginHeight" | "marginWidth" | "sandbox" | "scrolling" | "seamless" | "srcDoc" | "srcSet" | "accept" | "capture" | "maxLength" | "minLength" | "readOnly" | "htmlFor" | "httpEquiv" | "optimum" | "reversed" | "selected" | "nonce" | "scoped" | "cellPadding" | "cellSpacing" | "headers" | "scope" | "cols" | "poster" | "challenge" | "keyType" | "keyParams" | "mt" | "mb" | "ml" | "mr" | "my" | "marginY" | "mx" | "marginX" | "pt" | "pr" | "pb" | "pl" | "px" | "paddingX" | "py" | "paddingY" | "css" | "bg" | "placehoder"> & React.RefAttributes<HTMLInputElement>>;
12
12
  export default Input;
@@ -8,5 +8,5 @@ declare type TypeProps = HTMLProps<HTMLElement> & {
8
8
  index?: number;
9
9
  selectionId?: string | number;
10
10
  };
11
- declare const ListGroupItem: React.ForwardRefExoticComponent<Pick<TypeProps, "max" | "required" | "default" | "high" | "low" | "active" | "disabled" | "start" | "open" | "media" | "hidden" | "cite" | "data" | "dir" | "form" | "label" | "slot" | "span" | "style" | "summary" | "title" | "pattern" | "async" | "defer" | "manifest" | "color" | "content" | "size" | "wrap" | "multiple" | "height" | "translate" | "width" | "children" | "key" | "list" | "step" | "contextMenu" | "type" | "min" | "rows" | "download" | "value" | "checked" | "onClick" | "colSpan" | "rowSpan" | "name" | "className" | "id" | "lang" | "method" | "target" | "role" | "tabIndex" | "crossOrigin" | "href" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "classID" | "useMap" | "wmode" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "draggable" | "placeholder" | "spellCheck" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "as" | "hrefLang" | "integrity" | "rel" | "sizes" | "charSet" | "kind" | "src" | "srcLang" | "alt" | "coords" | "shape" | "autoPlay" | "controls" | "loop" | "mediaGroup" | "muted" | "playsInline" | "preload" | "autoFocus" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "dateTime" | "acceptCharset" | "action" | "autoComplete" | "encType" | "noValidate" | "allowFullScreen" | "allowTransparency" | "frameBorder" | "marginHeight" | "marginWidth" | "sandbox" | "scrolling" | "seamless" | "srcDoc" | "srcSet" | "accept" | "capture" | "maxLength" | "minLength" | "readOnly" | "htmlFor" | "httpEquiv" | "optimum" | "reversed" | "selected" | "nonce" | "scoped" | "cellPadding" | "cellSpacing" | "headers" | "scope" | "cols" | "poster" | "challenge" | "keyType" | "keyParams" | "index" | "factory" | "noZebra" | "selectionId"> & React.RefAttributes<unknown>>;
11
+ declare const ListGroupItem: React.ForwardRefExoticComponent<Pick<TypeProps, "max" | "required" | "default" | "high" | "low" | "active" | "disabled" | "start" | "open" | "media" | "hidden" | "cite" | "data" | "dir" | "form" | "label" | "slot" | "span" | "style" | "summary" | "title" | "pattern" | "async" | "defer" | "manifest" | "color" | "content" | "size" | "wrap" | "multiple" | "height" | "translate" | "width" | "children" | "key" | "list" | "step" | "contextMenu" | "type" | "min" | "rows" | "download" | "value" | "checked" | "onClick" | "name" | "colSpan" | "rowSpan" | "className" | "id" | "lang" | "method" | "target" | "role" | "tabIndex" | "crossOrigin" | "href" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "classID" | "useMap" | "wmode" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "draggable" | "placeholder" | "spellCheck" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "as" | "hrefLang" | "integrity" | "rel" | "sizes" | "charSet" | "kind" | "src" | "srcLang" | "alt" | "coords" | "shape" | "autoPlay" | "controls" | "loop" | "mediaGroup" | "muted" | "playsInline" | "preload" | "autoFocus" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "dateTime" | "acceptCharset" | "action" | "autoComplete" | "encType" | "noValidate" | "allowFullScreen" | "allowTransparency" | "frameBorder" | "marginHeight" | "marginWidth" | "sandbox" | "scrolling" | "seamless" | "srcDoc" | "srcSet" | "accept" | "capture" | "maxLength" | "minLength" | "readOnly" | "htmlFor" | "httpEquiv" | "optimum" | "reversed" | "selected" | "nonce" | "scoped" | "cellPadding" | "cellSpacing" | "headers" | "scope" | "cols" | "poster" | "challenge" | "keyType" | "keyParams" | "index" | "factory" | "noZebra" | "selectionId"> & React.RefAttributes<unknown>>;
12
12
  export default ListGroupItem;
@@ -3,10 +3,11 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.Logo = void 0;
4
4
  const tslib_1 = require("tslib");
5
5
  const React = tslib_1.__importStar(require("react"));
6
- exports.Logo = (props) => (React.createElement("svg", { id: "svg", version: "1.1", viewBox: "0, 0, 400,110.53351573187415", style: props.style },
7
- React.createElement("g", { id: "svgg" },
8
- React.createElement("path", { id: "path0", d: "M215.083 56.072 L 215.083 104.810 218.616 104.827 C 220.559 104.836,222.340 104.796,222.574 104.737 L 223.000 104.631 223.000 65.315 L 223.000 26.000 308.292 25.997 C 355.202 25.996,393.672 25.938,393.781 25.869 C 393.890 25.800,394.059 25.534,394.156 25.277 C 394.397 24.644,394.401 8.105,394.161 7.656 C 393.991 7.338,392.804 7.333,304.536 7.333 L 215.083 7.333 215.083 56.072 ", stroke: "none", fill: "#0c6c9c", fillRule: "evenodd" }),
9
- React.createElement("path", { id: "path1", d: "M73.669 16.564 L 73.661 25.793 74.039 25.894 C 74.247 25.950,104.398 25.996,141.042 25.998 C 182.560 25.999,207.667 26.059,207.667 26.157 C 207.667 26.243,207.592 26.360,207.500 26.417 C 207.221 26.589,207.285 104.172,207.564 104.540 C 207.762 104.801,208.153 104.828,211.517 104.812 L 215.250 104.794 215.167 56.105 L 215.083 7.417 144.380 7.376 L 73.677 7.334 73.669 16.564 ", stroke: "none", fill: "#137cc2", fillRule: "evenodd" }),
10
- React.createElement("path", { id: "path2", d: "M31.500 6.167 C 31.500 6.274,33.444 6.333,37.000 6.333 C 40.556 6.333,42.500 6.274,42.500 6.167 C 42.500 6.059,40.556 6.000,37.000 6.000 C 33.444 6.000,31.500 6.059,31.500 6.167 M73.003 66.968 C 73.001 90.850,73.056 102.819,73.167 102.750 C 73.393 102.610,73.393 31.683,73.167 31.333 C 73.062 31.172,73.004 43.739,73.003 66.968 M73.582 67.000 C 73.582 86.571,73.601 94.577,73.625 84.792 C 73.649 75.006,73.649 58.994,73.625 49.208 C 73.601 39.423,73.582 47.429,73.582 67.000 M179.746 55.000 C 179.746 61.371,179.766 63.977,179.792 60.792 C 179.817 57.606,179.817 52.394,179.792 49.208 C 179.766 46.023,179.746 48.629,179.746 55.000 M82.581 66.750 C 82.581 79.308,82.601 84.421,82.625 78.112 C 82.649 71.803,82.649 61.528,82.625 55.279 C 82.601 49.030,82.581 54.192,82.581 66.750 M375.125 59.958 C 377.623 59.984,381.710 59.984,384.208 59.958 C 386.706 59.932,384.662 59.911,379.667 59.911 C 374.671 59.911,372.627 59.932,375.125 59.958 M289.292 60.458 C 290.598 60.486,292.735 60.486,294.042 60.458 C 295.348 60.430,294.279 60.407,291.667 60.407 C 289.054 60.407,287.985 60.430,289.292 60.458 M144.709 62.083 C 144.711 62.450,144.745 62.580,144.785 62.373 C 144.824 62.166,144.823 61.866,144.781 61.706 C 144.739 61.547,144.707 61.717,144.709 62.083 M106.050 62.333 C 106.090 62.828,106.409 62.897,106.433 62.417 L 106.449 62.083 106.366 62.417 C 106.290 62.721,106.271 62.713,106.149 62.333 L 106.016 61.917 106.050 62.333 M25.500 66.333 C 25.500 66.443,29.364 66.500,36.760 66.500 C 44.224 66.500,47.985 66.444,47.917 66.333 C 47.850 66.225,43.915 66.167,36.657 66.167 C 29.330 66.167,25.500 66.224,25.500 66.333 M123.372 78.167 C 123.372 78.487,123.406 78.619,123.448 78.458 C 123.490 78.298,123.490 78.035,123.448 77.875 C 123.406 77.715,123.372 77.846,123.372 78.167 M187.627 78.118 C 187.834 78.158,188.134 78.156,188.294 78.115 C 188.453 78.073,188.283 78.040,187.917 78.042 C 187.550 78.044,187.420 78.078,187.627 78.118 M179.627 90.583 C 179.603 97.229,179.640 102.667,179.708 102.667 C 179.777 102.667,179.833 97.229,179.833 90.583 C 179.833 83.938,179.797 78.500,179.752 78.500 C 179.708 78.500,179.651 83.938,179.627 90.583 M243.137 85.958 C 245.825 85.984,250.175 85.984,252.804 85.958 C 255.432 85.932,253.233 85.911,247.917 85.911 C 242.600 85.911,240.449 85.933,243.137 85.958 M135.804 86.292 C 138.491 86.317,142.841 86.317,145.470 86.292 C 148.099 86.266,145.900 86.245,140.583 86.245 C 135.267 86.245,133.116 86.266,135.804 86.292 M119.539 93.833 C 119.539 94.154,119.573 94.285,119.615 94.125 C 119.657 93.965,119.657 93.702,119.615 93.542 C 119.573 93.381,119.539 93.513,119.539 93.833 M152.336 95.542 C 152.338 95.910,152.384 96.011,152.482 95.857 C 152.613 95.650,152.549 95.000,152.397 95.000 C 152.362 95.000,152.334 95.244,152.336 95.542 M57.705 101.667 C 57.705 101.987,57.740 102.119,57.782 101.958 C 57.823 101.798,57.823 101.535,57.782 101.375 C 57.740 101.215,57.705 101.346,57.705 101.667 ", stroke: "none", fill: "#242424", fillRule: "evenodd" }),
11
- React.createElement("path", { id: "path3", d: "M30.708 5.784 C 30.386 5.846,30.333 5.961,30.333 6.600 C 30.333 7.107,30.254 7.374,30.083 7.440 C 29.901 7.510,29.833 7.797,29.833 8.500 C 29.833 9.203,29.766 9.490,29.583 9.560 C 29.396 9.632,29.333 9.931,29.333 10.745 C 29.333 11.733,29.302 11.833,28.990 11.833 C 28.678 11.833,28.656 11.902,28.756 12.567 C 28.854 13.216,28.826 13.313,28.516 13.411 C 28.209 13.509,28.167 13.652,28.167 14.595 C 28.167 15.436,28.113 15.667,27.917 15.667 C 27.732 15.667,27.667 15.859,27.667 16.399 C 27.667 16.896,27.586 17.162,27.417 17.227 C 27.230 17.299,27.167 17.598,27.167 18.411 C 27.167 19.389,27.133 19.500,26.833 19.500 C 26.549 19.500,26.500 19.611,26.500 20.255 C 26.500 20.773,26.421 21.041,26.250 21.106 C 26.064 21.178,26.000 21.474,26.000 22.268 C 26.000 23.104,25.946 23.333,25.750 23.333 C 25.569 23.333,25.500 23.519,25.500 24.000 C 25.500 24.455,25.389 24.778,25.150 25.017 C 24.846 25.321,24.814 25.487,24.912 26.267 C 25.016 27.102,24.999 27.167,24.679 27.167 C 24.365 27.167,24.333 27.265,24.333 28.250 C 24.333 29.102,24.280 29.333,24.083 29.333 C 23.894 29.333,23.833 29.537,23.833 30.167 C 23.833 30.796,23.772 31.000,23.583 31.000 C 23.387 31.000,23.333 31.231,23.333 32.083 C 23.333 33.056,23.299 33.167,23.000 33.167 C 22.711 33.167,22.667 33.278,22.667 34.000 C 22.667 34.630,22.606 34.833,22.417 34.833 C 22.220 34.833,22.167 35.065,22.167 35.917 C 22.167 36.769,22.113 37.000,21.917 37.000 C 21.728 37.000,21.667 37.204,21.667 37.833 C 21.667 38.434,21.602 38.667,21.435 38.667 C 21.122 38.667,20.971 39.346,21.102 40.164 C 21.199 40.769,21.175 40.833,20.855 40.833 C 20.529 40.833,20.500 40.923,20.500 41.917 C 20.500 42.769,20.447 43.000,20.250 43.000 C 20.061 43.000,20.000 43.204,20.000 43.833 C 20.000 44.463,19.939 44.667,19.750 44.667 C 19.553 44.667,19.500 44.898,19.500 45.750 C 19.500 46.722,19.466 46.833,19.167 46.833 C 18.878 46.833,18.833 46.944,18.833 47.667 C 18.833 48.296,18.772 48.500,18.583 48.500 C 18.387 48.500,18.333 48.731,18.333 49.583 C 18.333 50.435,18.280 50.667,18.083 50.667 C 17.894 50.667,17.833 50.870,17.833 51.500 C 17.833 52.118,17.771 52.333,17.591 52.333 C 17.290 52.333,17.093 53.283,17.247 53.987 C 17.345 54.432,17.314 54.500,17.013 54.500 C 16.698 54.500,16.667 54.597,16.667 55.583 C 16.667 56.435,16.613 56.667,16.417 56.667 C 16.228 56.667,16.167 56.870,16.167 57.500 C 16.167 58.130,16.106 58.333,15.917 58.333 C 15.720 58.333,15.667 58.565,15.667 59.417 C 15.667 60.389,15.632 60.500,15.333 60.500 C 15.044 60.500,15.000 60.611,15.000 61.333 C 15.000 61.982,14.942 62.167,14.736 62.167 C 14.516 62.167,14.482 62.355,14.528 63.307 C 14.577 64.326,14.552 64.440,14.292 64.371 C 14.042 64.305,14.000 64.417,14.000 65.147 C 14.000 65.782,13.938 66.000,13.758 66.000 C 13.475 66.000,13.260 66.924,13.369 67.668 C 13.428 68.067,13.381 68.167,13.138 68.167 C 12.884 68.167,12.833 68.304,12.833 69.000 C 12.833 69.630,12.772 69.833,12.583 69.833 C 12.387 69.833,12.333 70.065,12.333 70.917 C 12.333 71.769,12.280 72.000,12.083 72.000 C 11.887 72.000,11.833 72.231,11.833 73.083 C 11.833 74.075,11.804 74.167,11.481 74.167 C 11.202 74.167,11.147 74.242,11.221 74.525 C 11.358 75.046,11.162 75.833,10.896 75.833 C 10.725 75.833,10.667 76.109,10.667 76.917 C 10.667 77.769,10.613 78.000,10.417 78.000 C 10.228 78.000,10.167 78.204,10.167 78.833 C 10.167 79.429,10.101 79.667,9.938 79.667 C 9.691 79.667,9.500 80.366,9.500 81.271 C 9.500 81.660,9.423 81.833,9.250 81.833 C 9.061 81.833,9.000 82.037,9.000 82.667 C 9.000 83.296,8.939 83.500,8.750 83.500 C 8.553 83.500,8.500 83.731,8.500 84.583 C 8.500 85.435,8.447 85.667,8.250 85.667 C 8.053 85.667,8.000 85.898,8.000 86.750 C 8.000 87.741,7.970 87.833,7.649 87.833 C 7.357 87.833,7.315 87.904,7.402 88.250 C 7.541 88.805,7.354 89.500,7.065 89.500 C 6.891 89.500,6.833 89.769,6.833 90.583 C 6.833 91.435,6.780 91.667,6.583 91.667 C 6.394 91.667,6.333 91.870,6.333 92.500 C 6.333 93.094,6.268 93.333,6.105 93.333 C 5.877 93.333,5.672 94.135,5.669 95.042 C 5.667 95.337,5.578 95.500,5.417 95.500 C 5.228 95.500,5.167 95.704,5.167 96.333 C 5.167 96.963,5.106 97.167,4.917 97.167 C 4.720 97.167,4.667 97.398,4.667 98.250 C 4.667 99.102,4.613 99.333,4.417 99.333 C 4.220 99.333,4.167 99.565,4.167 100.417 C 4.167 101.380,4.131 101.500,3.841 101.500 C 3.558 101.500,3.522 101.602,3.562 102.292 L 3.608 103.083 9.596 103.083 L 15.583 103.083 15.636 102.542 C 15.668 102.206,15.779 102.000,15.927 102.000 C 16.111 102.000,16.167 101.747,16.167 100.917 C 16.167 100.065,16.220 99.833,16.417 99.833 C 16.606 99.833,16.667 99.630,16.667 99.000 C 16.667 98.370,16.728 98.167,16.917 98.167 C 17.113 98.167,17.167 97.937,17.167 97.103 C 17.167 96.179,17.211 96.027,17.500 95.952 C 17.787 95.877,17.833 95.724,17.833 94.849 C 17.833 94.057,17.888 93.833,18.083 93.833 C 18.272 93.833,18.333 93.630,18.333 93.000 C 18.333 92.370,18.394 92.167,18.583 92.167 C 18.779 92.167,18.833 91.937,18.833 91.103 C 18.833 90.179,18.877 90.027,19.167 89.952 C 19.454 89.877,19.500 89.724,19.500 88.849 C 19.500 88.057,19.555 87.833,19.750 87.833 C 19.939 87.833,20.000 87.630,20.000 87.000 C 20.000 86.370,20.061 86.167,20.250 86.167 C 20.447 86.167,20.500 85.935,20.500 85.083 C 20.500 84.231,20.553 84.000,20.750 84.000 C 20.939 84.000,21.000 83.796,21.000 83.167 C 21.000 82.565,21.065 82.333,21.232 82.333 C 21.523 82.333,21.667 81.971,21.667 81.236 L 21.667 80.667 36.833 80.667 C 45.175 80.667,52.056 80.666,52.125 80.665 C 52.194 80.664,52.272 81.152,52.299 81.748 C 52.336 82.564,52.409 82.833,52.591 82.833 C 52.778 82.833,52.833 83.080,52.833 83.917 C 52.833 84.769,52.887 85.000,53.083 85.000 C 53.280 85.000,53.333 85.231,53.333 86.083 C 53.333 86.924,53.388 87.167,53.577 87.167 C 53.712 87.167,53.902 87.317,54.000 87.500 C 54.121 87.726,54.123 87.833,54.006 87.833 C 53.671 87.833,53.816 88.693,54.167 88.785 C 54.456 88.861,54.500 89.012,54.500 89.936 C 54.500 90.771,54.554 91.000,54.750 91.000 C 54.947 91.000,55.000 91.231,55.000 92.083 C 55.000 92.935,55.053 93.167,55.250 93.167 C 55.439 93.167,55.500 93.370,55.500 94.000 C 55.500 94.722,55.544 94.833,55.833 94.833 C 56.133 94.833,56.167 94.944,56.167 95.922 C 56.167 96.736,56.230 97.035,56.417 97.106 C 56.600 97.177,56.667 97.466,56.667 98.190 C 56.667 98.914,56.733 99.203,56.917 99.273 C 57.086 99.338,57.167 99.603,57.167 100.095 C 57.167 100.657,57.244 100.863,57.508 101.005 C 57.802 101.162,57.843 101.321,57.800 102.135 L 57.750 103.083 64.000 103.083 L 70.250 103.083 70.301 102.373 C 70.339 101.851,70.284 101.637,70.093 101.564 C 69.911 101.494,69.833 101.240,69.833 100.717 C 69.833 100.109,69.771 99.952,69.500 99.882 C 69.211 99.806,69.167 99.654,69.167 98.731 C 69.167 97.896,69.113 97.667,68.917 97.667 C 68.728 97.667,68.667 97.463,68.667 96.833 C 68.667 96.204,68.606 96.000,68.417 96.000 C 68.222 96.000,68.167 95.776,68.167 94.984 C 68.167 94.109,68.121 93.957,67.833 93.882 C 67.557 93.809,67.500 93.654,67.500 92.981 C 67.500 92.368,67.438 92.167,67.250 92.167 C 67.053 92.167,67.000 91.935,67.000 91.083 C 67.000 90.231,66.947 90.000,66.750 90.000 C 66.555 90.000,66.500 89.777,66.500 88.995 C 66.500 88.255,66.434 87.964,66.250 87.894 C 66.079 87.828,66.000 87.561,66.000 87.050 C 66.000 86.442,65.938 86.286,65.667 86.215 C 65.377 86.139,65.333 85.988,65.333 85.064 C 65.333 84.229,65.279 84.000,65.083 84.000 C 64.894 84.000,64.833 83.796,64.833 83.167 C 64.833 82.537,64.772 82.333,64.583 82.333 C 64.387 82.333,64.333 82.102,64.333 81.250 C 64.333 80.278,64.299 80.167,64.000 80.167 C 63.701 80.167,63.667 80.056,63.667 79.083 C 63.667 78.231,63.613 78.000,63.417 78.000 C 63.227 78.000,63.167 77.794,63.167 77.147 C 63.167 76.417,63.125 76.305,62.875 76.371 C 62.616 76.439,62.590 76.330,62.639 75.391 C 62.684 74.545,62.642 74.314,62.431 74.232 C 62.240 74.159,62.167 73.906,62.167 73.316 C 62.167 72.611,62.121 72.500,61.833 72.500 C 61.534 72.500,61.500 72.389,61.500 71.417 C 61.500 70.565,61.447 70.333,61.250 70.333 C 61.061 70.333,61.000 70.130,61.000 69.500 C 61.000 68.870,60.939 68.667,60.750 68.667 C 60.553 68.667,60.500 68.435,60.500 67.583 C 60.500 66.731,60.447 66.500,60.250 66.500 C 60.027 66.500,59.901 66.053,59.992 65.589 C 60.074 65.172,59.796 64.333,59.576 64.333 C 59.396 64.333,59.333 64.118,59.333 63.500 C 59.333 62.870,59.272 62.667,59.083 62.667 C 58.887 62.667,58.833 62.435,58.833 61.583 C 58.833 60.731,58.780 60.500,58.583 60.500 C 58.394 60.500,58.333 60.296,58.333 59.667 C 58.333 58.944,58.289 58.833,58.000 58.833 C 57.701 58.833,57.667 58.722,57.667 57.750 C 57.667 56.898,57.613 56.667,57.417 56.667 C 57.228 56.667,57.167 56.463,57.167 55.833 C 57.167 55.204,57.106 55.000,56.917 55.000 C 56.720 55.000,56.667 54.769,56.667 53.917 C 56.667 53.065,56.613 52.833,56.417 52.833 C 56.194 52.833,56.067 52.387,56.159 51.923 C 56.241 51.506,55.963 50.667,55.742 50.667 C 55.563 50.667,55.500 50.451,55.500 49.833 C 55.500 49.204,55.439 49.000,55.250 49.000 C 55.053 49.000,55.000 48.769,55.000 47.917 C 55.000 47.065,54.947 46.833,54.750 46.833 C 54.561 46.833,54.500 46.630,54.500 46.000 C 54.500 45.278,54.456 45.167,54.167 45.167 C 53.816 45.167,53.769 44.949,53.830 43.625 C 53.852 43.155,53.794 43.000,53.596 43.000 C 53.392 43.000,53.333 42.814,53.333 42.167 C 53.333 41.537,53.272 41.333,53.083 41.333 C 52.887 41.333,52.833 41.102,52.833 40.250 C 52.833 39.398,52.780 39.167,52.583 39.167 C 52.401 39.167,52.333 38.976,52.331 38.458 C 52.328 37.509,52.177 37.000,51.897 37.000 C 51.732 37.000,51.667 36.765,51.667 36.167 C 51.667 35.537,51.606 35.333,51.417 35.333 C 51.220 35.333,51.167 35.102,51.167 34.250 C 51.167 33.398,51.113 33.167,50.917 33.167 C 50.728 33.167,50.667 32.963,50.667 32.333 C 50.667 31.611,50.622 31.500,50.333 31.500 C 50.035 31.500,50.000 31.389,50.000 30.429 C 50.000 29.557,49.948 29.348,49.719 29.304 C 49.486 29.259,49.446 29.073,49.481 28.208 C 49.516 27.355,49.476 27.167,49.262 27.167 C 49.059 27.167,49.000 26.980,49.000 26.333 C 49.000 25.704,48.939 25.500,48.750 25.500 C 48.567 25.500,48.499 25.309,48.498 24.792 C 48.495 23.842,48.343 23.333,48.064 23.333 C 47.898 23.333,47.833 23.098,47.833 22.500 C 47.833 21.870,47.772 21.667,47.583 21.667 C 47.387 21.667,47.333 21.435,47.333 20.583 C 47.333 19.731,47.280 19.500,47.083 19.500 C 46.894 19.500,46.833 19.296,46.833 18.667 C 46.833 17.944,46.789 17.833,46.500 17.833 C 46.201 17.833,46.167 17.722,46.167 16.750 C 46.167 15.898,46.113 15.667,45.917 15.667 C 45.720 15.667,45.667 15.435,45.667 14.583 C 45.667 13.731,45.613 13.500,45.417 13.500 C 45.228 13.500,45.167 13.296,45.167 12.667 C 45.167 12.037,45.106 11.833,44.917 11.833 C 44.734 11.833,44.666 11.643,44.664 11.125 C 44.661 10.176,44.510 9.667,44.231 9.667 C 44.065 9.667,44.000 9.432,44.000 8.833 C 44.000 8.204,43.939 8.000,43.750 8.000 C 43.554 8.000,43.500 7.771,43.500 6.938 C 43.500 5.881,43.497 5.874,42.979 5.771 C 42.406 5.656,31.310 5.668,30.708 5.784 M42.500 6.167 C 42.500 6.274,40.556 6.333,37.000 6.333 C 33.444 6.333,31.500 6.274,31.500 6.167 C 31.500 6.059,33.444 6.000,37.000 6.000 C 40.556 6.000,42.500 6.059,42.500 6.167 M260.042 7.292 C 284.494 7.315,324.506 7.315,348.958 7.292 C 373.410 7.268,353.404 7.249,304.500 7.249 C 255.596 7.249,235.590 7.268,260.042 7.292 M37.260 27.000 C 37.437 27.000,37.500 27.218,37.500 27.833 C 37.500 28.463,37.561 28.667,37.750 28.667 C 37.947 28.667,38.000 28.898,38.000 29.750 C 38.000 30.602,38.053 30.833,38.250 30.833 C 38.436 30.833,38.500 31.030,38.500 31.599 C 38.500 32.224,38.561 32.380,38.833 32.452 C 39.123 32.527,39.167 32.679,39.167 33.603 C 39.167 34.437,39.221 34.667,39.417 34.667 C 39.612 34.667,39.667 34.891,39.667 35.690 C 39.667 36.467,39.736 36.764,39.955 36.924 C 40.146 37.064,40.242 37.363,40.242 37.817 C 40.242 38.360,40.303 38.500,40.538 38.500 C 40.791 38.500,40.833 38.658,40.833 39.589 C 40.833 40.402,40.896 40.701,41.083 40.773 C 41.267 40.843,41.333 41.132,41.333 41.856 C 41.333 42.580,41.400 42.869,41.583 42.940 C 41.753 43.005,41.833 43.271,41.833 43.768 C 41.833 44.308,41.899 44.500,42.083 44.500 C 42.270 44.500,42.334 44.700,42.336 45.292 C 42.339 46.321,42.483 46.833,42.769 46.833 C 42.942 46.833,43.000 47.105,43.000 47.917 C 43.000 48.769,43.053 49.000,43.250 49.000 C 43.436 49.000,43.500 49.196,43.500 49.766 C 43.500 50.390,43.561 50.547,43.832 50.618 C 44.086 50.685,44.140 50.797,44.064 51.102 C 44.004 51.338,44.037 51.500,44.144 51.500 C 44.271 51.500,44.275 51.632,44.156 51.945 C 43.955 52.474,44.058 52.833,44.411 52.833 C 44.612 52.833,44.667 53.047,44.667 53.839 C 44.667 54.578,44.733 54.869,44.917 54.940 C 45.092 55.007,45.167 55.280,45.167 55.851 C 45.167 56.465,45.229 56.667,45.417 56.667 C 45.613 56.667,45.667 56.898,45.667 57.750 C 45.667 58.736,45.698 58.833,46.013 58.833 C 46.309 58.833,46.344 58.904,46.253 59.319 C 46.106 59.987,46.317 61.000,46.602 61.000 C 46.769 61.000,46.833 61.233,46.833 61.833 C 46.833 62.463,46.894 62.667,47.083 62.667 C 47.280 62.667,47.333 62.898,47.333 63.750 C 47.333 64.602,47.387 64.833,47.583 64.833 C 47.758 64.833,47.833 65.009,47.833 65.417 L 47.833 66.000 36.875 66.000 L 25.917 66.001 25.972 64.834 C 26.013 63.963,26.087 63.667,26.264 63.667 C 26.436 63.667,26.500 63.442,26.500 62.833 C 26.500 62.235,26.565 62.000,26.731 62.000 C 27.010 62.000,27.161 61.491,27.164 60.542 C 27.166 60.024,27.234 59.833,27.417 59.833 C 27.613 59.833,27.667 59.602,27.667 58.750 C 27.667 57.898,27.720 57.667,27.917 57.667 C 28.106 57.667,28.167 57.463,28.167 56.833 C 28.167 56.204,28.228 56.000,28.417 56.000 C 28.613 56.000,28.667 55.771,28.667 54.936 C 28.667 54.012,28.711 53.861,29.000 53.785 C 29.287 53.710,29.333 53.558,29.333 52.682 C 29.333 51.891,29.388 51.667,29.583 51.667 C 29.780 51.667,29.833 51.435,29.833 50.583 C 29.833 49.731,29.887 49.500,30.083 49.500 C 30.272 49.500,30.333 49.296,30.333 48.667 C 30.333 48.037,30.394 47.833,30.583 47.833 C 30.779 47.833,30.833 47.604,30.833 46.769 C 30.833 45.846,30.877 45.694,31.167 45.618 C 31.454 45.543,31.500 45.391,31.500 44.516 C 31.500 43.724,31.555 43.500,31.750 43.500 C 31.939 43.500,32.000 43.296,32.000 42.667 C 32.000 42.037,32.061 41.833,32.250 41.833 C 32.446 41.833,32.500 41.604,32.500 40.769 C 32.500 39.846,32.544 39.694,32.833 39.618 C 33.121 39.543,33.167 39.391,33.167 38.516 C 33.167 37.724,33.222 37.500,33.417 37.500 C 33.606 37.500,33.667 37.296,33.667 36.667 C 33.667 36.037,33.728 35.833,33.917 35.833 C 34.113 35.833,34.167 35.602,34.167 34.750 C 34.167 33.898,34.220 33.667,34.417 33.667 C 34.605 33.667,34.667 33.465,34.667 32.853 C 34.667 32.179,34.724 32.024,35.000 31.952 C 35.287 31.877,35.333 31.724,35.333 30.849 C 35.333 30.057,35.388 29.833,35.583 29.833 C 35.780 29.833,35.833 29.602,35.833 28.750 C 35.833 27.898,35.887 27.667,36.083 27.667 C 36.272 27.667,36.333 27.463,36.333 26.833 C 36.333 26.204,36.394 26.000,36.583 26.000 C 36.721 26.000,36.846 25.906,36.862 25.792 C 36.878 25.677,36.920 25.902,36.955 26.292 C 36.998 26.768,37.098 27.000,37.260 27.000 M73.583 30.817 C 73.248 30.896,73.111 31.014,73.167 31.176 C 73.336 31.665,73.338 102.543,73.169 102.747 C 72.838 103.146,73.392 103.167,84.293 103.167 C 95.224 103.167,95.366 103.162,95.452 102.833 C 95.528 102.543,95.679 102.500,96.622 102.500 C 97.572 102.500,97.696 102.464,97.629 102.208 C 97.563 101.955,97.658 101.924,98.359 101.974 C 98.980 102.019,99.188 101.971,99.267 101.766 C 99.328 101.607,99.563 101.500,99.851 101.500 C 100.151 101.500,100.333 101.413,100.333 101.269 C 100.333 101.136,100.583 100.990,100.917 100.928 C 101.266 100.862,101.500 100.721,101.500 100.576 C 101.500 100.442,101.612 100.333,101.750 100.333 C 101.888 100.333,102.000 100.221,102.000 100.083 C 102.000 99.909,102.176 99.833,102.583 99.833 C 102.991 99.833,103.167 99.758,103.167 99.583 C 103.167 99.446,103.279 99.333,103.417 99.333 C 103.556 99.333,103.667 99.185,103.667 99.000 C 103.667 98.740,103.778 98.667,104.172 98.667 C 104.467 98.667,104.717 98.563,104.773 98.417 C 104.826 98.279,104.973 98.167,105.101 98.167 C 105.229 98.167,105.333 98.054,105.333 97.917 C 105.333 97.779,105.446 97.667,105.583 97.667 C 105.721 97.667,105.833 97.563,105.833 97.436 C 105.833 97.309,105.983 97.166,106.167 97.118 C 106.350 97.070,106.500 96.912,106.500 96.766 C 106.500 96.620,106.612 96.500,106.750 96.500 C 106.888 96.500,107.000 96.388,107.000 96.250 C 107.000 96.112,107.112 96.000,107.250 96.000 C 107.388 96.000,107.500 95.896,107.500 95.768 C 107.500 95.640,107.612 95.492,107.750 95.440 C 107.896 95.384,108.000 95.134,108.000 94.839 C 108.000 94.444,108.073 94.333,108.333 94.333 C 108.519 94.333,108.667 94.222,108.667 94.083 C 108.667 93.946,108.779 93.833,108.917 93.833 C 109.056 93.833,109.167 93.685,109.167 93.500 C 109.167 93.315,109.278 93.167,109.417 93.167 C 109.581 93.167,109.667 93.002,109.667 92.686 C 109.667 92.346,109.764 92.180,110.000 92.118 C 110.243 92.055,110.333 91.891,110.333 91.516 C 110.333 91.168,110.415 91.000,110.583 91.000 C 110.721 91.000,110.833 90.888,110.833 90.750 C 110.833 90.612,110.946 90.500,111.083 90.500 C 111.251 90.500,111.333 90.333,111.333 89.995 C 111.333 89.699,111.437 89.450,111.583 89.394 C 111.753 89.328,111.833 89.063,111.833 88.566 C 111.833 87.944,111.884 87.833,112.167 87.833 C 112.437 87.833,112.500 87.722,112.500 87.250 C 112.500 86.843,112.575 86.667,112.750 86.667 C 112.939 86.667,113.000 86.463,113.000 85.833 C 113.000 85.204,113.061 85.000,113.250 85.000 C 113.434 85.000,113.500 84.808,113.500 84.269 C 113.500 83.679,113.564 83.522,113.833 83.452 C 114.124 83.376,114.167 83.224,114.167 82.266 C 114.167 81.400,114.220 81.167,114.417 81.167 C 114.613 81.167,114.667 80.935,114.667 80.083 C 114.667 79.231,114.720 79.000,114.917 79.000 C 115.124 79.000,115.167 78.676,115.167 77.083 C 115.167 75.486,115.209 75.167,115.418 75.167 C 115.639 75.167,115.669 74.197,115.663 67.250 C 115.658 60.393,115.625 59.333,115.412 59.333 C 115.210 59.333,115.167 58.993,115.167 57.417 C 115.167 55.824,115.124 55.500,114.917 55.500 C 114.717 55.500,114.667 55.249,114.667 54.245 C 114.667 53.283,114.608 52.967,114.417 52.894 C 114.246 52.828,114.167 52.561,114.167 52.050 C 114.167 51.442,114.104 51.286,113.833 51.215 C 113.544 51.139,113.500 50.988,113.500 50.064 C 113.500 49.229,113.446 49.000,113.250 49.000 C 113.075 49.000,113.000 48.824,113.000 48.417 C 113.000 48.009,112.925 47.833,112.750 47.833 C 112.564 47.833,112.500 47.637,112.500 47.068 C 112.500 46.442,112.439 46.286,112.167 46.215 C 111.931 46.153,111.833 45.988,111.833 45.647 C 111.833 45.331,111.748 45.167,111.583 45.167 C 111.409 45.167,111.333 44.991,111.333 44.583 C 111.333 44.176,111.258 44.000,111.083 44.000 C 110.917 44.000,110.833 43.833,110.833 43.500 C 110.833 43.184,110.748 43.000,110.602 43.000 C 110.469 43.000,110.324 42.751,110.261 42.417 C 110.195 42.067,110.054 41.833,109.909 41.833 C 109.776 41.833,109.667 41.721,109.667 41.583 C 109.667 41.446,109.554 41.333,109.417 41.333 C 109.258 41.333,109.167 41.174,109.167 40.898 C 109.167 40.444,108.567 39.675,108.208 39.670 C 108.094 39.668,108.000 39.554,108.000 39.417 C 108.000 39.279,107.888 39.167,107.750 39.167 C 107.612 39.167,107.500 39.025,107.500 38.851 C 107.500 38.678,107.388 38.492,107.250 38.440 C 107.112 38.387,107.000 38.184,107.000 37.990 C 107.000 37.776,106.868 37.601,106.667 37.548 C 106.483 37.500,106.333 37.357,106.333 37.231 C 106.333 37.104,106.221 37.000,106.083 37.000 C 105.946 37.000,105.833 36.917,105.833 36.815 C 105.833 36.528,105.115 35.839,104.812 35.836 C 104.663 35.835,104.447 35.721,104.333 35.583 C 104.219 35.446,104.023 35.333,103.896 35.333 C 103.770 35.333,103.665 35.240,103.664 35.125 C 103.659 34.811,102.977 34.234,102.458 34.107 C 102.206 34.044,102.000 33.920,102.000 33.830 C 102.000 33.740,101.888 33.667,101.750 33.667 C 101.612 33.667,101.500 33.554,101.500 33.417 C 101.500 33.244,101.326 33.167,100.936 33.167 C 100.512 33.167,100.351 33.084,100.285 32.833 C 100.218 32.577,100.058 32.500,99.594 32.500 C 99.210 32.500,98.954 32.409,98.894 32.250 C 98.839 32.107,98.590 32.000,98.310 32.000 C 98.031 32.000,97.782 31.893,97.727 31.750 C 97.665 31.590,97.408 31.500,97.010 31.500 C 96.668 31.500,96.337 31.449,96.275 31.386 C 95.691 30.803,95.082 30.769,84.500 30.733 C 78.771 30.714,73.858 30.751,73.583 30.817 M135.418 30.813 C 134.947 30.913,134.920 30.964,134.929 31.710 C 134.937 32.366,134.887 32.500,134.636 32.500 C 134.375 32.500,134.333 32.647,134.333 33.566 C 134.333 34.359,134.269 34.656,134.083 34.727 C 133.896 34.799,133.833 35.098,133.833 35.911 C 133.833 36.731,133.776 37.000,133.601 37.000 C 133.287 37.000,133.167 37.372,133.167 38.347 C 133.167 38.964,133.105 39.167,132.917 39.167 C 132.720 39.167,132.667 39.398,132.667 40.250 C 132.667 41.102,132.613 41.333,132.417 41.333 C 132.220 41.333,132.167 41.565,132.167 42.417 C 132.167 43.291,132.116 43.500,131.904 43.500 C 131.699 43.500,131.648 43.671,131.669 44.292 C 131.711 45.521,131.687 45.638,131.375 45.698 C 131.137 45.744,131.083 45.933,131.083 46.722 C 131.083 47.471,131.017 47.727,130.792 47.853 C 130.566 47.980,130.500 48.236,130.500 48.990 C 130.500 49.702,130.433 49.990,130.250 50.060 C 130.063 50.132,130.000 50.431,130.000 51.245 C 130.000 52.057,129.942 52.333,129.771 52.333 C 129.524 52.333,129.333 53.032,129.333 53.938 C 129.333 54.326,129.256 54.500,129.083 54.500 C 128.887 54.500,128.833 54.731,128.833 55.583 C 128.833 56.435,128.780 56.667,128.583 56.667 C 128.387 56.667,128.333 56.898,128.333 57.750 C 128.333 58.602,128.280 58.833,128.083 58.833 C 127.887 58.833,127.833 59.065,127.833 59.917 C 127.833 60.732,127.776 61.000,127.601 61.000 C 127.272 61.000,127.151 61.424,127.269 62.165 C 127.353 62.687,127.307 62.860,127.019 63.106 C 126.737 63.347,126.667 63.597,126.667 64.353 C 126.667 65.039,126.598 65.324,126.417 65.394 C 126.223 65.468,126.167 65.792,126.167 66.828 C 126.167 67.873,126.115 68.167,125.930 68.167 C 125.762 68.167,125.660 68.480,125.577 69.250 C 125.496 70.005,125.391 70.333,125.231 70.333 C 125.058 70.333,125.000 70.605,125.000 71.417 C 125.000 72.269,124.947 72.500,124.750 72.500 C 124.553 72.500,124.500 72.731,124.500 73.583 C 124.500 74.435,124.447 74.667,124.250 74.667 C 124.054 74.667,124.000 74.896,124.000 75.731 C 124.000 76.662,123.958 76.806,123.659 76.884 C 123.353 76.964,123.330 77.058,123.429 77.805 C 123.524 78.525,123.491 78.677,123.186 78.939 C 122.904 79.180,122.833 79.430,122.833 80.186 C 122.833 80.872,122.765 81.157,122.583 81.227 C 122.396 81.299,122.333 81.598,122.333 82.411 C 122.333 83.268,122.280 83.500,122.083 83.500 C 121.887 83.500,121.833 83.731,121.833 84.583 C 121.833 85.556,121.799 85.667,121.500 85.667 C 121.201 85.667,121.167 85.778,121.167 86.750 C 121.167 87.602,121.113 87.833,120.917 87.833 C 120.720 87.833,120.667 88.065,120.667 88.917 C 120.667 89.769,120.613 90.000,120.417 90.000 C 120.221 90.000,120.167 90.229,120.167 91.064 C 120.167 92.005,120.126 92.138,119.816 92.220 C 119.491 92.304,119.473 92.386,119.579 93.299 C 119.685 94.209,119.667 94.294,119.347 94.378 C 119.044 94.457,119.000 94.596,119.000 95.467 C 119.000 96.224,118.936 96.489,118.736 96.566 C 118.524 96.647,118.483 96.880,118.527 97.751 C 118.576 98.693,118.545 98.834,118.292 98.834 C 118.044 98.833,118.000 98.995,118.000 99.897 C 118.000 100.821,117.956 100.973,117.667 101.048 C 117.379 101.123,117.333 101.276,117.333 102.151 L 117.333 103.167 122.250 103.167 L 127.167 103.167 127.167 102.353 C 127.167 101.679,127.224 101.524,127.500 101.452 C 127.787 101.377,127.833 101.224,127.833 100.367 C 127.833 99.634,127.900 99.344,128.083 99.273 C 128.270 99.201,128.333 98.902,128.333 98.089 C 128.333 97.232,128.387 97.000,128.583 97.000 C 128.785 97.000,128.833 96.741,128.833 95.667 C 128.833 94.593,128.882 94.333,129.083 94.333 C 129.280 94.333,129.333 94.102,129.333 93.250 C 129.333 92.278,129.368 92.167,129.667 92.167 C 129.966 92.167,130.000 92.056,130.000 91.083 C 130.000 90.231,130.053 90.000,130.250 90.000 C 130.446 90.000,130.500 89.770,130.500 88.934 C 130.500 88.141,130.564 87.844,130.750 87.773 C 130.896 87.717,131.000 87.467,131.000 87.172 L 131.000 86.667 140.583 86.667 L 150.167 86.667 150.167 87.182 C 150.167 87.558,150.257 87.722,150.500 87.785 C 150.789 87.861,150.833 88.012,150.833 88.936 C 150.833 89.771,150.887 90.000,151.083 90.000 C 151.280 90.000,151.333 90.231,151.333 91.083 C 151.333 91.935,151.387 92.167,151.583 92.167 C 151.785 92.167,151.833 92.426,151.833 93.500 C 151.833 94.587,151.881 94.833,152.089 94.833 C 152.418 94.833,152.671 95.499,152.480 95.864 C 152.236 96.330,152.314 96.818,152.667 97.039 C 152.942 97.211,153.000 97.427,153.000 98.290 C 153.000 99.106,153.054 99.333,153.250 99.333 C 153.447 99.333,153.500 99.565,153.500 100.417 C 153.500 101.269,153.553 101.500,153.750 101.500 C 153.939 101.500,154.000 101.704,154.000 102.333 L 154.000 103.167 158.917 103.167 L 163.833 103.167 163.833 101.828 C 163.833 100.792,163.777 100.468,163.583 100.394 C 163.397 100.322,163.333 100.026,163.333 99.232 C 163.333 98.396,163.279 98.167,163.083 98.167 C 162.888 98.167,162.833 97.943,162.833 97.151 C 162.833 96.276,162.787 96.123,162.500 96.048 C 162.211 95.973,162.167 95.821,162.167 94.897 C 162.167 94.063,162.113 93.833,161.917 93.833 C 161.720 93.833,161.667 93.602,161.667 92.750 C 161.667 91.898,161.613 91.667,161.417 91.667 C 161.220 91.667,161.167 91.435,161.167 90.583 C 161.167 89.731,161.113 89.500,160.917 89.500 C 160.720 89.500,160.667 89.269,160.667 88.417 C 160.667 87.444,160.632 87.333,160.333 87.333 C 160.034 87.333,160.000 87.222,160.000 86.245 C 160.000 85.431,159.937 85.132,159.750 85.060 C 159.564 84.989,159.500 84.692,159.500 83.899 C 159.500 83.063,159.446 82.833,159.250 82.833 C 159.055 82.833,159.000 82.609,159.000 81.818 C 159.000 80.942,158.954 80.790,158.667 80.715 C 158.377 80.639,158.333 80.488,158.333 79.564 C 158.333 78.729,158.279 78.500,158.083 78.500 C 157.887 78.500,157.833 78.269,157.833 77.417 C 157.833 76.565,157.780 76.333,157.583 76.333 C 157.387 76.333,157.333 76.102,157.333 75.250 C 157.333 74.398,157.280 74.167,157.083 74.167 C 156.887 74.167,156.833 73.935,156.833 73.083 C 156.833 72.111,156.799 72.000,156.500 72.000 C 156.201 72.000,156.167 71.889,156.167 70.917 C 156.167 70.065,156.113 69.833,155.917 69.833 C 155.715 69.833,155.667 69.573,155.667 68.495 C 155.667 67.459,155.610 67.135,155.417 67.060 C 155.233 66.990,155.167 66.700,155.167 65.967 C 155.167 65.109,155.120 64.957,154.833 64.882 C 154.544 64.806,154.500 64.654,154.500 63.731 C 154.500 62.896,154.446 62.667,154.250 62.667 C 154.053 62.667,154.000 62.435,154.000 61.583 C 154.000 60.731,153.947 60.500,153.750 60.500 C 153.553 60.500,153.500 60.269,153.500 59.417 C 153.500 58.565,153.447 58.333,153.250 58.333 C 153.056 58.333,153.000 58.112,153.000 57.339 C 153.000 56.516,152.943 56.314,152.667 56.167 C 152.386 56.017,152.333 55.818,152.333 54.911 C 152.333 54.064,152.280 53.833,152.083 53.833 C 151.887 53.833,151.833 53.602,151.833 52.750 C 151.833 51.898,151.780 51.667,151.583 51.667 C 151.389 51.667,151.333 51.444,151.333 50.661 C 151.333 49.922,151.267 49.631,151.083 49.560 C 150.909 49.493,150.833 49.221,150.833 48.662 C 150.833 47.704,150.712 47.333,150.399 47.333 C 150.224 47.333,150.167 47.065,150.167 46.250 C 150.167 45.398,150.113 45.167,149.917 45.167 C 149.720 45.167,149.667 44.935,149.667 44.083 C 149.667 43.231,149.613 43.000,149.417 43.000 C 149.220 43.000,149.167 42.769,149.167 41.917 C 149.167 40.944,149.132 40.833,148.833 40.833 C 148.534 40.833,148.500 40.722,148.500 39.745 C 148.500 38.931,148.437 38.632,148.250 38.560 C 148.064 38.489,148.000 38.192,148.000 37.399 C 148.000 36.563,147.946 36.333,147.750 36.333 C 147.553 36.333,147.500 36.102,147.500 35.250 C 147.500 34.398,147.447 34.167,147.250 34.167 C 147.055 34.167,147.000 33.943,147.000 33.151 C 147.000 32.276,146.954 32.123,146.667 32.048 C 146.419 31.983,146.333 31.821,146.333 31.415 C 146.333 31.071,146.236 30.832,146.070 30.768 C 145.722 30.634,136.061 30.675,135.418 30.813 M170.708 30.773 C 170.543 30.843,170.500 38.250,170.500 67.014 L 170.500 103.167 175.073 103.167 C 179.242 103.167,180.671 103.029,179.738 102.718 C 179.644 102.687,179.601 97.899,179.627 90.583 L 179.671 78.500 185.169 78.500 C 189.945 78.500,190.667 78.467,190.667 78.250 C 190.667 78.053,190.898 78.000,191.750 78.000 C 192.722 78.000,192.833 77.966,192.833 77.667 C 192.833 77.378,192.944 77.333,193.667 77.333 C 194.296 77.333,194.500 77.272,194.500 77.083 C 194.500 76.909,194.676 76.833,195.083 76.833 C 195.491 76.833,195.667 76.758,195.667 76.583 C 195.667 76.429,195.823 76.333,196.075 76.333 C 196.300 76.333,196.543 76.234,196.617 76.112 C 196.690 75.991,196.881 75.843,197.042 75.784 C 197.202 75.725,197.333 75.562,197.333 75.422 C 197.333 75.249,197.495 75.167,197.833 75.167 C 198.167 75.167,198.333 75.083,198.333 74.917 C 198.333 74.779,198.446 74.667,198.583 74.667 C 198.721 74.667,198.833 74.554,198.833 74.417 C 198.833 74.279,198.953 74.167,199.099 74.167 C 199.245 74.167,199.404 74.017,199.452 73.833 C 199.500 73.650,199.643 73.500,199.769 73.500 C 199.896 73.500,200.000 73.387,200.000 73.250 C 200.000 73.112,200.112 73.000,200.250 73.000 C 200.414 73.000,200.500 72.835,200.500 72.519 C 200.500 72.179,200.597 72.013,200.833 71.952 C 201.017 71.904,201.167 71.745,201.167 71.599 C 201.167 71.453,201.279 71.333,201.417 71.333 C 201.583 71.333,201.667 71.167,201.667 70.833 C 201.667 70.500,201.750 70.333,201.917 70.333 C 202.056 70.333,202.167 70.185,202.167 70.000 C 202.167 69.815,202.278 69.667,202.417 69.667 C 202.583 69.667,202.667 69.500,202.667 69.167 C 202.667 68.850,202.752 68.667,202.899 68.667 C 203.190 68.667,203.333 68.304,203.333 67.570 C 203.333 67.174,203.410 67.000,203.583 67.000 C 203.772 67.000,203.833 66.796,203.833 66.167 C 203.833 65.537,203.894 65.333,204.083 65.333 C 204.279 65.333,204.333 65.104,204.333 64.269 C 204.333 63.346,204.377 63.194,204.667 63.118 C 204.971 63.039,205.000 62.891,205.000 61.432 C 205.000 60.122,205.045 59.833,205.250 59.833 C 205.467 59.833,205.500 59.148,205.500 54.667 C 205.500 50.185,205.467 49.500,205.250 49.500 C 205.048 49.500,205.000 49.233,205.000 48.097 C 205.000 46.551,204.913 46.167,204.566 46.167 C 204.391 46.167,204.333 45.898,204.333 45.083 C 204.333 44.231,204.280 44.000,204.083 44.000 C 203.898 44.000,203.833 43.805,203.833 43.245 C 203.833 42.727,203.755 42.459,203.583 42.394 C 203.441 42.339,203.333 42.090,203.333 41.816 C 203.333 41.444,203.257 41.333,203.000 41.333 C 202.711 41.333,202.667 41.222,202.667 40.500 C 202.667 39.870,202.606 39.667,202.417 39.667 C 202.279 39.667,202.167 39.554,202.167 39.417 C 202.167 39.279,202.054 39.167,201.917 39.167 C 201.742 39.167,201.667 38.991,201.667 38.583 C 201.667 38.176,201.591 38.000,201.417 38.000 C 201.279 38.000,201.167 37.887,201.167 37.750 C 201.167 37.611,201.019 37.500,200.833 37.500 C 200.573 37.500,200.500 37.389,200.500 36.995 C 200.500 36.699,200.396 36.450,200.250 36.394 C 200.112 36.341,200.000 36.193,200.000 36.066 C 200.000 35.938,199.887 35.833,199.750 35.833 C 199.612 35.833,199.500 35.721,199.500 35.583 C 199.500 35.444,199.352 35.333,199.167 35.333 C 198.978 35.333,198.833 35.222,198.833 35.078 C 198.833 34.938,198.721 34.780,198.583 34.727 C 198.446 34.674,198.333 34.527,198.333 34.399 C 198.333 34.271,198.229 34.167,198.101 34.167 C 197.973 34.167,197.826 34.054,197.773 33.917 C 197.720 33.779,197.534 33.667,197.359 33.667 C 197.184 33.667,196.947 33.554,196.833 33.417 C 196.719 33.279,196.523 33.167,196.396 33.167 C 196.270 33.167,196.167 33.062,196.167 32.934 C 196.167 32.680,195.816 32.500,195.320 32.500 C 195.144 32.500,195.000 32.387,195.000 32.250 C 195.000 32.069,194.814 32.000,194.328 32.000 C 193.885 32.000,193.624 31.915,193.560 31.750 C 193.508 31.613,193.297 31.500,193.093 31.500 C 192.889 31.500,192.671 31.449,192.608 31.386 C 192.028 30.805,191.397 30.769,181.083 30.727 C 175.492 30.703,170.823 30.724,170.708 30.773 M322.198 31.506 L 321.833 31.846 321.835 66.548 C 321.836 85.634,321.883 101.531,321.940 101.875 L 322.044 102.500 337.938 102.500 L 353.833 102.500 353.833 96.000 L 353.833 89.500 342.583 89.500 L 331.333 89.500 331.333 60.560 C 331.333 33.194,331.317 31.608,331.042 31.399 C 330.493 30.982,322.658 31.078,322.198 31.506 M361.750 31.333 C 361.693 31.425,361.464 31.500,361.240 31.500 L 360.833 31.500 360.833 67.000 L 360.833 102.500 378.083 102.500 L 395.333 102.500 395.333 96.000 L 395.333 89.500 383.000 89.500 L 370.667 89.500 370.667 81.000 L 370.667 72.500 380.002 72.500 L 389.337 72.500 389.294 66.239 L 389.250 59.978 379.958 59.994 L 370.667 60.010 370.667 52.255 L 370.667 44.500 383.000 44.500 L 395.333 44.500 395.333 38.000 L 395.333 31.500 394.927 31.500 C 394.703 31.500,394.473 31.425,394.417 31.333 C 394.349 31.224,388.724 31.167,378.083 31.167 C 367.443 31.167,361.818 31.224,361.750 31.333 M73.625 84.792 C 73.601 94.577,73.582 86.571,73.582 67.000 C 73.582 47.429,73.601 39.423,73.625 49.208 C 73.649 58.994,73.649 75.006,73.625 84.792 M242.458 31.847 C 242.298 32.023,242.167 32.414,242.167 32.717 C 242.167 33.019,242.092 33.341,242.002 33.432 C 241.911 33.523,241.792 33.969,241.738 34.423 C 241.684 34.878,241.571 35.419,241.487 35.625 C 241.402 35.831,241.264 36.169,241.180 36.375 C 241.096 36.581,240.982 37.122,240.928 37.577 C 240.874 38.031,240.756 38.477,240.665 38.568 C 240.574 38.659,240.500 39.003,240.500 39.333 C 240.500 39.663,240.421 40.013,240.324 40.110 C 240.227 40.207,240.104 40.711,240.050 41.231 C 239.996 41.751,239.888 42.216,239.810 42.265 C 239.731 42.313,239.667 42.499,239.667 42.677 C 239.667 42.854,239.592 43.000,239.500 43.000 C 239.408 43.000,239.333 43.225,239.333 43.500 C 239.333 43.775,239.406 44.000,239.495 44.000 C 239.584 44.000,239.613 44.112,239.561 44.249 C 239.508 44.386,239.398 44.457,239.316 44.406 C 239.234 44.355,239.167 44.506,239.167 44.740 C 239.167 44.975,239.092 45.167,239.000 45.167 C 238.908 45.167,238.833 45.400,238.833 45.686 C 238.833 46.185,238.446 47.596,238.139 48.212 C 238.059 48.374,237.951 48.862,237.900 49.295 C 237.810 50.054,237.753 50.255,237.369 51.167 C 237.272 51.396,237.149 51.958,237.094 52.417 C 237.040 52.875,236.921 53.275,236.831 53.306 C 236.741 53.336,236.667 53.646,236.667 53.995 C 236.667 54.343,236.555 54.843,236.418 55.106 C 236.281 55.369,236.168 55.860,236.168 56.198 C 236.167 56.537,236.102 56.854,236.022 56.903 C 235.942 56.952,235.743 57.635,235.578 58.420 C 235.413 59.205,235.216 59.886,235.139 59.934 C 235.063 59.981,235.000 60.300,235.000 60.643 C 235.000 60.986,234.923 61.344,234.829 61.438 C 234.735 61.532,234.612 62.016,234.556 62.513 C 234.500 63.010,234.385 63.505,234.300 63.613 C 234.215 63.722,234.102 64.230,234.049 64.743 C 233.996 65.257,233.888 65.716,233.810 65.765 C 233.731 65.813,233.667 65.999,233.667 66.177 C 233.667 66.354,233.602 66.500,233.523 66.500 C 233.444 66.500,233.337 66.967,233.286 67.538 C 233.234 68.108,233.111 68.602,233.012 68.635 C 232.914 68.668,232.833 68.973,232.833 69.314 C 232.833 69.655,232.759 70.008,232.668 70.098 C 232.577 70.189,232.459 70.635,232.405 71.090 C 232.351 71.545,232.245 72.067,232.170 72.250 C 231.862 73.003,231.688 73.623,231.590 74.325 C 231.532 74.733,231.424 75.146,231.349 75.242 C 231.274 75.338,231.167 75.823,231.111 76.321 C 231.055 76.818,230.932 77.301,230.838 77.396 C 230.744 77.490,230.667 77.837,230.667 78.167 C 230.667 78.497,230.587 78.846,230.490 78.943 C 230.393 79.040,230.270 79.545,230.217 80.064 C 230.163 80.584,230.055 81.050,229.976 81.098 C 229.898 81.147,229.833 81.332,229.833 81.510 C 229.833 81.688,229.769 81.833,229.690 81.833 C 229.612 81.833,229.499 82.302,229.439 82.875 C 229.379 83.448,229.256 83.942,229.165 83.972 C 229.074 84.003,229.000 84.307,229.000 84.647 C 229.000 84.988,228.926 85.341,228.835 85.432 C 228.744 85.523,228.626 85.969,228.572 86.423 C 228.518 86.878,228.412 87.400,228.337 87.583 C 228.016 88.367,227.851 88.965,227.752 89.708 C 227.694 90.144,227.586 90.500,227.513 90.500 C 227.440 90.500,227.337 90.967,227.286 91.538 C 227.234 92.108,227.111 92.602,227.012 92.635 C 226.914 92.668,226.833 93.011,226.833 93.397 C 226.833 93.784,226.754 94.179,226.657 94.276 C 226.560 94.373,226.437 94.878,226.383 95.398 C 226.330 95.918,226.221 96.383,226.143 96.431 C 226.064 96.480,226.000 96.665,226.000 96.843 C 226.000 97.021,225.922 97.167,225.826 97.167 C 225.718 97.167,225.692 97.382,225.757 97.731 C 225.821 98.071,225.791 98.340,225.682 98.407 C 225.582 98.469,225.500 98.703,225.500 98.927 C 225.500 99.150,225.425 99.333,225.333 99.333 C 225.242 99.333,225.167 99.618,225.167 99.967 C 225.167 100.315,225.092 100.674,225.002 100.765 C 224.911 100.856,224.788 101.283,224.729 101.715 L 224.621 102.500 229.561 102.500 C 233.840 102.500,234.500 102.467,234.500 102.250 C 234.500 102.112,234.618 102.000,234.761 102.000 C 234.975 102.000,235.018 101.795,234.999 100.875 C 234.966 99.335,234.966 99.333,235.263 99.333 C 235.445 99.333,235.516 99.194,235.495 98.875 C 235.414 97.646,235.499 97.206,235.833 97.118 C 236.124 97.042,236.167 96.891,236.167 95.932 C 236.167 95.067,236.220 94.833,236.417 94.833 C 236.613 94.833,236.667 94.602,236.667 93.750 C 236.667 92.898,236.720 92.667,236.917 92.667 C 237.113 92.667,237.167 92.435,237.167 91.583 C 237.167 90.772,237.225 90.500,237.397 90.500 C 237.696 90.500,237.828 89.980,237.831 88.792 C 237.833 88.052,237.890 87.833,238.083 87.833 C 238.272 87.833,238.333 87.630,238.333 87.000 L 238.333 86.167 247.967 86.167 L 257.600 86.167 257.800 86.720 C 257.910 87.025,258.000 87.512,258.000 87.803 C 258.000 88.095,258.075 88.333,258.167 88.333 C 258.258 88.333,258.333 88.633,258.333 89.000 C 258.333 89.367,258.412 89.667,258.508 89.667 C 258.615 89.667,258.641 89.882,258.576 90.231 C 258.512 90.571,258.542 90.840,258.652 90.907 C 258.752 90.969,258.833 91.203,258.833 91.427 C 258.833 91.650,258.908 91.833,259.000 91.833 C 259.092 91.833,259.167 92.152,259.168 92.542 C 259.168 92.931,259.281 93.465,259.418 93.727 C 259.555 93.990,259.667 94.490,259.667 94.838 C 259.667 95.187,259.745 95.498,259.841 95.530 C 259.937 95.562,260.061 96.037,260.116 96.586 C 260.172 97.135,260.280 97.625,260.357 97.676 C 260.434 97.727,260.541 98.139,260.595 98.592 C 260.687 99.364,260.833 99.845,261.186 100.539 C 261.267 100.699,261.333 101.205,261.333 101.664 L 261.333 102.500 266.500 102.500 L 271.667 102.500 271.667 101.750 C 271.667 101.194,271.602 101.000,271.417 101.000 C 271.222 101.000,271.167 100.779,271.167 100.008 C 271.167 99.345,271.091 98.972,270.938 98.883 C 270.803 98.804,270.678 98.350,270.631 97.767 C 270.578 97.115,270.459 96.715,270.276 96.582 C 270.075 96.435,270.000 96.122,270.000 95.435 C 270.000 94.748,269.932 94.463,269.750 94.394 C 269.580 94.328,269.500 94.062,269.500 93.560 C 269.500 93.059,269.420 92.792,269.250 92.727 C 269.066 92.656,269.000 92.366,269.000 91.633 C 269.000 90.776,268.953 90.623,268.667 90.548 C 268.377 90.473,268.333 90.321,268.333 89.397 C 268.333 88.563,268.279 88.333,268.083 88.333 C 267.887 88.333,267.833 88.102,267.833 87.250 C 267.833 86.398,267.780 86.167,267.583 86.167 C 267.387 86.167,267.333 85.935,267.333 85.083 C 267.333 84.231,267.280 84.000,267.083 84.000 C 266.888 84.000,266.833 83.776,266.833 82.984 C 266.833 82.109,266.787 81.957,266.500 81.882 C 266.211 81.806,266.167 81.654,266.167 80.731 C 266.167 79.896,266.113 79.667,265.917 79.667 C 265.720 79.667,265.667 79.435,265.667 78.578 C 265.667 77.764,265.604 77.465,265.417 77.394 C 265.233 77.323,265.167 77.033,265.167 76.300 C 265.167 75.442,265.120 75.290,264.833 75.215 C 264.544 75.139,264.500 74.988,264.500 74.064 C 264.500 73.229,264.446 73.000,264.250 73.000 C 264.053 73.000,264.000 72.769,264.000 71.917 C 264.000 71.065,263.947 70.833,263.750 70.833 C 263.553 70.833,263.500 70.602,263.500 69.750 C 263.500 68.898,263.447 68.667,263.250 68.667 C 263.055 68.667,263.000 68.443,263.000 67.651 C 263.000 66.776,262.954 66.623,262.667 66.548 C 262.377 66.473,262.333 66.321,262.333 65.397 C 262.333 64.563,262.279 64.333,262.083 64.333 C 261.887 64.333,261.833 64.102,261.833 63.250 C 261.833 62.398,261.780 62.167,261.583 62.167 C 261.387 62.167,261.333 61.936,261.333 61.095 C 261.333 60.169,261.288 60.008,261.000 59.917 C 260.712 59.825,260.667 59.664,260.667 58.739 C 260.667 57.897,260.613 57.667,260.417 57.667 C 260.220 57.667,260.167 57.435,260.167 56.583 C 260.167 55.731,260.113 55.500,259.917 55.500 C 259.720 55.500,259.667 55.269,259.667 54.417 C 259.667 53.565,259.613 53.333,259.417 53.333 C 259.228 53.333,259.167 53.131,259.167 52.514 C 259.167 51.538,259.047 51.167,258.732 51.167 C 258.558 51.167,258.500 50.898,258.500 50.083 C 258.500 49.231,258.447 49.000,258.250 49.000 C 258.053 49.000,258.000 48.769,258.000 47.917 C 258.000 47.065,257.947 46.833,257.750 46.833 C 257.555 46.833,257.500 46.609,257.500 45.818 C 257.500 44.942,257.454 44.790,257.167 44.715 C 256.878 44.639,256.833 44.488,256.833 43.582 C 256.833 42.806,256.769 42.511,256.583 42.440 C 256.399 42.369,256.333 42.078,256.333 41.333 C 256.333 40.589,256.268 40.298,256.083 40.227 C 255.900 40.157,255.833 39.868,255.833 39.144 C 255.833 38.420,255.767 38.131,255.583 38.060 C 255.417 37.997,255.333 37.732,255.331 37.274 C 255.328 36.341,255.175 35.833,254.897 35.833 C 254.725 35.833,254.667 35.561,254.667 34.750 C 254.667 33.898,254.613 33.667,254.417 33.667 C 254.220 33.667,254.167 33.435,254.167 32.583 L 254.167 31.500 248.458 31.514 C 243.055 31.527,242.734 31.545,242.458 31.847 M277.607 32.125 C 277.550 32.469,277.504 48.162,277.504 67.000 C 277.504 85.838,277.550 101.531,277.607 101.875 L 277.710 102.500 289.438 102.500 C 299.752 102.500,301.167 102.470,301.167 102.250 C 301.167 102.053,301.399 102.000,302.255 102.000 C 303.069 102.000,303.368 101.937,303.440 101.750 C 303.502 101.587,303.762 101.500,304.190 101.500 C 304.597 101.500,304.878 101.412,304.933 101.266 C 304.983 101.138,305.280 100.984,305.595 100.925 C 305.935 100.862,306.167 100.720,306.167 100.576 C 306.167 100.442,306.279 100.333,306.417 100.333 C 306.554 100.333,306.667 100.221,306.667 100.083 C 306.667 99.916,306.834 99.833,307.172 99.833 C 307.467 99.833,307.717 99.729,307.773 99.583 C 307.826 99.446,307.973 99.333,308.101 99.333 C 308.229 99.333,308.333 99.183,308.333 99.000 C 308.333 98.815,308.444 98.667,308.583 98.667 C 308.721 98.667,308.833 98.554,308.833 98.417 C 308.833 98.278,308.981 98.167,309.167 98.167 C 309.352 98.167,309.500 98.056,309.500 97.917 C 309.500 97.779,309.612 97.667,309.750 97.667 C 309.887 97.667,310.000 97.562,310.000 97.434 C 310.000 97.307,310.112 97.159,310.250 97.106 C 310.387 97.054,310.500 96.896,310.500 96.755 C 310.500 96.615,310.612 96.500,310.750 96.500 C 310.917 96.500,311.000 96.333,311.000 96.000 C 311.000 95.611,311.074 95.500,311.333 95.500 C 311.603 95.500,311.667 95.389,311.667 94.917 C 311.667 94.509,311.742 94.333,311.917 94.333 C 312.083 94.333,312.167 94.167,312.167 93.833 C 312.167 93.500,312.250 93.333,312.417 93.333 C 312.590 93.333,312.667 93.160,312.667 92.769 C 312.667 92.346,312.750 92.184,313.000 92.118 C 313.272 92.047,313.333 91.891,313.333 91.266 C 313.333 90.696,313.397 90.500,313.583 90.500 C 313.780 90.500,313.833 90.269,313.833 89.417 C 313.833 88.565,313.887 88.333,314.083 88.333 C 314.301 88.333,314.333 87.556,314.333 82.333 C 314.333 77.111,314.301 76.333,314.083 76.333 C 313.887 76.333,313.833 76.102,313.833 75.250 C 313.833 74.398,313.780 74.167,313.583 74.167 C 313.397 74.167,313.333 73.970,313.333 73.401 C 313.333 72.776,313.272 72.620,313.000 72.548 C 312.750 72.483,312.667 72.321,312.667 71.897 C 312.667 71.507,312.590 71.333,312.417 71.333 C 312.250 71.333,312.167 71.167,312.167 70.833 C 312.167 70.500,312.083 70.333,311.917 70.333 C 311.748 70.333,311.667 70.165,311.667 69.818 C 311.667 69.442,311.576 69.278,311.333 69.215 C 311.150 69.167,311.000 69.024,311.000 68.897 C 311.000 68.770,310.887 68.667,310.750 68.667 C 310.612 68.667,310.500 68.554,310.500 68.417 C 310.500 68.279,310.387 68.167,310.250 68.167 C 310.107 68.167,310.000 68.017,310.000 67.816 C 310.000 67.572,309.923 67.494,309.750 67.560 C 309.580 67.626,309.500 67.551,309.500 67.328 C 309.500 67.111,309.387 67.000,309.167 67.000 C 308.981 67.000,308.833 66.889,308.833 66.750 C 308.833 66.612,308.721 66.500,308.583 66.500 C 308.446 66.500,308.333 66.387,308.333 66.250 C 308.333 66.112,308.230 66.000,308.103 66.000 C 307.976 66.000,307.833 65.850,307.785 65.667 C 307.722 65.424,307.558 65.333,307.182 65.333 C 306.846 65.333,306.667 65.250,306.667 65.095 C 306.667 64.964,306.498 64.832,306.292 64.803 L 305.917 64.750 306.292 64.421 C 306.498 64.240,306.667 63.997,306.667 63.880 C 306.667 63.762,306.817 63.667,307.000 63.667 C 307.185 63.667,307.333 63.556,307.333 63.417 C 307.333 63.279,307.446 63.167,307.583 63.167 C 307.721 63.167,307.833 63.054,307.833 62.917 C 307.833 62.779,307.946 62.667,308.083 62.667 C 308.221 62.667,308.333 62.562,308.333 62.434 C 308.333 62.307,308.446 62.159,308.583 62.106 C 308.729 62.050,308.833 61.801,308.833 61.505 C 308.833 61.111,308.907 61.000,309.167 61.000 C 309.355 61.000,309.500 60.889,309.500 60.745 C 309.500 60.604,309.612 60.446,309.750 60.394 C 309.893 60.339,310.000 60.090,310.000 59.816 C 310.000 59.498,310.085 59.333,310.250 59.333 C 310.439 59.333,310.500 59.130,310.500 58.500 C 310.500 57.870,310.561 57.667,310.750 57.667 C 310.947 57.667,311.000 57.435,311.000 56.583 C 311.000 55.611,311.034 55.500,311.333 55.500 C 311.660 55.500,311.667 55.389,311.667 50.083 C 311.667 44.778,311.660 44.667,311.333 44.667 C 311.034 44.667,311.000 44.556,311.000 43.578 C 311.000 42.764,310.937 42.465,310.750 42.394 C 310.580 42.328,310.500 42.063,310.500 41.566 C 310.500 41.026,310.434 40.833,310.250 40.833 C 310.075 40.833,310.000 40.657,310.000 40.250 C 310.000 39.843,309.925 39.667,309.750 39.667 C 309.595 39.667,309.500 39.509,309.500 39.251 C 309.500 39.017,309.355 38.746,309.167 38.628 C 308.964 38.502,308.833 38.239,308.833 37.960 C 308.833 37.662,308.745 37.500,308.583 37.500 C 308.446 37.500,308.333 37.387,308.333 37.250 C 308.333 37.112,308.221 37.000,308.083 37.000 C 307.944 37.000,307.833 36.852,307.833 36.667 C 307.833 36.481,307.722 36.333,307.583 36.333 C 307.446 36.333,307.333 36.221,307.333 36.083 C 307.333 35.946,307.262 35.833,307.174 35.833 C 307.005 35.833,306.468 35.309,305.917 34.607 C 305.733 34.373,305.452 34.179,305.292 34.174 C 305.131 34.170,305.000 34.054,305.000 33.917 C 305.000 33.779,304.887 33.667,304.750 33.667 C 304.612 33.667,304.500 33.554,304.500 33.417 C 304.500 33.261,304.343 33.167,304.085 33.167 C 303.850 33.167,303.579 33.022,303.461 32.833 C 303.347 32.650,303.081 32.500,302.871 32.500 C 302.661 32.500,302.446 32.387,302.394 32.250 C 302.332 32.089,302.074 32.000,301.668 32.000 C 301.322 32.000,300.823 31.888,300.561 31.751 C 300.151 31.537,298.494 31.502,288.897 31.501 L 277.710 31.500 277.607 32.125 M188.500 43.750 C 188.500 43.939,188.704 44.000,189.333 44.000 C 189.963 44.000,190.167 44.061,190.167 44.250 C 190.167 44.425,190.343 44.500,190.750 44.500 C 191.222 44.500,191.333 44.563,191.333 44.833 C 191.333 45.019,191.444 45.167,191.583 45.167 C 191.721 45.167,191.833 45.279,191.833 45.417 C 191.833 45.554,191.946 45.667,192.083 45.667 C 192.221 45.667,192.333 45.779,192.333 45.917 C 192.333 46.054,192.404 46.167,192.491 46.167 C 192.721 46.167,193.500 46.922,193.500 47.144 C 193.500 47.248,193.612 47.333,193.750 47.333 C 193.917 47.333,194.000 47.500,194.000 47.833 C 194.000 48.167,194.083 48.333,194.250 48.333 C 194.425 48.333,194.500 48.509,194.500 48.917 C 194.500 49.324,194.575 49.500,194.750 49.500 C 194.923 49.500,195.000 49.674,195.000 50.070 C 195.000 50.804,195.144 51.167,195.434 51.167 C 195.720 51.167,195.784 57.408,195.500 57.583 C 195.408 57.640,195.333 57.940,195.333 58.250 C 195.333 58.560,195.258 58.860,195.167 58.917 C 195.075 58.973,195.000 59.318,195.000 59.682 C 195.000 60.116,194.914 60.377,194.750 60.440 C 194.611 60.493,194.500 60.741,194.500 61.000 C 194.500 61.259,194.389 61.507,194.250 61.560 C 194.104 61.616,194.000 61.866,194.000 62.161 C 194.000 62.499,193.917 62.667,193.750 62.667 C 193.612 62.667,193.500 62.779,193.500 62.917 C 193.500 63.054,193.396 63.167,193.268 63.167 C 192.976 63.167,192.795 63.617,192.924 64.023 C 193.007 64.286,192.932 64.333,192.428 64.333 C 192.011 64.333,191.833 64.408,191.833 64.583 C 191.833 64.721,191.721 64.833,191.583 64.833 C 191.446 64.833,191.333 64.946,191.333 65.083 C 191.333 65.258,191.157 65.333,190.750 65.333 C 190.278 65.333,190.167 65.397,190.167 65.667 C 190.167 65.956,190.056 66.000,189.333 66.000 C 188.704 66.000,188.500 66.061,188.500 66.250 C 188.500 66.466,187.898 66.500,184.083 66.500 L 179.667 66.500 179.667 55.000 L 179.667 43.500 184.083 43.500 C 187.898 43.500,188.500 43.534,188.500 43.750 M297.394 43.750 C 297.450 43.896,297.699 44.000,297.995 44.000 C 298.333 44.000,298.500 44.083,298.500 44.250 C 298.500 44.397,298.654 44.501,298.875 44.503 C 299.337 44.506,300.667 45.840,300.667 46.299 C 300.667 46.646,301.047 47.064,301.212 46.899 C 301.266 46.845,301.269 46.961,301.217 47.158 C 301.154 47.398,301.254 47.655,301.520 47.938 C 302.135 48.593,302.140 54.860,301.525 55.475 C 301.267 55.733,301.159 55.998,301.208 56.254 C 301.261 56.529,301.193 56.664,300.974 56.722 C 300.797 56.768,300.667 56.952,300.667 57.156 C 300.667 57.351,300.554 57.554,300.417 57.606 C 300.279 57.659,300.167 57.844,300.167 58.018 C 300.167 58.191,300.054 58.333,299.917 58.333 C 299.779 58.333,299.667 58.446,299.667 58.583 C 299.667 58.722,299.519 58.833,299.333 58.833 C 299.148 58.833,299.000 58.944,299.000 59.083 C 299.000 59.250,298.833 59.333,298.500 59.333 C 298.101 59.333,298.000 59.405,298.000 59.688 C 298.000 59.995,297.932 60.028,297.479 59.938 C 297.193 59.880,294.718 59.833,291.979 59.833 L 287.000 59.833 287.000 51.667 L 287.000 43.500 292.149 43.500 C 296.572 43.500,297.311 43.535,297.394 43.750 M82.625 78.112 C 82.601 84.421,82.581 79.308,82.581 66.750 C 82.581 54.192,82.601 49.030,82.625 55.279 C 82.649 61.528,82.649 71.803,82.625 78.112 M90.606 44.250 C 90.682 44.447,91.028 44.500,92.248 44.500 C 93.654 44.500,93.802 44.530,93.882 44.833 C 93.952 45.104,94.109 45.167,94.717 45.167 C 95.228 45.167,95.495 45.246,95.560 45.417 C 95.616 45.563,95.866 45.667,96.161 45.667 C 96.499 45.667,96.667 45.749,96.667 45.917 C 96.667 46.081,96.831 46.167,97.147 46.167 C 97.488 46.167,97.653 46.264,97.715 46.500 C 97.778 46.743,97.942 46.833,98.318 46.833 C 98.665 46.833,98.833 46.915,98.833 47.083 C 98.833 47.221,98.946 47.333,99.083 47.333 C 99.221 47.333,99.333 47.446,99.333 47.583 C 99.333 47.721,99.446 47.833,99.583 47.833 C 99.721 47.833,99.833 47.946,99.833 48.083 C 99.833 48.221,99.953 48.333,100.099 48.333 C 100.245 48.333,100.404 48.483,100.452 48.667 C 100.500 48.850,100.643 49.000,100.769 49.000 C 100.896 49.000,101.000 49.112,101.000 49.250 C 101.000 49.387,101.112 49.500,101.250 49.500 C 101.388 49.500,101.500 49.604,101.500 49.731 C 101.500 49.857,101.653 50.001,101.840 50.050 C 102.114 50.122,102.158 50.225,102.069 50.580 C 101.979 50.939,102.024 51.038,102.313 51.113 C 102.570 51.180,102.667 51.336,102.667 51.686 C 102.667 52.002,102.752 52.167,102.917 52.167 C 103.056 52.167,103.167 52.315,103.167 52.500 C 103.167 52.685,103.278 52.833,103.417 52.833 C 103.602 52.833,103.667 53.028,103.667 53.583 C 103.667 54.139,103.731 54.333,103.917 54.333 C 104.085 54.333,104.167 54.502,104.167 54.849 C 104.167 55.224,104.257 55.388,104.500 55.452 C 104.789 55.527,104.833 55.679,104.833 56.603 C 104.833 57.437,104.887 57.667,105.083 57.667 C 105.284 57.667,105.333 57.924,105.333 58.982 C 105.333 59.998,105.390 60.320,105.583 60.394 C 105.790 60.473,105.833 60.912,105.833 62.911 C 105.833 65.222,105.849 65.333,106.167 65.333 C 106.480 65.333,106.500 65.444,106.500 67.231 C 106.500 68.988,106.475 69.134,106.167 69.215 C 105.853 69.297,105.833 69.442,105.833 71.734 C 105.833 73.785,105.794 74.167,105.583 74.167 C 105.382 74.167,105.333 74.426,105.333 75.500 C 105.333 76.574,105.285 76.833,105.083 76.833 C 104.894 76.833,104.833 77.037,104.833 77.667 C 104.833 78.265,104.768 78.500,104.603 78.500 C 104.350 78.500,104.172 78.995,104.169 79.708 C 104.167 80.004,104.078 80.167,103.917 80.167 C 103.749 80.167,103.667 80.334,103.667 80.672 C 103.667 80.967,103.563 81.217,103.417 81.273 C 103.274 81.328,103.167 81.576,103.167 81.851 C 103.167 82.169,103.081 82.333,102.917 82.333 C 102.742 82.333,102.667 82.509,102.667 82.917 C 102.667 83.386,102.602 83.500,102.339 83.500 C 102.115 83.500,102.041 83.580,102.106 83.750 C 102.173 83.923,102.095 84.000,101.851 84.000 C 101.650 84.000,101.500 84.107,101.500 84.250 C 101.500 84.387,101.388 84.500,101.250 84.500 C 101.112 84.500,101.000 84.615,101.000 84.755 C 101.000 84.896,100.888 85.054,100.750 85.106 C 100.612 85.159,100.500 85.307,100.500 85.434 C 100.500 85.562,100.385 85.667,100.245 85.667 C 100.104 85.667,99.946 85.779,99.894 85.917 C 99.841 86.054,99.693 86.167,99.566 86.167 C 99.438 86.167,99.333 86.279,99.333 86.417 C 99.333 86.554,99.221 86.667,99.083 86.667 C 98.944 86.667,98.833 86.815,98.833 87.000 C 98.833 87.270,98.722 87.333,98.250 87.333 C 97.843 87.333,97.667 87.409,97.667 87.583 C 97.667 87.721,97.554 87.833,97.417 87.833 C 97.279 87.833,97.167 87.946,97.167 88.083 C 97.167 88.269,96.970 88.333,96.401 88.333 C 95.780 88.333,95.619 88.395,95.550 88.661 C 95.475 88.946,95.366 88.975,94.723 88.887 C 94.062 88.796,93.971 88.824,93.888 89.143 C 93.795 89.499,93.777 89.500,88.314 89.500 L 82.833 89.500 82.833 66.750 L 82.833 44.000 86.672 44.000 C 89.930 44.000,90.525 44.038,90.606 44.250 M140.831 45.167 C 140.907 45.167,140.929 45.462,140.880 45.823 C 140.768 46.658,140.935 47.333,141.253 47.333 C 141.451 47.333,141.500 47.600,141.500 48.667 C 141.500 49.741,141.549 50.000,141.750 50.000 C 141.947 50.000,142.000 50.231,142.000 51.083 C 142.000 51.935,142.053 52.167,142.250 52.167 C 142.448 52.167,142.500 52.406,142.500 53.320 C 142.500 54.620,142.598 55.000,142.934 55.000 C 143.109 55.000,143.167 55.268,143.167 56.083 C 143.167 56.935,143.220 57.167,143.417 57.167 C 143.613 57.167,143.667 57.398,143.667 58.250 C 143.667 59.102,143.720 59.333,143.917 59.333 C 144.113 59.333,144.167 59.565,144.167 60.417 C 144.167 61.390,144.201 61.500,144.501 61.500 C 144.810 61.500,144.832 61.596,144.792 62.761 C 144.757 63.816,144.798 64.049,145.042 64.186 C 145.272 64.316,145.333 64.575,145.333 65.425 C 145.333 66.269,145.387 66.500,145.583 66.500 C 145.780 66.500,145.833 66.731,145.833 67.583 C 145.833 68.435,145.887 68.667,146.083 68.667 C 146.280 68.667,146.333 68.898,146.333 69.750 C 146.333 70.722,146.368 70.833,146.667 70.833 C 146.972 70.833,147.000 70.944,147.000 72.167 L 147.000 73.500 140.417 73.500 C 134.676 73.500,133.833 73.468,133.833 73.250 C 133.833 73.112,133.946 73.000,134.083 73.000 C 134.280 73.000,134.333 72.769,134.333 71.917 C 134.333 71.065,134.387 70.833,134.583 70.833 C 134.780 70.833,134.833 70.602,134.833 69.750 C 134.833 68.935,134.891 68.667,135.066 68.667 C 135.396 68.667,135.500 68.289,135.500 67.088 C 135.500 66.306,135.564 66.011,135.750 65.940 C 135.937 65.868,136.000 65.569,136.000 64.755 C 136.000 63.899,136.053 63.667,136.250 63.667 C 136.447 63.667,136.500 63.435,136.500 62.583 C 136.500 61.731,136.553 61.500,136.750 61.500 C 136.951 61.500,137.000 61.241,137.000 60.167 C 137.000 58.944,137.028 58.833,137.333 58.833 C 137.632 58.833,137.667 58.722,137.667 57.750 C 137.667 56.898,137.720 56.667,137.917 56.667 C 138.113 56.667,138.167 56.437,138.167 55.601 C 138.167 54.808,138.231 54.511,138.417 54.440 C 138.610 54.365,138.667 54.041,138.667 53.005 C 138.667 51.778,138.694 51.667,139.000 51.667 C 139.299 51.667,139.333 51.556,139.333 50.583 C 139.333 49.731,139.387 49.500,139.583 49.500 C 139.779 49.500,139.833 49.270,139.833 48.434 C 139.833 47.616,139.894 47.346,140.098 47.268 C 140.310 47.186,140.351 46.953,140.306 46.081 C 140.262 45.229,140.298 45.014,140.472 45.081 C 140.594 45.128,140.756 45.167,140.831 45.167 M248.167 46.486 C 248.167 46.662,248.247 46.832,248.346 46.865 C 248.444 46.898,248.562 47.411,248.608 48.004 C 248.654 48.598,248.754 49.233,248.829 49.417 C 249.136 50.163,249.312 50.788,249.410 51.492 C 249.468 51.900,249.576 52.312,249.651 52.408 C 249.726 52.505,249.833 52.990,249.889 53.487 C 249.945 53.984,250.068 54.468,250.162 54.562 C 250.256 54.656,250.333 55.126,250.333 55.607 C 250.333 56.087,250.408 56.527,250.500 56.583 C 250.592 56.640,250.667 56.836,250.667 57.020 C 250.667 57.221,250.740 57.308,250.852 57.239 C 250.982 57.158,251.003 57.322,250.923 57.796 C 250.861 58.165,250.881 58.605,250.969 58.775 C 251.331 59.476,251.479 59.960,251.572 60.743 C 251.626 61.198,251.744 61.644,251.835 61.735 C 251.926 61.826,252.000 62.179,252.000 62.519 C 252.000 62.860,252.072 63.164,252.161 63.194 C 252.249 63.225,252.373 63.700,252.436 64.250 C 252.499 64.800,252.610 65.290,252.684 65.338 C 252.819 65.428,253.121 66.840,253.280 68.125 C 253.328 68.515,253.434 68.833,253.517 68.833 C 253.599 68.833,253.667 69.152,253.668 69.542 C 253.668 69.931,253.781 70.465,253.918 70.727 C 254.055 70.990,254.167 71.496,254.167 71.852 C 254.167 72.209,254.242 72.500,254.333 72.500 C 254.425 72.500,254.500 72.650,254.500 72.833 C 254.500 73.017,254.575 73.167,254.667 73.167 C 254.758 73.167,254.833 73.260,254.833 73.375 C 254.833 73.539,253.430 73.574,248.250 73.538 L 241.667 73.492 241.667 72.663 C 241.667 72.037,241.728 71.833,241.917 71.833 C 242.118 71.833,242.167 71.574,242.167 70.500 C 242.167 69.426,242.215 69.167,242.417 69.167 C 242.613 69.167,242.667 68.935,242.667 68.083 C 242.667 67.231,242.720 67.000,242.917 67.000 C 243.113 67.000,243.167 66.771,243.167 65.936 C 243.167 65.012,243.211 64.861,243.500 64.785 C 243.787 64.710,243.833 64.558,243.833 63.700 C 243.833 62.967,243.900 62.677,244.083 62.606 C 244.268 62.536,244.333 62.244,244.333 61.500 C 244.333 60.756,244.399 60.464,244.583 60.394 C 244.776 60.320,244.833 60.000,244.833 59.002 C 244.833 57.829,244.866 57.697,245.180 57.615 C 245.453 57.543,245.521 57.405,245.497 56.970 C 245.435 55.856,245.496 55.500,245.750 55.500 C 245.946 55.500,246.000 55.270,246.000 54.434 C 246.000 53.641,246.064 53.344,246.250 53.273 C 246.442 53.200,246.500 52.884,246.500 51.922 C 246.500 50.917,246.550 50.667,246.750 50.667 C 246.948 50.667,247.000 50.426,247.000 49.500 C 247.000 48.444,247.032 48.333,247.333 48.333 C 247.632 48.333,247.667 48.222,247.667 47.250 C 247.667 46.398,247.720 46.167,247.917 46.167 C 248.054 46.167,248.167 46.310,248.167 46.486 M294.042 60.458 C 292.735 60.486,290.598 60.486,289.292 60.458 C 287.985 60.430,289.054 60.407,291.667 60.407 C 294.279 60.407,295.348 60.430,294.042 60.458 M106.366 62.417 L 106.449 62.083 106.433 62.417 C 106.409 62.897,106.090 62.828,106.050 62.333 L 106.016 61.917 106.149 62.333 C 106.271 62.713,106.290 62.721,106.366 62.417 M47.917 66.333 C 47.985 66.444,44.224 66.500,36.760 66.500 C 29.364 66.500,25.500 66.443,25.500 66.333 C 25.500 66.224,29.330 66.167,36.657 66.167 C 43.915 66.167,47.850 66.225,47.917 66.333 M298.548 71.667 C 298.620 71.939,298.776 72.000,299.401 72.000 C 299.970 72.000,300.167 72.064,300.167 72.250 C 300.167 72.387,300.271 72.500,300.399 72.500 C 300.527 72.500,300.674 72.612,300.727 72.750 C 300.780 72.887,300.960 73.000,301.128 73.000 C 301.519 73.000,302.833 74.370,302.833 74.777 C 302.833 74.947,302.983 75.180,303.167 75.295 C 303.350 75.409,303.500 75.682,303.500 75.900 C 303.500 76.119,303.601 76.337,303.725 76.384 C 303.860 76.436,303.990 76.854,304.049 77.426 C 304.103 77.951,304.227 78.460,304.324 78.557 C 304.615 78.848,304.553 83.526,304.251 84.106 C 304.114 84.369,304.002 84.855,304.001 85.188 C 304.000 85.521,303.888 85.886,303.750 86.000 C 303.612 86.114,303.500 86.385,303.500 86.602 C 303.500 86.819,303.350 87.091,303.167 87.205 C 302.983 87.320,302.833 87.508,302.833 87.623 C 302.833 87.739,302.721 87.833,302.583 87.833 C 302.446 87.833,302.333 87.946,302.333 88.083 C 302.333 88.221,302.221 88.333,302.083 88.333 C 301.946 88.333,301.833 88.437,301.833 88.564 C 301.833 88.691,301.683 88.834,301.500 88.882 C 301.317 88.930,301.167 89.088,301.167 89.234 C 301.167 89.418,301.013 89.500,300.667 89.500 C 300.333 89.500,300.167 89.583,300.167 89.750 C 300.167 89.925,299.991 90.000,299.583 90.000 C 299.176 90.000,299.000 90.075,299.000 90.250 C 299.000 90.468,298.222 90.500,293.000 90.500 L 287.000 90.500 287.000 80.917 L 287.000 71.333 292.731 71.333 C 298.321 71.333,298.463 71.341,298.548 71.667 M188.294 78.115 C 188.134 78.156,187.834 78.158,187.627 78.118 C 187.420 78.078,187.550 78.044,187.917 78.042 C 188.283 78.040,188.453 78.073,188.294 78.115 M252.804 85.958 C 250.175 85.984,245.825 85.984,243.137 85.958 C 240.449 85.933,242.600 85.911,247.917 85.911 C 253.233 85.911,255.432 85.932,252.804 85.958 M145.470 86.292 C 142.841 86.317,138.491 86.317,135.804 86.292 C 133.116 86.266,135.267 86.245,140.583 86.245 C 145.900 86.245,148.099 86.266,145.470 86.292 ", stroke: "none", fill: "#241c24", fillRule: "evenodd" }),
12
- React.createElement("path", { id: "path4", d: "", stroke: "none", fill: "#181c50", fillRule: "evenodd" }))));
6
+ exports.Logo = (props) => (React.createElement("svg", Object.assign({ width: "45", height: "45", viewBox: "0 0 45 45", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, props),
7
+ React.createElement("path", { d: "M0 8C0 3.58172 3.58172 0 8 0H12.6699V12.6H0V8Z", fill: "#004C79" }),
8
+ React.createElement("path", { d: "M16.165 0H36.9999C41.4182 0 45 3.58172 45 8V12.6H16.165V0Z", fill: "#004C79" }),
9
+ React.createElement("path", { d: "M0 32.4H28.8349V45H8C3.58173 45 0 41.4183 0 37V32.4Z", fill: "#004C79" }),
10
+ React.createElement("path", { d: "M32.3301 32.4H45V37C45 41.4183 41.4182 45 37 45H32.3301V32.4Z", fill: "#004C79" }),
11
+ React.createElement("rect", { x: "32.3301", y: "16.2001", width: "12.6699", height: "12.6", fill: "#004C79" }),
12
+ React.createElement("rect", { x: "16.165", y: "16.2001", width: "12.6699", height: "12.6", fill: "#00CAF2" }),
13
+ React.createElement("rect", { y: "16.2001", width: "12.6699", height: "12.6", fill: "#004C79" })));
@@ -11,4 +11,4 @@ export interface IPopupWithFooterProps extends DialogProps {
11
11
  footer: React.ReactNode;
12
12
  children: React.ReactNode;
13
13
  }
14
- export declare const PopupWithFooter: React.ForwardRefExoticComponent<Pick<IPopupWithFooterProps, "fixed" | "max" | "required" | "default" | "high" | "low" | "disabled" | "start" | "open" | "media" | "hidden" | "cite" | "data" | "dir" | "footer" | "form" | "label" | "p" | "slot" | "span" | "style" | "summary" | "title" | "pattern" | "async" | "defer" | "manifest" | "m" | "color" | "content" | "size" | "flex" | "wrap" | "padding" | "multiple" | "alignSelf" | "backgroundColor" | "fontSize" | "height" | "marginBottom" | "marginLeft" | "marginRight" | "marginTop" | "maxWidth" | "opacity" | "order" | "paddingBottom" | "paddingLeft" | "paddingRight" | "paddingTop" | "translate" | "width" | "margin" | "children" | "key" | "list" | "step" | "contextMenu" | "type" | "min" | "rows" | "download" | "value" | "checked" | "onClick" | "colSpan" | "rowSpan" | "modal" | "name" | "className" | "id" | "lang" | "method" | "target" | "role" | "tabIndex" | "crossOrigin" | "href" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "classID" | "useMap" | "wmode" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "draggable" | "placeholder" | "spellCheck" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "as" | "hrefLang" | "integrity" | "rel" | "sizes" | "charSet" | "kind" | "src" | "srcLang" | "alt" | "coords" | "shape" | "autoPlay" | "controls" | "loop" | "mediaGroup" | "muted" | "playsInline" | "preload" | "autoFocus" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "dateTime" | "acceptCharset" | "action" | "autoComplete" | "encType" | "noValidate" | "allowFullScreen" | "allowTransparency" | "frameBorder" | "marginHeight" | "marginWidth" | "sandbox" | "scrolling" | "seamless" | "srcDoc" | "srcSet" | "accept" | "capture" | "maxLength" | "minLength" | "readOnly" | "htmlFor" | "httpEquiv" | "optimum" | "reversed" | "selected" | "nonce" | "scoped" | "cellPadding" | "cellSpacing" | "headers" | "scope" | "cols" | "poster" | "challenge" | "keyType" | "keyParams" | "mt" | "mb" | "ml" | "mr" | "my" | "marginY" | "mx" | "marginX" | "pt" | "pr" | "pb" | "pl" | "px" | "paddingX" | "py" | "paddingY" | "css" | "bg" | "onHide" | "isOpen" | "focusOnBrowserVisible" | "windowModal" | "windowModalProps" | "modalProps" | "defaultIsOpen" | "showCloseButton" | "onDismiss" | "dismissOnClickOutside" | "showModal"> & React.RefAttributes<HTMLElement>>;
14
+ export declare const PopupWithFooter: React.ForwardRefExoticComponent<Pick<IPopupWithFooterProps, "fixed" | "max" | "required" | "default" | "high" | "low" | "disabled" | "start" | "open" | "media" | "hidden" | "cite" | "data" | "dir" | "footer" | "form" | "label" | "p" | "slot" | "span" | "style" | "summary" | "title" | "pattern" | "async" | "defer" | "manifest" | "m" | "color" | "content" | "size" | "flex" | "wrap" | "padding" | "multiple" | "alignSelf" | "backgroundColor" | "fontSize" | "height" | "marginBottom" | "marginLeft" | "marginRight" | "marginTop" | "maxWidth" | "opacity" | "order" | "paddingBottom" | "paddingLeft" | "paddingRight" | "paddingTop" | "translate" | "width" | "margin" | "children" | "key" | "list" | "step" | "contextMenu" | "type" | "min" | "rows" | "download" | "value" | "checked" | "onClick" | "name" | "colSpan" | "rowSpan" | "modal" | "className" | "id" | "lang" | "method" | "target" | "role" | "tabIndex" | "crossOrigin" | "href" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "classID" | "useMap" | "wmode" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "draggable" | "placeholder" | "spellCheck" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "as" | "hrefLang" | "integrity" | "rel" | "sizes" | "charSet" | "kind" | "src" | "srcLang" | "alt" | "coords" | "shape" | "autoPlay" | "controls" | "loop" | "mediaGroup" | "muted" | "playsInline" | "preload" | "autoFocus" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "dateTime" | "acceptCharset" | "action" | "autoComplete" | "encType" | "noValidate" | "allowFullScreen" | "allowTransparency" | "frameBorder" | "marginHeight" | "marginWidth" | "sandbox" | "scrolling" | "seamless" | "srcDoc" | "srcSet" | "accept" | "capture" | "maxLength" | "minLength" | "readOnly" | "htmlFor" | "httpEquiv" | "optimum" | "reversed" | "selected" | "nonce" | "scoped" | "cellPadding" | "cellSpacing" | "headers" | "scope" | "cols" | "poster" | "challenge" | "keyType" | "keyParams" | "mt" | "mb" | "ml" | "mr" | "my" | "marginY" | "mx" | "marginX" | "pt" | "pr" | "pb" | "pl" | "px" | "paddingX" | "py" | "paddingY" | "css" | "bg" | "onHide" | "isOpen" | "focusOnBrowserVisible" | "windowModal" | "windowModalProps" | "modalProps" | "defaultIsOpen" | "showCloseButton" | "onDismiss" | "dismissOnClickOutside" | "showModal"> & React.RefAttributes<HTMLElement>>;
@@ -7,5 +7,5 @@ export declare type TextareaProps = HTMLProps<HTMLTextAreaElement> & {
7
7
  type?: string;
8
8
  disabled?: boolean;
9
9
  } & BoxProps;
10
- declare const Textarea: React.ForwardRefExoticComponent<Pick<TextareaProps, "max" | "required" | "default" | "high" | "low" | "disabled" | "start" | "open" | "media" | "hidden" | "cite" | "data" | "dir" | "form" | "label" | "p" | "slot" | "span" | "style" | "summary" | "title" | "pattern" | "async" | "defer" | "manifest" | "m" | "color" | "content" | "size" | "flex" | "wrap" | "padding" | "multiple" | "alignSelf" | "backgroundColor" | "fontSize" | "height" | "marginBottom" | "marginLeft" | "marginRight" | "marginTop" | "opacity" | "order" | "paddingBottom" | "paddingLeft" | "paddingRight" | "paddingTop" | "translate" | "width" | "margin" | "children" | "key" | "list" | "step" | "contextMenu" | "type" | "min" | "rows" | "download" | "value" | "checked" | "onClick" | "colSpan" | "rowSpan" | "name" | "className" | "id" | "lang" | "method" | "target" | "role" | "tabIndex" | "crossOrigin" | "href" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "classID" | "useMap" | "wmode" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "draggable" | "placeholder" | "spellCheck" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "as" | "hrefLang" | "integrity" | "rel" | "sizes" | "charSet" | "kind" | "src" | "srcLang" | "alt" | "coords" | "shape" | "autoPlay" | "controls" | "loop" | "mediaGroup" | "muted" | "playsInline" | "preload" | "autoFocus" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "dateTime" | "acceptCharset" | "action" | "autoComplete" | "encType" | "noValidate" | "allowFullScreen" | "allowTransparency" | "frameBorder" | "marginHeight" | "marginWidth" | "sandbox" | "scrolling" | "seamless" | "srcDoc" | "srcSet" | "accept" | "capture" | "maxLength" | "minLength" | "readOnly" | "htmlFor" | "httpEquiv" | "optimum" | "reversed" | "selected" | "nonce" | "scoped" | "cellPadding" | "cellSpacing" | "headers" | "scope" | "cols" | "poster" | "challenge" | "keyType" | "keyParams" | "mt" | "mb" | "ml" | "mr" | "my" | "marginY" | "mx" | "marginX" | "pt" | "pr" | "pb" | "pl" | "px" | "paddingX" | "py" | "paddingY" | "css" | "bg" | "placehoder"> & React.RefAttributes<unknown>>;
10
+ declare const Textarea: React.ForwardRefExoticComponent<Pick<TextareaProps, "max" | "required" | "default" | "high" | "low" | "disabled" | "start" | "open" | "media" | "hidden" | "cite" | "data" | "dir" | "form" | "label" | "p" | "slot" | "span" | "style" | "summary" | "title" | "pattern" | "async" | "defer" | "manifest" | "m" | "color" | "content" | "size" | "flex" | "wrap" | "padding" | "multiple" | "alignSelf" | "backgroundColor" | "fontSize" | "height" | "marginBottom" | "marginLeft" | "marginRight" | "marginTop" | "opacity" | "order" | "paddingBottom" | "paddingLeft" | "paddingRight" | "paddingTop" | "translate" | "width" | "margin" | "children" | "key" | "list" | "step" | "contextMenu" | "type" | "min" | "rows" | "download" | "value" | "checked" | "onClick" | "name" | "colSpan" | "rowSpan" | "className" | "id" | "lang" | "method" | "target" | "role" | "tabIndex" | "crossOrigin" | "href" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "classID" | "useMap" | "wmode" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "draggable" | "placeholder" | "spellCheck" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "as" | "hrefLang" | "integrity" | "rel" | "sizes" | "charSet" | "kind" | "src" | "srcLang" | "alt" | "coords" | "shape" | "autoPlay" | "controls" | "loop" | "mediaGroup" | "muted" | "playsInline" | "preload" | "autoFocus" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "dateTime" | "acceptCharset" | "action" | "autoComplete" | "encType" | "noValidate" | "allowFullScreen" | "allowTransparency" | "frameBorder" | "marginHeight" | "marginWidth" | "sandbox" | "scrolling" | "seamless" | "srcDoc" | "srcSet" | "accept" | "capture" | "maxLength" | "minLength" | "readOnly" | "htmlFor" | "httpEquiv" | "optimum" | "reversed" | "selected" | "nonce" | "scoped" | "cellPadding" | "cellSpacing" | "headers" | "scope" | "cols" | "poster" | "challenge" | "keyType" | "keyParams" | "mt" | "mb" | "ml" | "mr" | "my" | "marginY" | "mx" | "marginX" | "pt" | "pr" | "pb" | "pl" | "px" | "paddingX" | "py" | "paddingY" | "css" | "bg" | "placehoder"> & React.RefAttributes<unknown>>;
11
11
  export default Textarea;
@@ -4,4 +4,5 @@ const tslib_1 = require("tslib");
4
4
  const React = tslib_1.__importStar(require("react"));
5
5
  const DefaultIcon_1 = tslib_1.__importDefault(require("./DefaultIcon"));
6
6
  exports.default = (props) => (React.createElement(DefaultIcon_1.default, Object.assign({}, props),
7
- React.createElement("path", { d: "M10.82 12.49c.02-.16.04-.32.04-.49 0-.17-.02-.33-.04-.49l1.08-.82c.1-.07.12-.21.06-.32l-1.03-1.73c-.06-.11-.2-.15-.31-.11l-1.28.5c-.27-.2-.56-.36-.87-.49l-.2-1.33c0-.12-.11-.21-.24-.21H5.98c-.13 0-.24.09-.26.21l-.2 1.32c-.31.12-.6.3-.87.49l-1.28-.5c-.12-.05-.25 0-.31.11l-1.03 1.73c-.06.12-.03.25.07.33l1.08.82c-.02.16-.03.33-.03.49 0 .17.02.33.04.49l-1.09.83c-.1.07-.12.21-.06.32l1.03 1.73c.06.11.2.15.31.11l1.28-.5c.27.2.56.36.87.49l.2 1.32c.01.12.12.21.25.21h2.06c.13 0 .24-.09.25-.21l.2-1.32c.31-.12.6-.3.87-.49l1.28.5c.12.05.25 0 .31-.11l1.03-1.73c.06-.11.04-.24-.06-.32l-1.1-.83zM7 13.75c-.99 0-1.8-.78-1.8-1.75s.81-1.75 1.8-1.75 1.8.78 1.8 1.75S8 13.75 7 13.75zM18 1.01L8 1c-1.1 0-2 .9-2 2v3h2V5h10v14H8v-1H6v3c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99z" })));
7
+ React.createElement("path", { d: "M14.67 14.4337V21.7831H9.33V14.4337H14.67ZM15.67 21.7831L20.9277 21.8072V14.4337H15.67V21.7831ZM8.33 21.7831V2.14458H3V21.7831H8.33Z" }),
8
+ React.createElement("path", { d: "M19.6426 2H10.6466C9.93976 2 9.36145 2.57831 9.36145 3.28514V12.2811C9.36145 12.988 9.93976 13.5663 10.6466 13.5663H19.6426C20.3494 13.5663 20.9277 12.988 20.9277 12.2811V3.28514C20.9277 2.57831 20.3494 2 19.6426 2ZM15.8064 4.60884L16.4876 3.92771L17.3936 4.83373L18.2996 3.92771L18.9807 4.60884L18.0747 5.51486L18.9807 6.42088L18.2996 7.10201L17.3936 6.20241L16.4876 7.10843L15.8064 6.42731L16.7124 5.52128L15.8064 4.60884ZM11.4498 5.03293H14.6627V5.99679H11.4498V5.03293ZM14.8233 10.3534H13.5382V11.6386H12.5743V10.3534H11.2892V9.38956H12.5743V8.10442H13.5382V9.38956H14.8233V10.3534ZM19 11.1566H15.7871V10.1928H19V11.1566ZM19 9.5502H15.7871V8.58635H19V9.5502Z" })));