@grafana/plugin-ui 0.9.5 → 0.10.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/index.d.cts +1205 -0
- package/dist/cjs/index.js +9739 -0
- package/dist/cjs/index.js.map +1 -0
- package/dist/esm/components/ConfigEditor/AdvancedSettings/AdvancedHttpSettings.js +80 -0
- package/dist/esm/components/ConfigEditor/AdvancedSettings/AdvancedHttpSettings.js.map +1 -0
- package/dist/esm/components/ConfigEditor/Auth/Auth.js +43 -0
- package/dist/esm/components/ConfigEditor/Auth/Auth.js.map +1 -0
- package/dist/esm/components/ConfigEditor/Auth/auth-method/AuthMethodSettings.js +132 -0
- package/dist/esm/components/ConfigEditor/Auth/auth-method/AuthMethodSettings.js.map +1 -0
- package/dist/esm/components/ConfigEditor/Auth/auth-method/BasicAuth.js +82 -0
- package/dist/esm/components/ConfigEditor/Auth/auth-method/BasicAuth.js.map +1 -0
- package/dist/esm/components/ConfigEditor/Auth/custom-headers/CustomHeader.js +91 -0
- package/dist/esm/components/ConfigEditor/Auth/custom-headers/CustomHeader.js.map +1 -0
- package/dist/esm/components/ConfigEditor/Auth/custom-headers/CustomHeaders.js +101 -0
- package/dist/esm/components/ConfigEditor/Auth/custom-headers/CustomHeaders.js.map +1 -0
- package/dist/esm/components/ConfigEditor/Auth/styles.js +18 -0
- package/dist/esm/components/ConfigEditor/Auth/styles.js.map +1 -0
- package/dist/esm/components/ConfigEditor/Auth/tls/SelfSignedCertificate.js +58 -0
- package/dist/esm/components/ConfigEditor/Auth/tls/SelfSignedCertificate.js.map +1 -0
- package/dist/esm/components/ConfigEditor/Auth/tls/SkipTLSVerification.js +18 -0
- package/dist/esm/components/ConfigEditor/Auth/tls/SkipTLSVerification.js.map +1 -0
- package/dist/esm/components/ConfigEditor/Auth/tls/TLSClientAuth.js +114 -0
- package/dist/esm/components/ConfigEditor/Auth/tls/TLSClientAuth.js.map +1 -0
- package/dist/esm/components/ConfigEditor/Auth/tls/TLSSettings.js +31 -0
- package/dist/esm/components/ConfigEditor/Auth/tls/TLSSettings.js.map +1 -0
- package/dist/esm/components/ConfigEditor/Auth/tls/TLSSettingsSection.js +35 -0
- package/dist/esm/components/ConfigEditor/Auth/tls/TLSSettingsSection.js.map +1 -0
- package/dist/esm/components/ConfigEditor/Auth/types.js +12 -0
- package/dist/esm/components/ConfigEditor/Auth/types.js.map +1 -0
- package/dist/esm/components/ConfigEditor/Auth/utils.js +200 -0
- package/dist/esm/components/ConfigEditor/Auth/utils.js.map +1 -0
- package/dist/esm/components/ConfigEditor/ConfigSection/ConfigDescriptionLink.js +38 -0
- package/dist/esm/components/ConfigEditor/ConfigSection/ConfigDescriptionLink.js.map +1 -0
- package/dist/esm/components/ConfigEditor/ConfigSection/ConfigSection.js +9 -0
- package/dist/esm/components/ConfigEditor/ConfigSection/ConfigSection.js.map +1 -0
- package/dist/esm/components/ConfigEditor/ConfigSection/ConfigSubSection.js +9 -0
- package/dist/esm/components/ConfigEditor/ConfigSection/ConfigSubSection.js.map +1 -0
- package/dist/esm/components/ConfigEditor/ConfigSection/GenericConfigSection.js +55 -0
- package/dist/esm/components/ConfigEditor/ConfigSection/GenericConfigSection.js.map +1 -0
- package/dist/esm/components/ConfigEditor/Connection/ConnectionSettings.js +53 -0
- package/dist/esm/components/ConfigEditor/Connection/ConnectionSettings.js.map +1 -0
- package/dist/esm/components/ConfigEditor/DataSourceDescription.js +32 -0
- package/dist/esm/components/ConfigEditor/DataSourceDescription.js.map +1 -0
- package/dist/esm/components/ConfigEditor/SecureSocksProxyToggle.js +45 -0
- package/dist/esm/components/ConfigEditor/SecureSocksProxyToggle.js.map +1 -0
- package/dist/esm/components/CustomHeadersSettings/CustomHeadersSettings.js +182 -0
- package/dist/esm/components/CustomHeadersSettings/CustomHeadersSettings.js.map +1 -0
- package/dist/esm/components/DataLinks/DataLink.js +144 -0
- package/dist/esm/components/DataLinks/DataLink.js.map +1 -0
- package/dist/esm/components/DataLinks/DataLinks.js +66 -0
- package/dist/esm/components/DataLinks/DataLinks.js.map +1 -0
- package/dist/esm/components/DataSourcePicker/DataSourcePicker.js +103 -0
- package/dist/esm/components/DataSourcePicker/DataSourcePicker.js.map +1 -0
- package/dist/esm/components/DatePicker/DatePicker.js +39 -0
- package/dist/esm/components/DatePicker/DatePicker.js.map +1 -0
- package/dist/{components → esm/components}/DatePicker/styles.js +20 -21
- package/dist/esm/components/DatePicker/styles.js.map +1 -0
- package/dist/esm/components/DatePickerWithInput/DatePickerWithInput.js +28 -0
- package/dist/esm/components/DatePickerWithInput/DatePickerWithInput.js.map +1 -0
- package/dist/esm/components/DatePickerWithInput/styles.js +16 -0
- package/dist/esm/components/DatePickerWithInput/styles.js.map +1 -0
- package/dist/esm/components/DebounceInput/DebounceInput.js +15 -0
- package/dist/esm/components/DebounceInput/DebounceInput.js.map +1 -0
- package/dist/esm/components/Plugins/PluginSignatureBadge.js +57 -0
- package/dist/esm/components/Plugins/PluginSignatureBadge.js.map +1 -0
- package/dist/esm/components/QueryEditor/AccessoryButton.js +18 -0
- package/dist/esm/components/QueryEditor/AccessoryButton.js.map +1 -0
- package/dist/esm/components/QueryEditor/ConfirmModal.js +26 -0
- package/dist/esm/components/QueryEditor/ConfirmModal.js.map +1 -0
- package/dist/esm/components/QueryEditor/DatasetSelector.js +56 -0
- package/dist/esm/components/QueryEditor/DatasetSelector.js.map +1 -0
- package/dist/esm/components/QueryEditor/EditorField.js +42 -0
- package/dist/esm/components/QueryEditor/EditorField.js.map +1 -0
- package/dist/esm/components/QueryEditor/EditorFieldGroup.js +9 -0
- package/dist/esm/components/QueryEditor/EditorFieldGroup.js.map +1 -0
- package/dist/esm/components/QueryEditor/EditorHeader.js +21 -0
- package/dist/esm/components/QueryEditor/EditorHeader.js.map +1 -0
- package/dist/esm/components/QueryEditor/EditorList.js +28 -0
- package/dist/esm/components/QueryEditor/EditorList.js.map +1 -0
- package/dist/esm/components/QueryEditor/EditorRow.js +22 -0
- package/dist/esm/components/QueryEditor/EditorRow.js.map +1 -0
- package/dist/esm/components/QueryEditor/EditorRows.js +9 -0
- package/dist/esm/components/QueryEditor/EditorRows.js.map +1 -0
- package/dist/esm/components/QueryEditor/EditorStack.js +11 -0
- package/dist/esm/components/QueryEditor/EditorStack.js.map +1 -0
- package/dist/esm/components/QueryEditor/EditorSwitch.js +20 -0
- package/dist/esm/components/QueryEditor/EditorSwitch.js.map +1 -0
- package/dist/esm/components/QueryEditor/FlexItem.js +8 -0
- package/dist/esm/components/QueryEditor/FlexItem.js.map +1 -0
- package/dist/esm/components/QueryEditor/InlineSelect.js +50 -0
- package/dist/esm/components/QueryEditor/InlineSelect.js.map +1 -0
- package/dist/esm/components/QueryEditor/InputGroup.js +63 -0
- package/dist/esm/components/QueryEditor/InputGroup.js.map +1 -0
- package/dist/esm/components/QueryEditor/QueryEditor.js +110 -0
- package/dist/esm/components/QueryEditor/QueryEditor.js.map +1 -0
- package/dist/esm/components/QueryEditor/QueryHeader.js +172 -0
- package/dist/esm/components/QueryEditor/QueryHeader.js.map +1 -0
- package/dist/esm/components/QueryEditor/RunQueryButton.js +42 -0
- package/dist/esm/components/QueryEditor/RunQueryButton.js.map +1 -0
- package/dist/esm/components/QueryEditor/Space.js +35 -0
- package/dist/esm/components/QueryEditor/Space.js.map +1 -0
- package/dist/esm/components/QueryEditor/TableSelector.js +33 -0
- package/dist/esm/components/QueryEditor/TableSelector.js.map +1 -0
- package/dist/esm/components/QueryEditor/defaults.js +25 -0
- package/dist/esm/components/QueryEditor/defaults.js.map +1 -0
- package/dist/esm/components/QueryEditor/expressions.js +17 -0
- package/dist/esm/components/QueryEditor/expressions.js.map +1 -0
- package/dist/esm/components/QueryEditor/query-editor-raw/QueryEditorRaw.js +39 -0
- package/dist/esm/components/QueryEditor/query-editor-raw/QueryEditorRaw.js.map +1 -0
- package/dist/esm/components/QueryEditor/query-editor-raw/QueryToolbox.js +63 -0
- package/dist/esm/components/QueryEditor/query-editor-raw/QueryToolbox.js.map +1 -0
- package/dist/esm/components/QueryEditor/query-editor-raw/QueryValidator.js +72 -0
- package/dist/esm/components/QueryEditor/query-editor-raw/QueryValidator.js.map +1 -0
- package/dist/esm/components/QueryEditor/query-editor-raw/RawEditor.js +96 -0
- package/dist/esm/components/QueryEditor/query-editor-raw/RawEditor.js.map +1 -0
- package/dist/esm/components/QueryEditor/types.js +33 -0
- package/dist/esm/components/QueryEditor/types.js.map +1 -0
- package/dist/esm/components/QueryEditor/utils/formatSQL.js +10 -0
- package/dist/esm/components/QueryEditor/utils/formatSQL.js.map +1 -0
- package/dist/esm/components/QueryEditor/utils/sql.utils.js +93 -0
- package/dist/esm/components/QueryEditor/utils/sql.utils.js.map +1 -0
- package/dist/esm/components/QueryEditor/utils/useSqlChange.js +19 -0
- package/dist/esm/components/QueryEditor/utils/useSqlChange.js.map +1 -0
- package/dist/esm/components/QueryEditor/visual-query-builder/AwesomeQueryBuilder.js +216 -0
- package/dist/esm/components/QueryEditor/visual-query-builder/AwesomeQueryBuilder.js.map +1 -0
- package/dist/esm/components/QueryEditor/visual-query-builder/EditorField.js +44 -0
- package/dist/esm/components/QueryEditor/visual-query-builder/EditorField.js.map +1 -0
- package/dist/esm/components/QueryEditor/visual-query-builder/EditorRow.js +22 -0
- package/dist/esm/components/QueryEditor/visual-query-builder/EditorRow.js.map +1 -0
- package/dist/esm/components/QueryEditor/visual-query-builder/EditorRows.js +9 -0
- package/dist/esm/components/QueryEditor/visual-query-builder/EditorRows.js.map +1 -0
- package/dist/esm/components/QueryEditor/visual-query-builder/GroupByRow.js +51 -0
- package/dist/esm/components/QueryEditor/visual-query-builder/GroupByRow.js.map +1 -0
- package/dist/esm/components/QueryEditor/visual-query-builder/OrderByRow.js +70 -0
- package/dist/esm/components/QueryEditor/visual-query-builder/OrderByRow.js.map +1 -0
- package/dist/esm/components/QueryEditor/visual-query-builder/Preview.js +33 -0
- package/dist/esm/components/QueryEditor/visual-query-builder/Preview.js.map +1 -0
- package/dist/esm/components/QueryEditor/visual-query-builder/SQLGroupByRow.js +14 -0
- package/dist/esm/components/QueryEditor/visual-query-builder/SQLGroupByRow.js.map +1 -0
- package/dist/esm/components/QueryEditor/visual-query-builder/SQLOrderByRow.js +35 -0
- package/dist/esm/components/QueryEditor/visual-query-builder/SQLOrderByRow.js.map +1 -0
- package/dist/esm/components/QueryEditor/visual-query-builder/SQLSelectRow.js +19 -0
- package/dist/esm/components/QueryEditor/visual-query-builder/SQLSelectRow.js.map +1 -0
- package/dist/esm/components/QueryEditor/visual-query-builder/SQLWhereRow.js +40 -0
- package/dist/esm/components/QueryEditor/visual-query-builder/SQLWhereRow.js.map +1 -0
- package/dist/esm/components/QueryEditor/visual-query-builder/SelectRow.js +123 -0
- package/dist/esm/components/QueryEditor/visual-query-builder/SelectRow.js.map +1 -0
- package/dist/esm/components/QueryEditor/visual-query-builder/VisualEditor.js +24 -0
- package/dist/esm/components/QueryEditor/visual-query-builder/VisualEditor.js.map +1 -0
- package/dist/esm/components/QueryEditor/visual-query-builder/WhereRow.js +79 -0
- package/dist/esm/components/QueryEditor/visual-query-builder/WhereRow.js.map +1 -0
- package/dist/esm/components/QueryEditorRow/QueryEditorRow.js +11 -0
- package/dist/esm/components/QueryEditorRow/QueryEditorRow.js.map +1 -0
- package/dist/esm/components/SQLEditor/components/SQLEditor.js +339 -0
- package/dist/esm/components/SQLEditor/components/SQLEditor.js.map +1 -0
- package/dist/esm/components/SQLEditor/mocks/Monaco.js +19 -0
- package/dist/esm/components/SQLEditor/mocks/Monaco.js.map +1 -0
- package/dist/esm/components/SQLEditor/mocks/TextModel.js +21 -0
- package/dist/esm/components/SQLEditor/mocks/TextModel.js.map +1 -0
- package/dist/esm/components/SQLEditor/mocks/queries/multiLineFullQuery.js +217 -0
- package/dist/esm/components/SQLEditor/mocks/queries/multiLineFullQuery.js.map +1 -0
- package/dist/esm/components/SQLEditor/mocks/queries/multiLineFullQueryWithAggregation.js +232 -0
- package/dist/esm/components/SQLEditor/mocks/queries/multiLineFullQueryWithAggregation.js.map +1 -0
- package/dist/esm/components/SQLEditor/mocks/queries/multiLineMultipleColumns.js +272 -0
- package/dist/esm/components/SQLEditor/mocks/queries/multiLineMultipleColumns.js.map +1 -0
- package/dist/esm/components/SQLEditor/mocks/queries/singleLineEmptyQuery.js +9 -0
- package/dist/esm/components/SQLEditor/mocks/queries/singleLineEmptyQuery.js.map +1 -0
- package/dist/esm/components/SQLEditor/mocks/queries/singleLineFullQuery.js +197 -0
- package/dist/esm/components/SQLEditor/mocks/queries/singleLineFullQuery.js.map +1 -0
- package/dist/esm/components/SQLEditor/mocks/queries/singleLineFullQueryWithAggregation.js +212 -0
- package/dist/esm/components/SQLEditor/mocks/queries/singleLineFullQueryWithAggregation.js.map +1 -0
- package/dist/esm/components/SQLEditor/mocks/queries/singleLineMultipleColumns.js +252 -0
- package/dist/esm/components/SQLEditor/mocks/queries/singleLineMultipleColumns.js.map +1 -0
- package/dist/esm/components/SQLEditor/mocks/queries/singleLineTwoQueries.js +387 -0
- package/dist/esm/components/SQLEditor/mocks/queries/singleLineTwoQueries.js.map +1 -0
- package/dist/esm/components/SQLEditor/mocks/queries/singleLineTwoQueriesWithAggregation.js +417 -0
- package/dist/esm/components/SQLEditor/mocks/queries/singleLineTwoQueriesWithAggregation.js.map +1 -0
- package/dist/{src/components/SQLEditor/mocks/testData.d.ts → esm/components/SQLEditor/mocks/testData.js} +10 -9
- package/dist/esm/components/SQLEditor/mocks/testData.js.map +1 -0
- package/dist/esm/components/SQLEditor/standardSql/definition.js +19 -0
- package/dist/esm/components/SQLEditor/standardSql/definition.js.map +1 -0
- package/dist/esm/components/SQLEditor/standardSql/getStandardSuggestions.js +20 -0
- package/dist/esm/components/SQLEditor/standardSql/getStandardSuggestions.js.map +1 -0
- package/dist/esm/components/SQLEditor/standardSql/getStatementPosition.js +24 -0
- package/dist/esm/components/SQLEditor/standardSql/getStatementPosition.js.map +1 -0
- package/dist/esm/components/SQLEditor/standardSql/language.js +867 -0
- package/dist/esm/components/SQLEditor/standardSql/language.js.map +1 -0
- package/dist/esm/components/SQLEditor/standardSql/macros.js +58 -0
- package/dist/esm/components/SQLEditor/standardSql/macros.js.map +1 -0
- package/dist/esm/components/SQLEditor/standardSql/standardSQLCompletionItemProvider.js +34 -0
- package/dist/esm/components/SQLEditor/standardSql/standardSQLCompletionItemProvider.js.map +1 -0
- package/dist/esm/components/SQLEditor/standardSql/standardSuggestionsRegistry.js +367 -0
- package/dist/esm/components/SQLEditor/standardSql/standardSuggestionsRegistry.js.map +1 -0
- package/dist/esm/components/SQLEditor/standardSql/statementPositionResolversRegistry.js +215 -0
- package/dist/esm/components/SQLEditor/standardSql/statementPositionResolversRegistry.js.map +1 -0
- package/dist/esm/components/SQLEditor/standardSql/suggestionsKindRegistry.js +152 -0
- package/dist/esm/components/SQLEditor/standardSql/suggestionsKindRegistry.js.map +1 -0
- package/dist/esm/components/SQLEditor/test-utils/index.js +11 -0
- package/dist/esm/components/SQLEditor/test-utils/index.js.map +1 -0
- package/dist/esm/components/SQLEditor/test-utils/statementPosition.js +45 -0
- package/dist/esm/components/SQLEditor/test-utils/statementPosition.js.map +1 -0
- package/dist/esm/components/SQLEditor/types.js +140 -0
- package/dist/esm/components/SQLEditor/types.js.map +1 -0
- package/dist/esm/components/SQLEditor/utils/LinkedToken.js +145 -0
- package/dist/esm/components/SQLEditor/utils/LinkedToken.js.map +1 -0
- package/dist/esm/components/SQLEditor/utils/commands.js +7 -0
- package/dist/esm/components/SQLEditor/utils/commands.js.map +1 -0
- package/dist/esm/components/SQLEditor/utils/debugger.js +14 -0
- package/dist/esm/components/SQLEditor/utils/debugger.js.map +1 -0
- package/dist/esm/components/SQLEditor/utils/getSuggestionKind.js +16 -0
- package/dist/esm/components/SQLEditor/utils/getSuggestionKind.js.map +1 -0
- package/dist/esm/components/SQLEditor/utils/linkedTokenBuilder.js +45 -0
- package/dist/esm/components/SQLEditor/utils/linkedTokenBuilder.js.map +1 -0
- package/dist/esm/components/SQLEditor/utils/toCompletionItem.js +17 -0
- package/dist/esm/components/SQLEditor/utils/toCompletionItem.js.map +1 -0
- package/dist/esm/components/SQLEditor/utils/tokenUtils.js +36 -0
- package/dist/esm/components/SQLEditor/utils/tokenUtils.js.map +1 -0
- package/dist/esm/components/Segment/Segment.js +24 -0
- package/dist/esm/components/Segment/Segment.js.map +1 -0
- package/dist/esm/components/VisualQueryBuilder/QueryModellerBase.js +39 -0
- package/dist/esm/components/VisualQueryBuilder/QueryModellerBase.js.map +1 -0
- package/dist/esm/components/VisualQueryBuilder/components/LabelFilterItem.js +178 -0
- package/dist/esm/components/VisualQueryBuilder/components/LabelFilterItem.js.map +1 -0
- package/dist/esm/components/VisualQueryBuilder/components/LabelFilters.js +70 -0
- package/dist/esm/components/VisualQueryBuilder/components/LabelFilters.js.map +1 -0
- package/dist/esm/components/VisualQueryBuilder/components/OperationEditor.js +77 -0
- package/dist/esm/components/VisualQueryBuilder/components/OperationEditor.js.map +1 -0
- package/dist/esm/components/VisualQueryBuilder/components/OperationEditorBody.js +254 -0
- package/dist/esm/components/VisualQueryBuilder/components/OperationEditorBody.js.map +1 -0
- package/dist/esm/components/VisualQueryBuilder/components/OperationExplainedBox.js +55 -0
- package/dist/esm/components/VisualQueryBuilder/components/OperationExplainedBox.js.map +1 -0
- package/dist/esm/components/VisualQueryBuilder/components/OperationHeader.js +107 -0
- package/dist/esm/components/VisualQueryBuilder/components/OperationHeader.js.map +1 -0
- package/dist/esm/components/VisualQueryBuilder/components/OperationInfoButton.js +87 -0
- package/dist/esm/components/VisualQueryBuilder/components/OperationInfoButton.js.map +1 -0
- package/dist/esm/components/VisualQueryBuilder/components/OperationList.js +169 -0
- package/dist/esm/components/VisualQueryBuilder/components/OperationList.js.map +1 -0
- package/dist/esm/components/VisualQueryBuilder/components/OperationListExplained.js +43 -0
- package/dist/esm/components/VisualQueryBuilder/components/OperationListExplained.js.map +1 -0
- package/dist/esm/components/VisualQueryBuilder/components/OperationParamEditor.js +136 -0
- package/dist/esm/components/VisualQueryBuilder/components/OperationParamEditor.js.map +1 -0
- package/dist/esm/components/VisualQueryBuilder/components/OperationsEditorRow.js +39 -0
- package/dist/esm/components/VisualQueryBuilder/components/OperationsEditorRow.js.map +1 -0
- package/dist/esm/components/VisualQueryBuilder/components/QueryBuilderHints.js +73 -0
- package/dist/esm/components/VisualQueryBuilder/components/QueryBuilderHints.js.map +1 -0
- package/dist/esm/components/VisualQueryBuilder/components/QueryEditorModeToggle.js +14 -0
- package/dist/esm/components/VisualQueryBuilder/components/QueryEditorModeToggle.js.map +1 -0
- package/dist/esm/components/VisualQueryBuilder/components/QueryHeaderSwitch.js +44 -0
- package/dist/esm/components/VisualQueryBuilder/components/QueryHeaderSwitch.js.map +1 -0
- package/dist/esm/components/VisualQueryBuilder/components/QueryOptionGroup.js +97 -0
- package/dist/esm/components/VisualQueryBuilder/components/QueryOptionGroup.js.map +1 -0
- package/dist/esm/components/VisualQueryBuilder/components/RawQuery.js +30 -0
- package/dist/esm/components/VisualQueryBuilder/components/RawQuery.js.map +1 -0
- package/dist/esm/components/VisualQueryBuilder/types.js +12 -0
- package/dist/esm/components/VisualQueryBuilder/types.js.map +1 -0
- package/dist/esm/datasource/SqlDatasource.js +172 -0
- package/dist/esm/datasource/SqlDatasource.js.map +1 -0
- package/dist/esm/datasource/constants.js +18 -0
- package/dist/esm/datasource/constants.js.map +1 -0
- package/dist/esm/hooks/useDebounce.js +18 -0
- package/dist/esm/hooks/useDebounce.js.map +1 -0
- package/dist/esm/index.d.ts +1205 -0
- package/dist/esm/index.js +57 -0
- package/dist/esm/index.js.map +1 -0
- package/package.json +62 -41
- package/dist/components/AsyncButtonCascader/AsyncButtonCascader.js +0 -33
- package/dist/components/AsyncButtonCascader/AsyncButtonCascader.js.map +0 -1
- package/dist/components/Cascader/Cascader.js +0 -6
- package/dist/components/Cascader/Cascader.js.map +0 -1
- package/dist/components/ConfigEditor/AdvancedSettings/AdvancedHttpSettings.js +0 -28
- package/dist/components/ConfigEditor/AdvancedSettings/AdvancedHttpSettings.js.map +0 -1
- package/dist/components/ConfigEditor/AdvancedSettings/index.js +0 -6
- package/dist/components/ConfigEditor/AdvancedSettings/index.js.map +0 -1
- package/dist/components/ConfigEditor/Auth/Auth.js +0 -24
- package/dist/components/ConfigEditor/Auth/Auth.js.map +0 -1
- package/dist/components/ConfigEditor/Auth/auth-method/AuthMethodSettings.js +0 -110
- package/dist/components/ConfigEditor/Auth/auth-method/AuthMethodSettings.js.map +0 -1
- package/dist/components/ConfigEditor/Auth/auth-method/BasicAuth.js +0 -23
- package/dist/components/ConfigEditor/Auth/auth-method/BasicAuth.js.map +0 -1
- package/dist/components/ConfigEditor/Auth/custom-headers/CustomHeader.js +0 -41
- package/dist/components/ConfigEditor/Auth/custom-headers/CustomHeader.js.map +0 -1
- package/dist/components/ConfigEditor/Auth/custom-headers/CustomHeaders.js +0 -76
- package/dist/components/ConfigEditor/Auth/custom-headers/CustomHeaders.js.map +0 -1
- package/dist/components/ConfigEditor/Auth/index.js +0 -10
- package/dist/components/ConfigEditor/Auth/index.js.map +0 -1
- package/dist/components/ConfigEditor/Auth/styles.js +0 -19
- package/dist/components/ConfigEditor/Auth/styles.js.map +0 -1
- package/dist/components/ConfigEditor/Auth/tls/SelfSignedCertificate.js +0 -18
- package/dist/components/ConfigEditor/Auth/tls/SelfSignedCertificate.js.map +0 -1
- package/dist/components/ConfigEditor/Auth/tls/SkipTLSVerification.js +0 -11
- package/dist/components/ConfigEditor/Auth/tls/SkipTLSVerification.js.map +0 -1
- package/dist/components/ConfigEditor/Auth/tls/TLSClientAuth.js +0 -22
- package/dist/components/ConfigEditor/Auth/tls/TLSClientAuth.js.map +0 -1
- package/dist/components/ConfigEditor/Auth/tls/TLSSettings.js +0 -25
- package/dist/components/ConfigEditor/Auth/tls/TLSSettings.js.map +0 -1
- package/dist/components/ConfigEditor/Auth/tls/TLSSettingsSection.js +0 -35
- package/dist/components/ConfigEditor/Auth/tls/TLSSettingsSection.js.map +0 -1
- package/dist/components/ConfigEditor/Auth/types.js +0 -11
- package/dist/components/ConfigEditor/Auth/types.js.map +0 -1
- package/dist/components/ConfigEditor/Auth/utils.js +0 -113
- package/dist/components/ConfigEditor/Auth/utils.js.map +0 -1
- package/dist/components/ConfigEditor/ConfigSection/ConfigDescriptionLink.js +0 -32
- package/dist/components/ConfigEditor/ConfigSection/ConfigDescriptionLink.js.map +0 -1
- package/dist/components/ConfigEditor/ConfigSection/ConfigSection.js +0 -12
- package/dist/components/ConfigEditor/ConfigSection/ConfigSection.js.map +0 -1
- package/dist/components/ConfigEditor/ConfigSection/ConfigSubSection.js +0 -12
- package/dist/components/ConfigEditor/ConfigSection/ConfigSubSection.js.map +0 -1
- package/dist/components/ConfigEditor/ConfigSection/GenericConfigSection.js +0 -40
- package/dist/components/ConfigEditor/ConfigSection/GenericConfigSection.js.map +0 -1
- package/dist/components/ConfigEditor/ConfigSection/index.js +0 -10
- package/dist/components/ConfigEditor/ConfigSection/index.js.map +0 -1
- package/dist/components/ConfigEditor/Connection/ConnectionSettings.js +0 -26
- package/dist/components/ConfigEditor/Connection/ConnectionSettings.js.map +0 -1
- package/dist/components/ConfigEditor/Connection/index.js +0 -6
- package/dist/components/ConfigEditor/Connection/index.js.map +0 -1
- package/dist/components/ConfigEditor/DataSourceDescription.js +0 -39
- package/dist/components/ConfigEditor/DataSourceDescription.js.map +0 -1
- package/dist/components/ConfigEditor/SecureSocksProxyToggle.js +0 -24
- package/dist/components/ConfigEditor/SecureSocksProxyToggle.js.map +0 -1
- package/dist/components/ConfigEditor/index.js +0 -22
- package/dist/components/ConfigEditor/index.js.map +0 -1
- package/dist/components/ConfigEditor/types.js +0 -3
- package/dist/components/ConfigEditor/types.js.map +0 -1
- package/dist/components/CustomHeadersSettings/CustomHeadersSettings.js +0 -124
- package/dist/components/CustomHeadersSettings/CustomHeadersSettings.js.map +0 -1
- package/dist/components/DataLinks/DataLink.js +0 -79
- package/dist/components/DataLinks/DataLink.js.map +0 -1
- package/dist/components/DataLinks/DataLinks.js +0 -56
- package/dist/components/DataLinks/DataLinks.js.map +0 -1
- package/dist/components/DataLinks/index.js +0 -7
- package/dist/components/DataLinks/index.js.map +0 -1
- package/dist/components/DataLinks/types.js +0 -3
- package/dist/components/DataLinks/types.js.map +0 -1
- package/dist/components/DataSourcePicker/DataSourcePicker.js +0 -88
- package/dist/components/DataSourcePicker/DataSourcePicker.js.map +0 -1
- package/dist/components/DatePicker/DatePicker.js +0 -31
- package/dist/components/DatePicker/DatePicker.js.map +0 -1
- package/dist/components/DatePicker/styles.js.map +0 -1
- package/dist/components/DatePickerWithInput/DatePickerWithInput.js +0 -23
- package/dist/components/DatePickerWithInput/DatePickerWithInput.js.map +0 -1
- package/dist/components/DatePickerWithInput/style.css +0 -8
- package/dist/components/DebounceInput/DebounceInput.js +0 -19
- package/dist/components/DebounceInput/DebounceInput.js.map +0 -1
- package/dist/components/Plugins/PluginSignatureBadge.js +0 -65
- package/dist/components/Plugins/PluginSignatureBadge.js.map +0 -1
- package/dist/components/QueryEditor/AccessoryButton.js +0 -20
- package/dist/components/QueryEditor/AccessoryButton.js.map +0 -1
- package/dist/components/QueryEditor/ConfirmModal.js +0 -28
- package/dist/components/QueryEditor/ConfirmModal.js.map +0 -1
- package/dist/components/QueryEditor/DatasetSelector.js +0 -40
- package/dist/components/QueryEditor/DatasetSelector.js.map +0 -1
- package/dist/components/QueryEditor/EditorField.js +0 -49
- package/dist/components/QueryEditor/EditorField.js.map +0 -1
- package/dist/components/QueryEditor/EditorFieldGroup.js +0 -11
- package/dist/components/QueryEditor/EditorFieldGroup.js.map +0 -1
- package/dist/components/QueryEditor/EditorHeader.js +0 -22
- package/dist/components/QueryEditor/EditorHeader.js.map +0 -1
- package/dist/components/QueryEditor/EditorList.js +0 -27
- package/dist/components/QueryEditor/EditorList.js.map +0 -1
- package/dist/components/QueryEditor/EditorRow.js +0 -24
- package/dist/components/QueryEditor/EditorRow.js.map +0 -1
- package/dist/components/QueryEditor/EditorRows.js +0 -11
- package/dist/components/QueryEditor/EditorRows.js.map +0 -1
- package/dist/components/QueryEditor/EditorStack.js +0 -13
- package/dist/components/QueryEditor/EditorStack.js.map +0 -1
- package/dist/components/QueryEditor/EditorSwitch.js +0 -24
- package/dist/components/QueryEditor/EditorSwitch.js.map +0 -1
- package/dist/components/QueryEditor/FlexItem.js +0 -10
- package/dist/components/QueryEditor/FlexItem.js.map +0 -1
- package/dist/components/QueryEditor/InlineSelect.js +0 -57
- package/dist/components/QueryEditor/InlineSelect.js.map +0 -1
- package/dist/components/QueryEditor/InputGroup.js +0 -66
- package/dist/components/QueryEditor/InputGroup.js.map +0 -1
- package/dist/components/QueryEditor/QueryEditor.js +0 -74
- package/dist/components/QueryEditor/QueryEditor.js.map +0 -1
- package/dist/components/QueryEditor/QueryHeader.js +0 -86
- package/dist/components/QueryEditor/QueryHeader.js.map +0 -1
- package/dist/components/QueryEditor/RunQueryButton.js +0 -19
- package/dist/components/QueryEditor/RunQueryButton.js.map +0 -1
- package/dist/components/QueryEditor/Space.js +0 -36
- package/dist/components/QueryEditor/Space.js.map +0 -1
- package/dist/components/QueryEditor/TableSelector.js +0 -20
- package/dist/components/QueryEditor/TableSelector.js.map +0 -1
- package/dist/components/QueryEditor/defaults.js +0 -20
- package/dist/components/QueryEditor/defaults.js.map +0 -1
- package/dist/components/QueryEditor/expressions.js +0 -18
- package/dist/components/QueryEditor/expressions.js.map +0 -1
- package/dist/components/QueryEditor/index.js +0 -37
- package/dist/components/QueryEditor/index.js.map +0 -1
- package/dist/components/QueryEditor/query-editor-raw/QueryEditorRaw.js +0 -21
- package/dist/components/QueryEditor/query-editor-raw/QueryEditorRaw.js.map +0 -1
- package/dist/components/QueryEditor/query-editor-raw/QueryToolbox.js +0 -59
- package/dist/components/QueryEditor/query-editor-raw/QueryToolbox.js.map +0 -1
- package/dist/components/QueryEditor/query-editor-raw/QueryValidator.js +0 -79
- package/dist/components/QueryEditor/query-editor-raw/QueryValidator.js.map +0 -1
- package/dist/components/QueryEditor/query-editor-raw/RawEditor.js +0 -60
- package/dist/components/QueryEditor/query-editor-raw/RawEditor.js.map +0 -1
- package/dist/components/QueryEditor/types.js +0 -26
- package/dist/components/QueryEditor/types.js.map +0 -1
- package/dist/components/QueryEditor/utils/formatSQL.js +0 -13
- package/dist/components/QueryEditor/utils/formatSQL.js.map +0 -1
- package/dist/components/QueryEditor/utils/sql.utils.js +0 -103
- package/dist/components/QueryEditor/utils/sql.utils.js.map +0 -1
- package/dist/components/QueryEditor/utils/useSqlChange.js +0 -16
- package/dist/components/QueryEditor/utils/useSqlChange.js.map +0 -1
- package/dist/components/QueryEditor/visual-query-builder/AwesomeQueryBuilder.js +0 -109
- package/dist/components/QueryEditor/visual-query-builder/AwesomeQueryBuilder.js.map +0 -1
- package/dist/components/QueryEditor/visual-query-builder/EditorField.js +0 -51
- package/dist/components/QueryEditor/visual-query-builder/EditorField.js.map +0 -1
- package/dist/components/QueryEditor/visual-query-builder/EditorRow.js +0 -24
- package/dist/components/QueryEditor/visual-query-builder/EditorRow.js.map +0 -1
- package/dist/components/QueryEditor/visual-query-builder/EditorRows.js +0 -11
- package/dist/components/QueryEditor/visual-query-builder/EditorRows.js.map +0 -1
- package/dist/components/QueryEditor/visual-query-builder/GroupByRow.js +0 -33
- package/dist/components/QueryEditor/visual-query-builder/GroupByRow.js.map +0 -1
- package/dist/components/QueryEditor/visual-query-builder/OrderByRow.js +0 -50
- package/dist/components/QueryEditor/visual-query-builder/OrderByRow.js.map +0 -1
- package/dist/components/QueryEditor/visual-query-builder/Preview.js +0 -28
- package/dist/components/QueryEditor/visual-query-builder/Preview.js.map +0 -1
- package/dist/components/QueryEditor/visual-query-builder/SQLGroupByRow.js +0 -13
- package/dist/components/QueryEditor/visual-query-builder/SQLGroupByRow.js.map +0 -1
- package/dist/components/QueryEditor/visual-query-builder/SQLOrderByRow.js +0 -34
- package/dist/components/QueryEditor/visual-query-builder/SQLOrderByRow.js.map +0 -1
- package/dist/components/QueryEditor/visual-query-builder/SQLSelectRow.js +0 -19
- package/dist/components/QueryEditor/visual-query-builder/SQLSelectRow.js.map +0 -1
- package/dist/components/QueryEditor/visual-query-builder/SQLWhereRow.js +0 -35
- package/dist/components/QueryEditor/visual-query-builder/SQLWhereRow.js.map +0 -1
- package/dist/components/QueryEditor/visual-query-builder/SelectRow.js +0 -68
- package/dist/components/QueryEditor/visual-query-builder/SelectRow.js.map +0 -1
- package/dist/components/QueryEditor/visual-query-builder/VisualEditor.js +0 -38
- package/dist/components/QueryEditor/visual-query-builder/VisualEditor.js.map +0 -1
- package/dist/components/QueryEditor/visual-query-builder/WhereRow.js +0 -67
- package/dist/components/QueryEditor/visual-query-builder/WhereRow.js.map +0 -1
- package/dist/components/QueryEditor/visual-query-builder/index.js +0 -6
- package/dist/components/QueryEditor/visual-query-builder/index.js.map +0 -1
- package/dist/components/QueryEditorRow/QueryEditorRow.js +0 -16
- package/dist/components/QueryEditorRow/QueryEditorRow.js.map +0 -1
- package/dist/components/SQLEditor/components/SQLEditor.js +0 -330
- package/dist/components/SQLEditor/components/SQLEditor.js.map +0 -1
- package/dist/components/SQLEditor/index.js +0 -25
- package/dist/components/SQLEditor/index.js.map +0 -1
- package/dist/components/SQLEditor/mocks/Monaco.js +0 -23
- package/dist/components/SQLEditor/mocks/Monaco.js.map +0 -1
- package/dist/components/SQLEditor/mocks/TextModel.js +0 -22
- package/dist/components/SQLEditor/mocks/TextModel.js.map +0 -1
- package/dist/components/SQLEditor/mocks/queries/multiLineFullQuery.js +0 -216
- package/dist/components/SQLEditor/mocks/queries/multiLineFullQuery.js.map +0 -1
- package/dist/components/SQLEditor/mocks/queries/multiLineFullQueryWithAggregation.js +0 -231
- package/dist/components/SQLEditor/mocks/queries/multiLineFullQueryWithAggregation.js.map +0 -1
- package/dist/components/SQLEditor/mocks/queries/multiLineMultipleColumns.js +0 -271
- package/dist/components/SQLEditor/mocks/queries/multiLineMultipleColumns.js.map +0 -1
- package/dist/components/SQLEditor/mocks/queries/singleLineEmptyQuery.js +0 -8
- package/dist/components/SQLEditor/mocks/queries/singleLineEmptyQuery.js.map +0 -1
- package/dist/components/SQLEditor/mocks/queries/singleLineFullQuery.js +0 -196
- package/dist/components/SQLEditor/mocks/queries/singleLineFullQuery.js.map +0 -1
- package/dist/components/SQLEditor/mocks/queries/singleLineFullQueryWithAggregation.js +0 -211
- package/dist/components/SQLEditor/mocks/queries/singleLineFullQueryWithAggregation.js.map +0 -1
- package/dist/components/SQLEditor/mocks/queries/singleLineMultipleColumns.js +0 -251
- package/dist/components/SQLEditor/mocks/queries/singleLineMultipleColumns.js.map +0 -1
- package/dist/components/SQLEditor/mocks/queries/singleLineTwoQueries.js +0 -386
- package/dist/components/SQLEditor/mocks/queries/singleLineTwoQueries.js.map +0 -1
- package/dist/components/SQLEditor/mocks/queries/singleLineTwoQueriesWithAggregation.js +0 -416
- package/dist/components/SQLEditor/mocks/queries/singleLineTwoQueriesWithAggregation.js.map +0 -1
- package/dist/components/SQLEditor/mocks/testData.js +0 -22
- package/dist/components/SQLEditor/mocks/testData.js.map +0 -1
- package/dist/components/SQLEditor/standardSql/definition.js +0 -13
- package/dist/components/SQLEditor/standardSql/definition.js.map +0 -1
- package/dist/components/SQLEditor/standardSql/getStandardSuggestions.js +0 -26
- package/dist/components/SQLEditor/standardSql/getStandardSuggestions.js.map +0 -1
- package/dist/components/SQLEditor/standardSql/getStatementPosition.js +0 -24
- package/dist/components/SQLEditor/standardSql/getStatementPosition.js.map +0 -1
- package/dist/components/SQLEditor/standardSql/language.js +0 -875
- package/dist/components/SQLEditor/standardSql/language.js.map +0 -1
- package/dist/components/SQLEditor/standardSql/macros.js +0 -166
- package/dist/components/SQLEditor/standardSql/macros.js.map +0 -1
- package/dist/components/SQLEditor/standardSql/standardSQLCompletionItemProvider.js +0 -30
- package/dist/components/SQLEditor/standardSql/standardSQLCompletionItemProvider.js.map +0 -1
- package/dist/components/SQLEditor/standardSql/standardSuggestionsRegistry.js +0 -378
- package/dist/components/SQLEditor/standardSql/standardSuggestionsRegistry.js.map +0 -1
- package/dist/components/SQLEditor/standardSql/statementPositionResolversRegistry.js +0 -234
- package/dist/components/SQLEditor/standardSql/statementPositionResolversRegistry.js.map +0 -1
- package/dist/components/SQLEditor/standardSql/suggestionsKindRegistry.js +0 -153
- package/dist/components/SQLEditor/standardSql/suggestionsKindRegistry.js.map +0 -1
- package/dist/components/SQLEditor/standardSql/types.js +0 -3
- package/dist/components/SQLEditor/standardSql/types.js.map +0 -1
- package/dist/components/SQLEditor/test-utils/index.js +0 -11
- package/dist/components/SQLEditor/test-utils/index.js.map +0 -1
- package/dist/components/SQLEditor/test-utils/statementPosition.js +0 -40
- package/dist/components/SQLEditor/test-utils/statementPosition.js.map +0 -1
- package/dist/components/SQLEditor/test-utils/types.js +0 -3
- package/dist/components/SQLEditor/test-utils/types.js.map +0 -1
- package/dist/components/SQLEditor/types.js +0 -139
- package/dist/components/SQLEditor/types.js.map +0 -1
- package/dist/components/SQLEditor/utils/LinkedToken.js +0 -147
- package/dist/components/SQLEditor/utils/LinkedToken.js.map +0 -1
- package/dist/components/SQLEditor/utils/commands.js +0 -8
- package/dist/components/SQLEditor/utils/commands.js.map +0 -1
- package/dist/components/SQLEditor/utils/debugger.js +0 -14
- package/dist/components/SQLEditor/utils/debugger.js.map +0 -1
- package/dist/components/SQLEditor/utils/getSuggestionKind.js +0 -18
- package/dist/components/SQLEditor/utils/getSuggestionKind.js.map +0 -1
- package/dist/components/SQLEditor/utils/linkedTokenBuilder.js +0 -46
- package/dist/components/SQLEditor/utils/linkedTokenBuilder.js.map +0 -1
- package/dist/components/SQLEditor/utils/toCompletionItem.js +0 -10
- package/dist/components/SQLEditor/utils/toCompletionItem.js.map +0 -1
- package/dist/components/SQLEditor/utils/tokenUtils.js +0 -72
- package/dist/components/SQLEditor/utils/tokenUtils.js.map +0 -1
- package/dist/components/SQLEditor/utils/types.js +0 -3
- package/dist/components/SQLEditor/utils/types.js.map +0 -1
- package/dist/components/Segment/Segment.js +0 -19
- package/dist/components/Segment/Segment.js.map +0 -1
- package/dist/components/VisualQueryBuilder/QueryModellerBase.js +0 -35
- package/dist/components/VisualQueryBuilder/QueryModellerBase.js.map +0 -1
- package/dist/components/VisualQueryBuilder/components/LabelFilterItem.js +0 -125
- package/dist/components/VisualQueryBuilder/components/LabelFilterItem.js.map +0 -1
- package/dist/components/VisualQueryBuilder/components/LabelFilters.js +0 -37
- package/dist/components/VisualQueryBuilder/components/LabelFilters.js.map +0 -1
- package/dist/components/VisualQueryBuilder/components/OperationEditor.js +0 -41
- package/dist/components/VisualQueryBuilder/components/OperationEditor.js.map +0 -1
- package/dist/components/VisualQueryBuilder/components/OperationEditorBody.js +0 -181
- package/dist/components/VisualQueryBuilder/components/OperationEditorBody.js.map +0 -1
- package/dist/components/VisualQueryBuilder/components/OperationExplainedBox.js +0 -64
- package/dist/components/VisualQueryBuilder/components/OperationExplainedBox.js.map +0 -1
- package/dist/components/VisualQueryBuilder/components/OperationHeader.js +0 -68
- package/dist/components/VisualQueryBuilder/components/OperationHeader.js.map +0 -1
- package/dist/components/VisualQueryBuilder/components/OperationInfoButton.js +0 -71
- package/dist/components/VisualQueryBuilder/components/OperationInfoButton.js.map +0 -1
- package/dist/components/VisualQueryBuilder/components/OperationList.js +0 -132
- package/dist/components/VisualQueryBuilder/components/OperationList.js.map +0 -1
- package/dist/components/VisualQueryBuilder/components/OperationListExplained.js +0 -22
- package/dist/components/VisualQueryBuilder/components/OperationListExplained.js.map +0 -1
- package/dist/components/VisualQueryBuilder/components/OperationParamEditor.js +0 -71
- package/dist/components/VisualQueryBuilder/components/OperationParamEditor.js.map +0 -1
- package/dist/components/VisualQueryBuilder/components/OperationsEditorRow.js +0 -24
- package/dist/components/VisualQueryBuilder/components/OperationsEditorRow.js.map +0 -1
- package/dist/components/VisualQueryBuilder/components/QueryBuilderHints.js +0 -54
- package/dist/components/VisualQueryBuilder/components/QueryBuilderHints.js.map +0 -1
- package/dist/components/VisualQueryBuilder/components/QueryEditorModeToggle.js +0 -17
- package/dist/components/VisualQueryBuilder/components/QueryEditorModeToggle.js.map +0 -1
- package/dist/components/VisualQueryBuilder/components/QueryHeaderSwitch.js +0 -32
- package/dist/components/VisualQueryBuilder/components/QueryHeaderSwitch.js.map +0 -1
- package/dist/components/VisualQueryBuilder/components/QueryOptionGroup.js +0 -81
- package/dist/components/VisualQueryBuilder/components/QueryOptionGroup.js.map +0 -1
- package/dist/components/VisualQueryBuilder/components/RawQuery.js +0 -25
- package/dist/components/VisualQueryBuilder/components/RawQuery.js.map +0 -1
- package/dist/components/VisualQueryBuilder/index.js +0 -29
- package/dist/components/VisualQueryBuilder/index.js.map +0 -1
- package/dist/components/VisualQueryBuilder/types.js +0 -10
- package/dist/components/VisualQueryBuilder/types.js.map +0 -1
- package/dist/components/index.js +0 -30
- package/dist/components/index.js.map +0 -1
- package/dist/datasource/SqlDatasource.js +0 -161
- package/dist/datasource/SqlDatasource.js.map +0 -1
- package/dist/datasource/constants.js +0 -19
- package/dist/datasource/constants.js.map +0 -1
- package/dist/hooks/useDebounce.js +0 -21
- package/dist/hooks/useDebounce.js.map +0 -1
- package/dist/index.js +0 -13
- package/dist/index.js.map +0 -1
- package/dist/src/components/AsyncButtonCascader/AsyncButtonCascader.d.ts +0 -21
- package/dist/src/components/Cascader/Cascader.d.ts +0 -1
- package/dist/src/components/ConfigEditor/AdvancedSettings/AdvancedHttpSettings.d.ts +0 -8
- package/dist/src/components/ConfigEditor/AdvancedSettings/index.d.ts +0 -1
- package/dist/src/components/ConfigEditor/Auth/Auth.d.ts +0 -18
- package/dist/src/components/ConfigEditor/Auth/auth-method/AuthMethodSettings.d.ts +0 -14
- package/dist/src/components/ConfigEditor/Auth/auth-method/BasicAuth.d.ts +0 -17
- package/dist/src/components/ConfigEditor/Auth/custom-headers/CustomHeader.d.ts +0 -10
- package/dist/src/components/ConfigEditor/Auth/custom-headers/CustomHeaders.d.ts +0 -8
- package/dist/src/components/ConfigEditor/Auth/index.d.ts +0 -4
- package/dist/src/components/ConfigEditor/Auth/styles.d.ts +0 -4
- package/dist/src/components/ConfigEditor/Auth/tls/SelfSignedCertificate.d.ts +0 -13
- package/dist/src/components/ConfigEditor/Auth/tls/SkipTLSVerification.d.ts +0 -7
- package/dist/src/components/ConfigEditor/Auth/tls/TLSClientAuth.d.ts +0 -20
- package/dist/src/components/ConfigEditor/Auth/tls/TLSSettings.d.ts +0 -11
- package/dist/src/components/ConfigEditor/Auth/tls/TLSSettingsSection.d.ts +0 -9
- package/dist/src/components/ConfigEditor/Auth/types.d.ts +0 -28
- package/dist/src/components/ConfigEditor/Auth/utils.d.ts +0 -12
- package/dist/src/components/ConfigEditor/ConfigSection/ConfigDescriptionLink.d.ts +0 -8
- package/dist/src/components/ConfigEditor/ConfigSection/ConfigSection.d.ts +0 -5
- package/dist/src/components/ConfigEditor/ConfigSection/ConfigSubSection.d.ts +0 -5
- package/dist/src/components/ConfigEditor/ConfigSection/GenericConfigSection.d.ts +0 -10
- package/dist/src/components/ConfigEditor/ConfigSection/index.d.ts +0 -3
- package/dist/src/components/ConfigEditor/Connection/ConnectionSettings.d.ts +0 -13
- package/dist/src/components/ConfigEditor/Connection/index.d.ts +0 -1
- package/dist/src/components/ConfigEditor/DataSourceDescription.d.ts +0 -9
- package/dist/src/components/ConfigEditor/SecureSocksProxyToggle.d.ts +0 -10
- package/dist/src/components/ConfigEditor/index.d.ts +0 -9
- package/dist/src/components/ConfigEditor/types.d.ts +0 -15
- package/dist/src/components/CustomHeadersSettings/CustomHeadersSettings.d.ts +0 -27
- package/dist/src/components/DataLinks/DataLink.d.ts +0 -13
- package/dist/src/components/DataLinks/DataLinks.d.ts +0 -8
- package/dist/src/components/DataLinks/index.d.ts +0 -3
- package/dist/src/components/DataLinks/types.d.ts +0 -7
- package/dist/src/components/DataSourcePicker/DataSourcePicker.d.ts +0 -34
- package/dist/src/components/DatePicker/DatePicker.d.ts +0 -8
- package/dist/src/components/DatePicker/styles.d.ts +0 -11
- package/dist/src/components/DatePickerWithInput/DatePickerWithInput.d.ts +0 -9
- package/dist/src/components/DebounceInput/DebounceInput.d.ts +0 -8
- package/dist/src/components/Plugins/PluginSignatureBadge.d.ts +0 -12
- package/dist/src/components/QueryEditor/AccessoryButton.d.ts +0 -6
- package/dist/src/components/QueryEditor/ConfirmModal.d.ts +0 -9
- package/dist/src/components/QueryEditor/DatasetSelector.d.ts +0 -13
- package/dist/src/components/QueryEditor/EditorField.d.ts +0 -12
- package/dist/src/components/QueryEditor/EditorFieldGroup.d.ts +0 -6
- package/dist/src/components/QueryEditor/EditorHeader.d.ts +0 -6
- package/dist/src/components/QueryEditor/EditorList.d.ts +0 -8
- package/dist/src/components/QueryEditor/EditorRow.d.ts +0 -6
- package/dist/src/components/QueryEditor/EditorRows.d.ts +0 -6
- package/dist/src/components/QueryEditor/EditorStack.d.ts +0 -13
- package/dist/src/components/QueryEditor/EditorSwitch.d.ts +0 -3
- package/dist/src/components/QueryEditor/FlexItem.d.ts +0 -7
- package/dist/src/components/QueryEditor/InlineSelect.d.ts +0 -7
- package/dist/src/components/QueryEditor/InputGroup.d.ts +0 -10
- package/dist/src/components/QueryEditor/QueryEditor.d.ts +0 -8
- package/dist/src/components/QueryEditor/QueryHeader.d.ts +0 -17
- package/dist/src/components/QueryEditor/RunQueryButton.d.ts +0 -13
- package/dist/src/components/QueryEditor/Space.d.ts +0 -14
- package/dist/src/components/QueryEditor/TableSelector.d.ts +0 -13
- package/dist/src/components/QueryEditor/defaults.d.ts +0 -3
- package/dist/src/components/QueryEditor/expressions.d.ts +0 -50
- package/dist/src/components/QueryEditor/index.d.ts +0 -17
- package/dist/src/components/QueryEditor/query-editor-raw/QueryEditorRaw.d.ts +0 -15
- package/dist/src/components/QueryEditor/query-editor-raw/QueryToolbox.d.ts +0 -11
- package/dist/src/components/QueryEditor/query-editor-raw/QueryValidator.d.ts +0 -10
- package/dist/src/components/QueryEditor/query-editor-raw/RawEditor.d.ts +0 -10
- package/dist/src/components/QueryEditor/types.d.ts +0 -149
- package/dist/src/components/QueryEditor/utils/formatSQL.d.ts +0 -1
- package/dist/src/components/QueryEditor/utils/sql.utils.d.ts +0 -14
- package/dist/src/components/QueryEditor/utils/useSqlChange.d.ts +0 -10
- package/dist/src/components/QueryEditor/visual-query-builder/AwesomeQueryBuilder.d.ts +0 -7
- package/dist/src/components/QueryEditor/visual-query-builder/EditorField.d.ts +0 -11
- package/dist/src/components/QueryEditor/visual-query-builder/EditorRow.d.ts +0 -6
- package/dist/src/components/QueryEditor/visual-query-builder/EditorRows.d.ts +0 -6
- package/dist/src/components/QueryEditor/visual-query-builder/GroupByRow.d.ts +0 -10
- package/dist/src/components/QueryEditor/visual-query-builder/OrderByRow.d.ts +0 -11
- package/dist/src/components/QueryEditor/visual-query-builder/Preview.d.ts +0 -6
- package/dist/src/components/QueryEditor/visual-query-builder/SQLGroupByRow.d.ts +0 -12
- package/dist/src/components/QueryEditor/visual-query-builder/SQLOrderByRow.d.ts +0 -12
- package/dist/src/components/QueryEditor/visual-query-builder/SQLSelectRow.d.ts +0 -12
- package/dist/src/components/QueryEditor/visual-query-builder/SQLWhereRow.d.ts +0 -12
- package/dist/src/components/QueryEditor/visual-query-builder/SelectRow.d.ts +0 -11
- package/dist/src/components/QueryEditor/visual-query-builder/VisualEditor.d.ts +0 -13
- package/dist/src/components/QueryEditor/visual-query-builder/WhereRow.d.ts +0 -10
- package/dist/src/components/QueryEditor/visual-query-builder/index.d.ts +0 -1
- package/dist/src/components/QueryEditorRow/QueryEditorRow.d.ts +0 -8
- package/dist/src/components/SQLEditor/components/SQLEditor.d.ts +0 -29
- package/dist/src/components/SQLEditor/index.d.ts +0 -7
- package/dist/src/components/SQLEditor/mocks/Monaco.d.ts +0 -3
- package/dist/src/components/SQLEditor/mocks/TextModel.d.ts +0 -7
- package/dist/src/components/SQLEditor/mocks/queries/multiLineFullQuery.d.ts +0 -2
- package/dist/src/components/SQLEditor/mocks/queries/multiLineFullQueryWithAggregation.d.ts +0 -2
- package/dist/src/components/SQLEditor/mocks/queries/multiLineMultipleColumns.d.ts +0 -2
- package/dist/src/components/SQLEditor/mocks/queries/singleLineEmptyQuery.d.ts +0 -2
- package/dist/src/components/SQLEditor/mocks/queries/singleLineFullQuery.d.ts +0 -2
- package/dist/src/components/SQLEditor/mocks/queries/singleLineFullQueryWithAggregation.d.ts +0 -2
- package/dist/src/components/SQLEditor/mocks/queries/singleLineMultipleColumns.d.ts +0 -2
- package/dist/src/components/SQLEditor/mocks/queries/singleLineTwoQueries.d.ts +0 -2
- package/dist/src/components/SQLEditor/mocks/queries/singleLineTwoQueriesWithAggregation.d.ts +0 -2
- package/dist/src/components/SQLEditor/standardSql/definition.d.ts +0 -3
- package/dist/src/components/SQLEditor/standardSql/getStandardSuggestions.d.ts +0 -6
- package/dist/src/components/SQLEditor/standardSql/getStatementPosition.d.ts +0 -5
- package/dist/src/components/SQLEditor/standardSql/language.d.ts +0 -23
- package/dist/src/components/SQLEditor/standardSql/macros.d.ts +0 -2
- package/dist/src/components/SQLEditor/standardSql/standardSQLCompletionItemProvider.d.ts +0 -4
- package/dist/src/components/SQLEditor/standardSql/standardSuggestionsRegistry.d.ts +0 -7
- package/dist/src/components/SQLEditor/standardSql/statementPositionResolversRegistry.d.ts +0 -2
- package/dist/src/components/SQLEditor/standardSql/suggestionsKindRegistry.d.ts +0 -7
- package/dist/src/components/SQLEditor/standardSql/types.d.ts +0 -33
- package/dist/src/components/SQLEditor/test-utils/index.d.ts +0 -7
- package/dist/src/components/SQLEditor/test-utils/statementPosition.d.ts +0 -3
- package/dist/src/components/SQLEditor/test-utils/types.d.ts +0 -12
- package/dist/src/components/SQLEditor/types.d.ts +0 -249
- package/dist/src/components/SQLEditor/utils/LinkedToken.d.ts +0 -29
- package/dist/src/components/SQLEditor/utils/commands.d.ts +0 -4
- package/dist/src/components/SQLEditor/utils/debugger.d.ts +0 -5
- package/dist/src/components/SQLEditor/utils/getSuggestionKind.d.ts +0 -7
- package/dist/src/components/SQLEditor/utils/linkedTokenBuilder.d.ts +0 -4
- package/dist/src/components/SQLEditor/utils/toCompletionItem.d.ts +0 -2
- package/dist/src/components/SQLEditor/utils/tokenUtils.d.ts +0 -14
- package/dist/src/components/SQLEditor/utils/types.d.ts +0 -11
- package/dist/src/components/Segment/Segment.d.ts +0 -8
- package/dist/src/components/VisualQueryBuilder/QueryModellerBase.d.ts +0 -18
- package/dist/src/components/VisualQueryBuilder/components/LabelFilterItem.d.ts +0 -18
- package/dist/src/components/VisualQueryBuilder/components/LabelFilters.d.ts +0 -14
- package/dist/src/components/VisualQueryBuilder/components/OperationEditor.d.ts +0 -20
- package/dist/src/components/VisualQueryBuilder/components/OperationEditorBody.d.ts +0 -23
- package/dist/src/components/VisualQueryBuilder/components/OperationExplainedBox.d.ts +0 -7
- package/dist/src/components/VisualQueryBuilder/components/OperationHeader.d.ts +0 -15
- package/dist/src/components/VisualQueryBuilder/components/OperationInfoButton.d.ts +0 -9
- package/dist/src/components/VisualQueryBuilder/components/OperationList.d.ts +0 -15
- package/dist/src/components/VisualQueryBuilder/components/OperationListExplained.d.ts +0 -17
- package/dist/src/components/VisualQueryBuilder/components/OperationParamEditor.d.ts +0 -4
- package/dist/src/components/VisualQueryBuilder/components/OperationsEditorRow.d.ts +0 -2
- package/dist/src/components/VisualQueryBuilder/components/QueryBuilderHints.d.ts +0 -20
- package/dist/src/components/VisualQueryBuilder/components/QueryEditorModeToggle.d.ts +0 -8
- package/dist/src/components/VisualQueryBuilder/components/QueryHeaderSwitch.d.ts +0 -7
- package/dist/src/components/VisualQueryBuilder/components/QueryOptionGroup.d.ts +0 -9
- package/dist/src/components/VisualQueryBuilder/components/RawQuery.d.ts +0 -12
- package/dist/src/components/VisualQueryBuilder/index.d.ts +0 -13
- package/dist/src/components/VisualQueryBuilder/types.d.ts +0 -91
- package/dist/src/components/index.d.ts +0 -15
- package/dist/src/datasource/SqlDatasource.d.ts +0 -62
- package/dist/src/datasource/constants.d.ts +0 -1
- package/dist/src/hooks/useDebounce.d.ts +0 -2
- package/dist/src/index.d.ts +0 -7
- package/dist/src/test/mocks/DataQuery.d.ts +0 -2
- package/dist/src/test/mocks/Datasource.d.ts +0 -40
- package/dist/src/test/mocks/Plugin.d.ts +0 -10
- package/dist/src/test/mocks/QueryEditorProps.d.ts +0 -4
- package/dist/src/test/mocks/index.d.ts +0 -5
- package/dist/src/test/mocks/utils.d.ts +0 -18
- package/dist/src/utils/changeset/functions.d.ts +0 -3
- package/dist/src/utils/changeset/index.d.ts +0 -2
- package/dist/test/mocks/DataQuery.js +0 -14
- package/dist/test/mocks/DataQuery.js.map +0 -1
- package/dist/test/mocks/Datasource.js +0 -78
- package/dist/test/mocks/Datasource.js.map +0 -1
- package/dist/test/mocks/Plugin.js +0 -105
- package/dist/test/mocks/Plugin.js.map +0 -1
- package/dist/test/mocks/QueryEditorProps.js +0 -46
- package/dist/test/mocks/QueryEditorProps.js.map +0 -1
- package/dist/test/mocks/index.js +0 -9
- package/dist/test/mocks/index.js.map +0 -1
- package/dist/test/mocks/utils.js +0 -48
- package/dist/test/mocks/utils.js.map +0 -1
- package/dist/utils/changeset/functions.js +0 -11
- package/dist/utils/changeset/functions.js.map +0 -1
- package/dist/utils/changeset/index.js +0 -99
- package/dist/utils/changeset/index.js.map +0 -1
|
@@ -1,875 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.language = exports.conf = exports.STD_OPERATORS = exports.COMPARISON_OPERATORS = exports.NOT_EQUALS = exports.EQUALS = exports.LOGICAL_OPERATORS = exports.OR = exports.AND = exports.SCHEMA = exports.AS = exports.WITH = exports.LIMIT = exports.ASC = exports.DESC = exports.BY = exports.ORDER = exports.GROUP = exports.WHERE = exports.FROM = exports.SELECT = void 0;
|
|
4
|
-
// STD basic SQL
|
|
5
|
-
exports.SELECT = 'select';
|
|
6
|
-
exports.FROM = 'from';
|
|
7
|
-
exports.WHERE = 'where';
|
|
8
|
-
exports.GROUP = 'group';
|
|
9
|
-
exports.ORDER = 'order';
|
|
10
|
-
exports.BY = 'by';
|
|
11
|
-
exports.DESC = 'desc';
|
|
12
|
-
exports.ASC = 'asc';
|
|
13
|
-
exports.LIMIT = 'limit';
|
|
14
|
-
exports.WITH = 'with';
|
|
15
|
-
exports.AS = 'as';
|
|
16
|
-
exports.SCHEMA = 'schema';
|
|
17
|
-
exports.AND = 'AND';
|
|
18
|
-
exports.OR = 'OR';
|
|
19
|
-
exports.LOGICAL_OPERATORS = [exports.AND, exports.OR];
|
|
20
|
-
exports.EQUALS = '=';
|
|
21
|
-
exports.NOT_EQUALS = '!=';
|
|
22
|
-
exports.COMPARISON_OPERATORS = [exports.EQUALS, exports.NOT_EQUALS];
|
|
23
|
-
exports.STD_OPERATORS = [...exports.COMPARISON_OPERATORS];
|
|
24
|
-
exports.conf = {
|
|
25
|
-
comments: {
|
|
26
|
-
lineComment: '--',
|
|
27
|
-
blockComment: ['/*', '*/'],
|
|
28
|
-
},
|
|
29
|
-
brackets: [
|
|
30
|
-
['{', '}'],
|
|
31
|
-
['[', ']'],
|
|
32
|
-
['(', ')'],
|
|
33
|
-
],
|
|
34
|
-
autoClosingPairs: [
|
|
35
|
-
{ open: '{', close: '}' },
|
|
36
|
-
{ open: '[', close: ']' },
|
|
37
|
-
{ open: '(', close: ')' },
|
|
38
|
-
{ open: '"', close: '"' },
|
|
39
|
-
{ open: "'", close: "'" },
|
|
40
|
-
],
|
|
41
|
-
surroundingPairs: [
|
|
42
|
-
{ open: '{', close: '}' },
|
|
43
|
-
{ open: '[', close: ']' },
|
|
44
|
-
{ open: '(', close: ')' },
|
|
45
|
-
{ open: '"', close: '"' },
|
|
46
|
-
{ open: "'", close: "'" },
|
|
47
|
-
],
|
|
48
|
-
};
|
|
49
|
-
// based on https://github.com/microsoft/monaco-editor/blob/main/src/basic-languages/sql/sql.ts
|
|
50
|
-
exports.language = {
|
|
51
|
-
defaultToken: '',
|
|
52
|
-
tokenPostfix: '.sql',
|
|
53
|
-
ignoreCase: true,
|
|
54
|
-
brackets: [
|
|
55
|
-
{ open: '[', close: ']', token: 'delimiter.square' },
|
|
56
|
-
{ open: '(', close: ')', token: 'delimiter.parenthesis' },
|
|
57
|
-
],
|
|
58
|
-
keywords: [
|
|
59
|
-
'ABORT',
|
|
60
|
-
'ABSOLUTE',
|
|
61
|
-
'ACTION',
|
|
62
|
-
'ADA',
|
|
63
|
-
'ADD',
|
|
64
|
-
'AFTER',
|
|
65
|
-
'ALL',
|
|
66
|
-
'ALLOCATE',
|
|
67
|
-
'ALTER',
|
|
68
|
-
'ALWAYS',
|
|
69
|
-
'ANALYZE',
|
|
70
|
-
'AND',
|
|
71
|
-
'ANY',
|
|
72
|
-
'ARE',
|
|
73
|
-
'AS',
|
|
74
|
-
'ASC',
|
|
75
|
-
'ASSERTION',
|
|
76
|
-
'AT',
|
|
77
|
-
'ATTACH',
|
|
78
|
-
'AUTHORIZATION',
|
|
79
|
-
'AUTOINCREMENT',
|
|
80
|
-
'AVG',
|
|
81
|
-
'BACKUP',
|
|
82
|
-
'BEFORE',
|
|
83
|
-
'BEGIN',
|
|
84
|
-
'BETWEEN',
|
|
85
|
-
'BIT',
|
|
86
|
-
'BIT_LENGTH',
|
|
87
|
-
'BOTH',
|
|
88
|
-
'BREAK',
|
|
89
|
-
'BROWSE',
|
|
90
|
-
'BULK',
|
|
91
|
-
'BY',
|
|
92
|
-
'CASCADE',
|
|
93
|
-
'CASCADED',
|
|
94
|
-
'CASE',
|
|
95
|
-
'CAST',
|
|
96
|
-
'CATALOG',
|
|
97
|
-
'CHAR',
|
|
98
|
-
'CHARACTER',
|
|
99
|
-
'CHARACTER_LENGTH',
|
|
100
|
-
'CHAR_LENGTH',
|
|
101
|
-
'CHECK',
|
|
102
|
-
'CHECKPOINT',
|
|
103
|
-
'CLOSE',
|
|
104
|
-
'CLUSTERED',
|
|
105
|
-
'COALESCE',
|
|
106
|
-
'COLLATE',
|
|
107
|
-
'COLLATION',
|
|
108
|
-
'COLUMN',
|
|
109
|
-
'COMMIT',
|
|
110
|
-
'COMPUTE',
|
|
111
|
-
'CONFLICT',
|
|
112
|
-
'CONNECT',
|
|
113
|
-
'CONNECTION',
|
|
114
|
-
'CONSTRAINT',
|
|
115
|
-
'CONSTRAINTS',
|
|
116
|
-
'CONTAINS',
|
|
117
|
-
'CONTAINSTABLE',
|
|
118
|
-
'CONTINUE',
|
|
119
|
-
'CONVERT',
|
|
120
|
-
'CORRESPONDING',
|
|
121
|
-
'COUNT',
|
|
122
|
-
'CREATE',
|
|
123
|
-
'CROSS',
|
|
124
|
-
'CURRENT',
|
|
125
|
-
'CURRENT_DATE',
|
|
126
|
-
'CURRENT_TIME',
|
|
127
|
-
'CURRENT_TIMESTAMP',
|
|
128
|
-
'CURRENT_USER',
|
|
129
|
-
'CURSOR',
|
|
130
|
-
'DATABASE',
|
|
131
|
-
'DATE',
|
|
132
|
-
'DAY',
|
|
133
|
-
'DBCC',
|
|
134
|
-
'DEALLOCATE',
|
|
135
|
-
'DEC',
|
|
136
|
-
'DECIMAL',
|
|
137
|
-
'DECLARE',
|
|
138
|
-
'DEFAULT',
|
|
139
|
-
'DEFERRABLE',
|
|
140
|
-
'DEFERRED',
|
|
141
|
-
'DELETE',
|
|
142
|
-
'DENY',
|
|
143
|
-
'DESC',
|
|
144
|
-
'DESCRIBE',
|
|
145
|
-
'DESCRIPTOR',
|
|
146
|
-
'DETACH',
|
|
147
|
-
'DIAGNOSTICS',
|
|
148
|
-
'DISCONNECT',
|
|
149
|
-
'DISK',
|
|
150
|
-
'DISTINCT',
|
|
151
|
-
'DISTRIBUTED',
|
|
152
|
-
'DO',
|
|
153
|
-
'DOMAIN',
|
|
154
|
-
'DOUBLE',
|
|
155
|
-
'DROP',
|
|
156
|
-
'DUMP',
|
|
157
|
-
'EACH',
|
|
158
|
-
'ELSE',
|
|
159
|
-
'END',
|
|
160
|
-
'END-EXEC',
|
|
161
|
-
'ERRLVL',
|
|
162
|
-
'ESCAPE',
|
|
163
|
-
'EXCEPT',
|
|
164
|
-
'EXCEPTION',
|
|
165
|
-
'EXCLUDE',
|
|
166
|
-
'EXCLUSIVE',
|
|
167
|
-
'EXEC',
|
|
168
|
-
'EXECUTE',
|
|
169
|
-
'EXISTS',
|
|
170
|
-
'EXIT',
|
|
171
|
-
'EXPLAIN',
|
|
172
|
-
'EXTERNAL',
|
|
173
|
-
'EXTRACT',
|
|
174
|
-
'FAIL',
|
|
175
|
-
'FALSE',
|
|
176
|
-
'FETCH',
|
|
177
|
-
'FILE',
|
|
178
|
-
'FILLFACTOR',
|
|
179
|
-
'FILTER',
|
|
180
|
-
'FIRST',
|
|
181
|
-
'FLOAT',
|
|
182
|
-
'FOLLOWING',
|
|
183
|
-
'FOR',
|
|
184
|
-
'FOREIGN',
|
|
185
|
-
'FORTRAN',
|
|
186
|
-
'FOUND',
|
|
187
|
-
'FREETEXT',
|
|
188
|
-
'FREETEXTTABLE',
|
|
189
|
-
'FROM',
|
|
190
|
-
'FULL',
|
|
191
|
-
'FUNCTION',
|
|
192
|
-
'GENERATED',
|
|
193
|
-
'GET',
|
|
194
|
-
'GLOB',
|
|
195
|
-
'GLOBAL',
|
|
196
|
-
'GO',
|
|
197
|
-
'GOTO',
|
|
198
|
-
'GRANT',
|
|
199
|
-
'GROUP',
|
|
200
|
-
'GROUPS',
|
|
201
|
-
'HAVING',
|
|
202
|
-
'HOLDLOCK',
|
|
203
|
-
'HOUR',
|
|
204
|
-
'IDENTITY',
|
|
205
|
-
'IDENTITYCOL',
|
|
206
|
-
'IDENTITY_INSERT',
|
|
207
|
-
'IF',
|
|
208
|
-
'IGNORE',
|
|
209
|
-
'IMMEDIATE',
|
|
210
|
-
'IN',
|
|
211
|
-
'INCLUDE',
|
|
212
|
-
'INDEX',
|
|
213
|
-
'INDEXED',
|
|
214
|
-
'INDICATOR',
|
|
215
|
-
'INITIALLY',
|
|
216
|
-
'INNER',
|
|
217
|
-
'INPUT',
|
|
218
|
-
'INSENSITIVE',
|
|
219
|
-
'INSERT',
|
|
220
|
-
'INSTEAD',
|
|
221
|
-
'INT',
|
|
222
|
-
'INTEGER',
|
|
223
|
-
'INTERSECT',
|
|
224
|
-
'INTERVAL',
|
|
225
|
-
'INTO',
|
|
226
|
-
'IS',
|
|
227
|
-
'ISNULL',
|
|
228
|
-
'ISOLATION',
|
|
229
|
-
'JOIN',
|
|
230
|
-
'KEY',
|
|
231
|
-
'KILL',
|
|
232
|
-
'LANGUAGE',
|
|
233
|
-
'LAST',
|
|
234
|
-
'LEADING',
|
|
235
|
-
'LEFT',
|
|
236
|
-
'LEVEL',
|
|
237
|
-
'LIKE',
|
|
238
|
-
'LIMIT',
|
|
239
|
-
'LINENO',
|
|
240
|
-
'LOAD',
|
|
241
|
-
'LOCAL',
|
|
242
|
-
'LOWER',
|
|
243
|
-
'MATCH',
|
|
244
|
-
'MATERIALIZED',
|
|
245
|
-
'MAX',
|
|
246
|
-
'MERGE',
|
|
247
|
-
'MIN',
|
|
248
|
-
'MINUTE',
|
|
249
|
-
'MODULE',
|
|
250
|
-
'MONTH',
|
|
251
|
-
'NAMES',
|
|
252
|
-
'NATIONAL',
|
|
253
|
-
'NATURAL',
|
|
254
|
-
'NCHAR',
|
|
255
|
-
'NEXT',
|
|
256
|
-
'NO',
|
|
257
|
-
'NOCHECK',
|
|
258
|
-
'NONCLUSTERED',
|
|
259
|
-
'NONE',
|
|
260
|
-
'NOT',
|
|
261
|
-
'NOTHING',
|
|
262
|
-
'NOTNULL',
|
|
263
|
-
'NULL',
|
|
264
|
-
'NULLIF',
|
|
265
|
-
'NULLS',
|
|
266
|
-
'NUMERIC',
|
|
267
|
-
'OCTET_LENGTH',
|
|
268
|
-
'OF',
|
|
269
|
-
'OFF',
|
|
270
|
-
'OFFSET',
|
|
271
|
-
'OFFSETS',
|
|
272
|
-
'ON',
|
|
273
|
-
'ONLY',
|
|
274
|
-
'OPEN',
|
|
275
|
-
'OPENDATASOURCE',
|
|
276
|
-
'OPENQUERY',
|
|
277
|
-
'OPENROWSET',
|
|
278
|
-
'OPENXML',
|
|
279
|
-
'OPTION',
|
|
280
|
-
'OR',
|
|
281
|
-
'ORDER',
|
|
282
|
-
'OTHERS',
|
|
283
|
-
'OUTER',
|
|
284
|
-
'OUTPUT',
|
|
285
|
-
'OVER',
|
|
286
|
-
'OVERLAPS',
|
|
287
|
-
'PAD',
|
|
288
|
-
'PARTIAL',
|
|
289
|
-
'PARTITION',
|
|
290
|
-
'PASCAL',
|
|
291
|
-
'PERCENT',
|
|
292
|
-
'PIVOT',
|
|
293
|
-
'PLAN',
|
|
294
|
-
'POSITION',
|
|
295
|
-
'PRAGMA',
|
|
296
|
-
'PRECEDING',
|
|
297
|
-
'PRECISION',
|
|
298
|
-
'PREPARE',
|
|
299
|
-
'PRESERVE',
|
|
300
|
-
'PRIMARY',
|
|
301
|
-
'PRINT',
|
|
302
|
-
'PRIOR',
|
|
303
|
-
'PRIVILEGES',
|
|
304
|
-
'PROC',
|
|
305
|
-
'PROCEDURE',
|
|
306
|
-
'PUBLIC',
|
|
307
|
-
'QUERY',
|
|
308
|
-
'RAISE',
|
|
309
|
-
'RAISERROR',
|
|
310
|
-
'RANGE',
|
|
311
|
-
'READ',
|
|
312
|
-
'READTEXT',
|
|
313
|
-
'REAL',
|
|
314
|
-
'RECONFIGURE',
|
|
315
|
-
'RECURSIVE',
|
|
316
|
-
'REFERENCES',
|
|
317
|
-
'REGEXP',
|
|
318
|
-
'REINDEX',
|
|
319
|
-
'RELATIVE',
|
|
320
|
-
'RELEASE',
|
|
321
|
-
'RENAME',
|
|
322
|
-
'REPLACE',
|
|
323
|
-
'REPLICATION',
|
|
324
|
-
'RESTORE',
|
|
325
|
-
'RESTRICT',
|
|
326
|
-
'RETURN',
|
|
327
|
-
'RETURNING',
|
|
328
|
-
'REVERT',
|
|
329
|
-
'REVOKE',
|
|
330
|
-
'RIGHT',
|
|
331
|
-
'ROLLBACK',
|
|
332
|
-
'ROW',
|
|
333
|
-
'ROWCOUNT',
|
|
334
|
-
'ROWGUIDCOL',
|
|
335
|
-
'ROWS',
|
|
336
|
-
'RULE',
|
|
337
|
-
'SAVE',
|
|
338
|
-
'SAVEPOINT',
|
|
339
|
-
'SCHEMA',
|
|
340
|
-
'SCROLL',
|
|
341
|
-
'SECOND',
|
|
342
|
-
'SECTION',
|
|
343
|
-
'SECURITYAUDIT',
|
|
344
|
-
'SELECT',
|
|
345
|
-
'SEMANTICKEYPHRASETABLE',
|
|
346
|
-
'SEMANTICSIMILARITYDETAILSTABLE',
|
|
347
|
-
'SEMANTICSIMILARITYTABLE',
|
|
348
|
-
'SESSION',
|
|
349
|
-
'SESSION_USER',
|
|
350
|
-
'SET',
|
|
351
|
-
'SETUSER',
|
|
352
|
-
'SHUTDOWN',
|
|
353
|
-
'SIZE',
|
|
354
|
-
'SMALLINT',
|
|
355
|
-
'SOME',
|
|
356
|
-
'SPACE',
|
|
357
|
-
'SQL',
|
|
358
|
-
'SQLCA',
|
|
359
|
-
'SQLCODE',
|
|
360
|
-
'SQLERROR',
|
|
361
|
-
'SQLSTATE',
|
|
362
|
-
'SQLWARNING',
|
|
363
|
-
'STATISTICS',
|
|
364
|
-
'SUBSTRING',
|
|
365
|
-
'SUM',
|
|
366
|
-
'SYSTEM_USER',
|
|
367
|
-
'TABLE',
|
|
368
|
-
'TABLESAMPLE',
|
|
369
|
-
'TEMP',
|
|
370
|
-
'TEMPORARY',
|
|
371
|
-
'TEXTSIZE',
|
|
372
|
-
'THEN',
|
|
373
|
-
'TIES',
|
|
374
|
-
'TIME',
|
|
375
|
-
'TIMESTAMP',
|
|
376
|
-
'TIMEZONE_HOUR',
|
|
377
|
-
'TIMEZONE_MINUTE',
|
|
378
|
-
'TO',
|
|
379
|
-
'TOP',
|
|
380
|
-
'TRAILING',
|
|
381
|
-
'TRAN',
|
|
382
|
-
'TRANSACTION',
|
|
383
|
-
'TRANSLATE',
|
|
384
|
-
'TRANSLATION',
|
|
385
|
-
'TRIGGER',
|
|
386
|
-
'TRIM',
|
|
387
|
-
'TRUE',
|
|
388
|
-
'TRUNCATE',
|
|
389
|
-
'TRY_CONVERT',
|
|
390
|
-
'TSEQUAL',
|
|
391
|
-
'UNBOUNDED',
|
|
392
|
-
'UNION',
|
|
393
|
-
'UNIQUE',
|
|
394
|
-
'UNKNOWN',
|
|
395
|
-
'UNPIVOT',
|
|
396
|
-
'UPDATE',
|
|
397
|
-
'UPDATETEXT',
|
|
398
|
-
'UPPER',
|
|
399
|
-
'USAGE',
|
|
400
|
-
'USE',
|
|
401
|
-
'USER',
|
|
402
|
-
'USING',
|
|
403
|
-
'VACUUM',
|
|
404
|
-
'VALUE',
|
|
405
|
-
'VALUES',
|
|
406
|
-
'VARCHAR',
|
|
407
|
-
'VARYING',
|
|
408
|
-
'VIEW',
|
|
409
|
-
'VIRTUAL',
|
|
410
|
-
'WAITFOR',
|
|
411
|
-
'WHEN',
|
|
412
|
-
'WHENEVER',
|
|
413
|
-
'WHERE',
|
|
414
|
-
'WHILE',
|
|
415
|
-
'WINDOW',
|
|
416
|
-
'WITH',
|
|
417
|
-
'WITHIN GROUP',
|
|
418
|
-
'WITHOUT',
|
|
419
|
-
'WORK',
|
|
420
|
-
'WRITE',
|
|
421
|
-
'WRITETEXT',
|
|
422
|
-
'YEAR',
|
|
423
|
-
'ZONE',
|
|
424
|
-
],
|
|
425
|
-
operators: [
|
|
426
|
-
// Set
|
|
427
|
-
'EXCEPT',
|
|
428
|
-
'INTERSECT',
|
|
429
|
-
'UNION',
|
|
430
|
-
// Join
|
|
431
|
-
'APPLY',
|
|
432
|
-
'CROSS',
|
|
433
|
-
'FULL',
|
|
434
|
-
'INNER',
|
|
435
|
-
'JOIN',
|
|
436
|
-
'LEFT',
|
|
437
|
-
'OUTER',
|
|
438
|
-
'RIGHT',
|
|
439
|
-
// Predicates
|
|
440
|
-
'CONTAINS',
|
|
441
|
-
'FREETEXT',
|
|
442
|
-
'IS',
|
|
443
|
-
'NULL',
|
|
444
|
-
// Pivoting
|
|
445
|
-
'PIVOT',
|
|
446
|
-
'UNPIVOT',
|
|
447
|
-
// Merging
|
|
448
|
-
'MATCHED',
|
|
449
|
-
],
|
|
450
|
-
logicalOperators: ['ALL', 'AND', 'ANY', 'BETWEEN', 'EXISTS', 'IN', 'LIKE', 'NOT', 'OR', 'SOME'],
|
|
451
|
-
comparisonOperators: ['<>', '>', '<', '>=', '<=', '=', '!=', '&', '~', '^', '%'],
|
|
452
|
-
builtinFunctions: [
|
|
453
|
-
// Aggregate
|
|
454
|
-
'AVG',
|
|
455
|
-
'CHECKSUM_AGG',
|
|
456
|
-
'COUNT',
|
|
457
|
-
'COUNT_BIG',
|
|
458
|
-
'GROUPING',
|
|
459
|
-
'GROUPING_ID',
|
|
460
|
-
'MAX',
|
|
461
|
-
'MIN',
|
|
462
|
-
'SUM',
|
|
463
|
-
'STDEV',
|
|
464
|
-
'STDEVP',
|
|
465
|
-
'VAR',
|
|
466
|
-
'VARP',
|
|
467
|
-
// Analytic
|
|
468
|
-
'CUME_DIST',
|
|
469
|
-
'FIRST_VALUE',
|
|
470
|
-
'LAG',
|
|
471
|
-
'LAST_VALUE',
|
|
472
|
-
'LEAD',
|
|
473
|
-
'PERCENTILE_CONT',
|
|
474
|
-
'PERCENTILE_DISC',
|
|
475
|
-
'PERCENT_RANK',
|
|
476
|
-
// Collation
|
|
477
|
-
'COLLATE',
|
|
478
|
-
'COLLATIONPROPERTY',
|
|
479
|
-
'TERTIARY_WEIGHTS',
|
|
480
|
-
// Azure
|
|
481
|
-
'FEDERATION_FILTERING_VALUE',
|
|
482
|
-
// Conversion
|
|
483
|
-
'CAST',
|
|
484
|
-
'CONVERT',
|
|
485
|
-
'PARSE',
|
|
486
|
-
'TRY_CAST',
|
|
487
|
-
'TRY_CONVERT',
|
|
488
|
-
'TRY_PARSE',
|
|
489
|
-
// Cryptographic
|
|
490
|
-
'ASYMKEY_ID',
|
|
491
|
-
'ASYMKEYPROPERTY',
|
|
492
|
-
'CERTPROPERTY',
|
|
493
|
-
'CERT_ID',
|
|
494
|
-
'CRYPT_GEN_RANDOM',
|
|
495
|
-
'DECRYPTBYASYMKEY',
|
|
496
|
-
'DECRYPTBYCERT',
|
|
497
|
-
'DECRYPTBYKEY',
|
|
498
|
-
'DECRYPTBYKEYAUTOASYMKEY',
|
|
499
|
-
'DECRYPTBYKEYAUTOCERT',
|
|
500
|
-
'DECRYPTBYPASSPHRASE',
|
|
501
|
-
'ENCRYPTBYASYMKEY',
|
|
502
|
-
'ENCRYPTBYCERT',
|
|
503
|
-
'ENCRYPTBYKEY',
|
|
504
|
-
'ENCRYPTBYPASSPHRASE',
|
|
505
|
-
'HASHBYTES',
|
|
506
|
-
'IS_OBJECTSIGNED',
|
|
507
|
-
'KEY_GUID',
|
|
508
|
-
'KEY_ID',
|
|
509
|
-
'KEY_NAME',
|
|
510
|
-
'SIGNBYASYMKEY',
|
|
511
|
-
'SIGNBYCERT',
|
|
512
|
-
'SYMKEYPROPERTY',
|
|
513
|
-
'VERIFYSIGNEDBYCERT',
|
|
514
|
-
'VERIFYSIGNEDBYASYMKEY',
|
|
515
|
-
// Cursor
|
|
516
|
-
'CURSOR_STATUS',
|
|
517
|
-
// Datatype
|
|
518
|
-
'DATALENGTH',
|
|
519
|
-
'IDENT_CURRENT',
|
|
520
|
-
'IDENT_INCR',
|
|
521
|
-
'IDENT_SEED',
|
|
522
|
-
'IDENTITY',
|
|
523
|
-
'SQL_VARIANT_PROPERTY',
|
|
524
|
-
// Datetime
|
|
525
|
-
'CURRENT_TIMESTAMP',
|
|
526
|
-
'DATEADD',
|
|
527
|
-
'DATEDIFF',
|
|
528
|
-
'DATEFROMPARTS',
|
|
529
|
-
'DATENAME',
|
|
530
|
-
'DATEPART',
|
|
531
|
-
'DATETIME2FROMPARTS',
|
|
532
|
-
'DATETIMEFROMPARTS',
|
|
533
|
-
'DATETIMEOFFSETFROMPARTS',
|
|
534
|
-
'DAY',
|
|
535
|
-
'EOMONTH',
|
|
536
|
-
'GETDATE',
|
|
537
|
-
'GETUTCDATE',
|
|
538
|
-
'ISDATE',
|
|
539
|
-
'MONTH',
|
|
540
|
-
'SMALLDATETIMEFROMPARTS',
|
|
541
|
-
'SWITCHOFFSET',
|
|
542
|
-
'SYSDATETIME',
|
|
543
|
-
'SYSDATETIMEOFFSET',
|
|
544
|
-
'SYSUTCDATETIME',
|
|
545
|
-
'TIMEFROMPARTS',
|
|
546
|
-
'TODATETIMEOFFSET',
|
|
547
|
-
'YEAR',
|
|
548
|
-
// Logical
|
|
549
|
-
'CHOOSE',
|
|
550
|
-
'COALESCE',
|
|
551
|
-
'IIF',
|
|
552
|
-
'NULLIF',
|
|
553
|
-
// Mathematical
|
|
554
|
-
'ABS',
|
|
555
|
-
'ACOS',
|
|
556
|
-
'ASIN',
|
|
557
|
-
'ATAN',
|
|
558
|
-
'ATN2',
|
|
559
|
-
'CEILING',
|
|
560
|
-
'COS',
|
|
561
|
-
'COT',
|
|
562
|
-
'DEGREES',
|
|
563
|
-
'EXP',
|
|
564
|
-
'FLOOR',
|
|
565
|
-
'LOG',
|
|
566
|
-
'LOG10',
|
|
567
|
-
'PI',
|
|
568
|
-
'POWER',
|
|
569
|
-
'RADIANS',
|
|
570
|
-
'RAND',
|
|
571
|
-
'ROUND',
|
|
572
|
-
'SIGN',
|
|
573
|
-
'SIN',
|
|
574
|
-
'SQRT',
|
|
575
|
-
'SQUARE',
|
|
576
|
-
'TAN',
|
|
577
|
-
// Metadata
|
|
578
|
-
'APP_NAME',
|
|
579
|
-
'APPLOCK_MODE',
|
|
580
|
-
'APPLOCK_TEST',
|
|
581
|
-
'ASSEMBLYPROPERTY',
|
|
582
|
-
'COL_LENGTH',
|
|
583
|
-
'COL_NAME',
|
|
584
|
-
'COLUMNPROPERTY',
|
|
585
|
-
'DATABASE_PRINCIPAL_ID',
|
|
586
|
-
'DATABASEPROPERTYEX',
|
|
587
|
-
'DB_ID',
|
|
588
|
-
'DB_NAME',
|
|
589
|
-
'FILE_ID',
|
|
590
|
-
'FILE_IDEX',
|
|
591
|
-
'FILE_NAME',
|
|
592
|
-
'FILEGROUP_ID',
|
|
593
|
-
'FILEGROUP_NAME',
|
|
594
|
-
'FILEGROUPPROPERTY',
|
|
595
|
-
'FILEPROPERTY',
|
|
596
|
-
'FULLTEXTCATALOGPROPERTY',
|
|
597
|
-
'FULLTEXTSERVICEPROPERTY',
|
|
598
|
-
'INDEX_COL',
|
|
599
|
-
'INDEXKEY_PROPERTY',
|
|
600
|
-
'INDEXPROPERTY',
|
|
601
|
-
'OBJECT_DEFINITION',
|
|
602
|
-
'OBJECT_ID',
|
|
603
|
-
'OBJECT_NAME',
|
|
604
|
-
'OBJECT_SCHEMA_NAME',
|
|
605
|
-
'OBJECTPROPERTY',
|
|
606
|
-
'OBJECTPROPERTYEX',
|
|
607
|
-
'ORIGINAL_DB_NAME',
|
|
608
|
-
'PARSENAME',
|
|
609
|
-
'SCHEMA_ID',
|
|
610
|
-
'SCHEMA_NAME',
|
|
611
|
-
'SCOPE_IDENTITY',
|
|
612
|
-
'SERVERPROPERTY',
|
|
613
|
-
'STATS_DATE',
|
|
614
|
-
'TYPE_ID',
|
|
615
|
-
'TYPE_NAME',
|
|
616
|
-
'TYPEPROPERTY',
|
|
617
|
-
// Ranking
|
|
618
|
-
'DENSE_RANK',
|
|
619
|
-
'NTILE',
|
|
620
|
-
'RANK',
|
|
621
|
-
'ROW_NUMBER',
|
|
622
|
-
// Replication
|
|
623
|
-
'PUBLISHINGSERVERNAME',
|
|
624
|
-
// Rowset
|
|
625
|
-
'OPENDATASOURCE',
|
|
626
|
-
'OPENQUERY',
|
|
627
|
-
'OPENROWSET',
|
|
628
|
-
'OPENXML',
|
|
629
|
-
// Security
|
|
630
|
-
'CERTENCODED',
|
|
631
|
-
'CERTPRIVATEKEY',
|
|
632
|
-
'CURRENT_USER',
|
|
633
|
-
'HAS_DBACCESS',
|
|
634
|
-
'HAS_PERMS_BY_NAME',
|
|
635
|
-
'IS_MEMBER',
|
|
636
|
-
'IS_ROLEMEMBER',
|
|
637
|
-
'IS_SRVROLEMEMBER',
|
|
638
|
-
'LOGINPROPERTY',
|
|
639
|
-
'ORIGINAL_LOGIN',
|
|
640
|
-
'PERMISSIONS',
|
|
641
|
-
'PWDENCRYPT',
|
|
642
|
-
'PWDCOMPARE',
|
|
643
|
-
'SESSION_USER',
|
|
644
|
-
'SESSIONPROPERTY',
|
|
645
|
-
'SUSER_ID',
|
|
646
|
-
'SUSER_NAME',
|
|
647
|
-
'SUSER_SID',
|
|
648
|
-
'SUSER_SNAME',
|
|
649
|
-
'SYSTEM_USER',
|
|
650
|
-
'USER',
|
|
651
|
-
'USER_ID',
|
|
652
|
-
'USER_NAME',
|
|
653
|
-
// String
|
|
654
|
-
'ASCII',
|
|
655
|
-
'CHAR',
|
|
656
|
-
'CHARINDEX',
|
|
657
|
-
'CONCAT',
|
|
658
|
-
'DIFFERENCE',
|
|
659
|
-
'FORMAT',
|
|
660
|
-
'LEFT',
|
|
661
|
-
'LEN',
|
|
662
|
-
'LOWER',
|
|
663
|
-
'LTRIM',
|
|
664
|
-
'NCHAR',
|
|
665
|
-
'PATINDEX',
|
|
666
|
-
'QUOTENAME',
|
|
667
|
-
'REPLACE',
|
|
668
|
-
'REPLICATE',
|
|
669
|
-
'REVERSE',
|
|
670
|
-
'RIGHT',
|
|
671
|
-
'RTRIM',
|
|
672
|
-
'SOUNDEX',
|
|
673
|
-
'SPACE',
|
|
674
|
-
'STR',
|
|
675
|
-
'STUFF',
|
|
676
|
-
'SUBSTRING',
|
|
677
|
-
'UNICODE',
|
|
678
|
-
'UPPER',
|
|
679
|
-
// System
|
|
680
|
-
'BINARY_CHECKSUM',
|
|
681
|
-
'CHECKSUM',
|
|
682
|
-
'CONNECTIONPROPERTY',
|
|
683
|
-
'CONTEXT_INFO',
|
|
684
|
-
'CURRENT_REQUEST_ID',
|
|
685
|
-
'ERROR_LINE',
|
|
686
|
-
'ERROR_NUMBER',
|
|
687
|
-
'ERROR_MESSAGE',
|
|
688
|
-
'ERROR_PROCEDURE',
|
|
689
|
-
'ERROR_SEVERITY',
|
|
690
|
-
'ERROR_STATE',
|
|
691
|
-
'FORMATMESSAGE',
|
|
692
|
-
'GETANSINULL',
|
|
693
|
-
'GET_FILESTREAM_TRANSACTION_CONTEXT',
|
|
694
|
-
'HOST_ID',
|
|
695
|
-
'HOST_NAME',
|
|
696
|
-
'ISNULL',
|
|
697
|
-
'ISNUMERIC',
|
|
698
|
-
'MIN_ACTIVE_ROWVERSION',
|
|
699
|
-
'NEWID',
|
|
700
|
-
'NEWSEQUENTIALID',
|
|
701
|
-
'ROWCOUNT_BIG',
|
|
702
|
-
'XACT_STATE',
|
|
703
|
-
// TextImage
|
|
704
|
-
'TEXTPTR',
|
|
705
|
-
'TEXTVALID',
|
|
706
|
-
// Trigger
|
|
707
|
-
'COLUMNS_UPDATED',
|
|
708
|
-
'EVENTDATA',
|
|
709
|
-
'TRIGGER_NESTLEVEL',
|
|
710
|
-
'UPDATE',
|
|
711
|
-
// ChangeTracking
|
|
712
|
-
'CHANGETABLE',
|
|
713
|
-
'CHANGE_TRACKING_CONTEXT',
|
|
714
|
-
'CHANGE_TRACKING_CURRENT_VERSION',
|
|
715
|
-
'CHANGE_TRACKING_IS_COLUMN_IN_MASK',
|
|
716
|
-
'CHANGE_TRACKING_MIN_VALID_VERSION',
|
|
717
|
-
// FullTextSearch
|
|
718
|
-
'CONTAINSTABLE',
|
|
719
|
-
'FREETEXTTABLE',
|
|
720
|
-
// SemanticTextSearch
|
|
721
|
-
'SEMANTICKEYPHRASETABLE',
|
|
722
|
-
'SEMANTICSIMILARITYDETAILSTABLE',
|
|
723
|
-
'SEMANTICSIMILARITYTABLE',
|
|
724
|
-
// FileStream
|
|
725
|
-
'FILETABLEROOTPATH',
|
|
726
|
-
'GETFILENAMESPACEPATH',
|
|
727
|
-
'GETPATHLOCATOR',
|
|
728
|
-
'PATHNAME',
|
|
729
|
-
// ServiceBroker
|
|
730
|
-
'GET_TRANSMISSION_STATUS',
|
|
731
|
-
],
|
|
732
|
-
builtinVariables: [
|
|
733
|
-
// Configuration
|
|
734
|
-
'@@DATEFIRST',
|
|
735
|
-
'@@DBTS',
|
|
736
|
-
'@@LANGID',
|
|
737
|
-
'@@LANGUAGE',
|
|
738
|
-
'@@LOCK_TIMEOUT',
|
|
739
|
-
'@@MAX_CONNECTIONS',
|
|
740
|
-
'@@MAX_PRECISION',
|
|
741
|
-
'@@NESTLEVEL',
|
|
742
|
-
'@@OPTIONS',
|
|
743
|
-
'@@REMSERVER',
|
|
744
|
-
'@@SERVERNAME',
|
|
745
|
-
'@@SERVICENAME',
|
|
746
|
-
'@@SPID',
|
|
747
|
-
'@@TEXTSIZE',
|
|
748
|
-
'@@VERSION',
|
|
749
|
-
// Cursor
|
|
750
|
-
'@@CURSOR_ROWS',
|
|
751
|
-
'@@FETCH_STATUS',
|
|
752
|
-
// Datetime
|
|
753
|
-
'@@DATEFIRST',
|
|
754
|
-
// Metadata
|
|
755
|
-
'@@PROCID',
|
|
756
|
-
// System
|
|
757
|
-
'@@ERROR',
|
|
758
|
-
'@@IDENTITY',
|
|
759
|
-
'@@ROWCOUNT',
|
|
760
|
-
'@@TRANCOUNT',
|
|
761
|
-
// Stats
|
|
762
|
-
'@@CONNECTIONS',
|
|
763
|
-
'@@CPU_BUSY',
|
|
764
|
-
'@@IDLE',
|
|
765
|
-
'@@IO_BUSY',
|
|
766
|
-
'@@PACKET_ERRORS',
|
|
767
|
-
'@@PACK_RECEIVED',
|
|
768
|
-
'@@PACK_SENT',
|
|
769
|
-
'@@TIMETICKS',
|
|
770
|
-
'@@TOTAL_ERRORS',
|
|
771
|
-
'@@TOTAL_READ',
|
|
772
|
-
'@@TOTAL_WRITE',
|
|
773
|
-
],
|
|
774
|
-
pseudoColumns: ['$ACTION', '$IDENTITY', '$ROWGUID', '$PARTITION'],
|
|
775
|
-
tokenizer: {
|
|
776
|
-
root: [
|
|
777
|
-
{ include: '@templateVariables' },
|
|
778
|
-
{ include: '@macros' },
|
|
779
|
-
{ include: '@comments' },
|
|
780
|
-
{ include: '@whitespace' },
|
|
781
|
-
{ include: '@pseudoColumns' },
|
|
782
|
-
{ include: '@numbers' },
|
|
783
|
-
{ include: '@strings' },
|
|
784
|
-
{ include: '@complexIdentifiers' },
|
|
785
|
-
{ include: '@scopes' },
|
|
786
|
-
{ include: '@schemaTable' },
|
|
787
|
-
[/[;,.]/, 'delimiter'],
|
|
788
|
-
[/[()]/, '@brackets'],
|
|
789
|
-
[
|
|
790
|
-
/[\w@#$|<|>|=|!|%|&|+|\|-|*|/|~|^]+/,
|
|
791
|
-
{
|
|
792
|
-
cases: {
|
|
793
|
-
'@operators': 'operator',
|
|
794
|
-
'@comparisonOperators': 'operator',
|
|
795
|
-
'@logicalOperators': 'operator',
|
|
796
|
-
'@builtinVariables': 'predefined',
|
|
797
|
-
'@builtinFunctions': 'predefined',
|
|
798
|
-
'@keywords': 'keyword',
|
|
799
|
-
'@default': 'identifier',
|
|
800
|
-
},
|
|
801
|
-
},
|
|
802
|
-
],
|
|
803
|
-
],
|
|
804
|
-
templateVariables: [[/\$[a-zA-Z0-9]+/, 'variable']],
|
|
805
|
-
macros: [[/\$__[a-zA-Z0-9-_]+/, 'type']],
|
|
806
|
-
schemaTable: [
|
|
807
|
-
[/(\w+)\./, 'identifier'],
|
|
808
|
-
[/(\w+\.\w+)/, 'identifier'],
|
|
809
|
-
],
|
|
810
|
-
whitespace: [[/\s+/, 'white']],
|
|
811
|
-
comments: [
|
|
812
|
-
[/--+.*/, 'comment'],
|
|
813
|
-
[/\/\*/, { token: 'comment.quote', next: '@comment' }],
|
|
814
|
-
],
|
|
815
|
-
comment: [
|
|
816
|
-
[/[^*/]+/, 'comment'],
|
|
817
|
-
// Not supporting nested comments, as nested comments seem to not be standard?
|
|
818
|
-
// i.e. http://stackoverflow.com/questions/728172/are-there-multiline-comment-delimiters-in-sql-that-are-vendor-agnostic
|
|
819
|
-
// [/\/\*/, { token: 'comment.quote', next: '@push' }], // nested comment not allowed :-(
|
|
820
|
-
[/\*\//, { token: 'comment.quote', next: '@pop' }],
|
|
821
|
-
[/./, 'comment'],
|
|
822
|
-
],
|
|
823
|
-
pseudoColumns: [
|
|
824
|
-
[
|
|
825
|
-
/[$][A-Za-z_][\w@#$]*/,
|
|
826
|
-
{
|
|
827
|
-
cases: {
|
|
828
|
-
'@pseudoColumns': 'predefined',
|
|
829
|
-
'@default': 'identifier',
|
|
830
|
-
},
|
|
831
|
-
},
|
|
832
|
-
],
|
|
833
|
-
],
|
|
834
|
-
numbers: [
|
|
835
|
-
[/0[xX][0-9a-fA-F]*/, 'number'],
|
|
836
|
-
[/[$][+-]*\d*(\.\d*)?/, 'number'],
|
|
837
|
-
[/((\d+(\.\d*)?)|(\.\d+))([eE][\-+]?\d+)?/, 'number'],
|
|
838
|
-
],
|
|
839
|
-
strings: [
|
|
840
|
-
[/N'/, { token: 'string', next: '@string' }],
|
|
841
|
-
[/'/, { token: 'string', next: '@string' }],
|
|
842
|
-
],
|
|
843
|
-
string: [
|
|
844
|
-
[/[^']+/, 'string'],
|
|
845
|
-
[/''/, 'string'],
|
|
846
|
-
[/'/, { token: 'string', next: '@pop' }],
|
|
847
|
-
],
|
|
848
|
-
complexIdentifiers: [
|
|
849
|
-
[/\[/, { token: 'identifier.quote', next: '@bracketedIdentifier' }],
|
|
850
|
-
[/"/, { token: 'identifier.quote', next: '@quotedIdentifier' }],
|
|
851
|
-
],
|
|
852
|
-
bracketedIdentifier: [
|
|
853
|
-
[/[^\]]+/, 'identifier'],
|
|
854
|
-
[/]]/, 'identifier'],
|
|
855
|
-
[/]/, { token: 'identifier.quote', next: '@pop' }],
|
|
856
|
-
],
|
|
857
|
-
quotedIdentifier: [
|
|
858
|
-
[/[^"]+/, 'identifier'],
|
|
859
|
-
[/""/, 'identifier'],
|
|
860
|
-
[/"/, { token: 'identifier.quote', next: '@pop' }],
|
|
861
|
-
],
|
|
862
|
-
scopes: [
|
|
863
|
-
[/BEGIN\s+(DISTRIBUTED\s+)?TRAN(SACTION)?\b/i, 'keyword'],
|
|
864
|
-
[/BEGIN\s+TRY\b/i, { token: 'keyword.try' }],
|
|
865
|
-
[/END\s+TRY\b/i, { token: 'keyword.try' }],
|
|
866
|
-
[/BEGIN\s+CATCH\b/i, { token: 'keyword.catch' }],
|
|
867
|
-
[/END\s+CATCH\b/i, { token: 'keyword.catch' }],
|
|
868
|
-
[/(BEGIN|CASE)\b/i, { token: 'keyword.block' }],
|
|
869
|
-
[/END\b/i, { token: 'keyword.block' }],
|
|
870
|
-
[/WHEN\b/i, { token: 'keyword.choice' }],
|
|
871
|
-
[/THEN\b/i, { token: 'keyword.choice' }],
|
|
872
|
-
],
|
|
873
|
-
},
|
|
874
|
-
};
|
|
875
|
-
//# sourceMappingURL=language.js.map
|