[MM-61756] Attribute Based Access Control - Phase 1 (#30785)

Attribute Based Access Control - Base
* MM-63662

* MM-63919

* MM-63954

* MM-63955 

* MM-63425

* MM-63426

* MM-63458

* MM-63459

* MM-63603

* MM-63845

* MM-64146

* MM-64199

* MM-64201

* MM-64233

* MM-64247

* MM-64268

---------

Co-authored-by: Harshil Sharma <harshilsharma63@gmail.com>
Co-authored-by: Pablo Andrés Vélez Vidal <pablovv2012@gmail.com>
Co-authored-by: abhijit-singh <abhijitsingh0702@gmail.com>
Co-authored-by: Harrison Healey <harrisonmhealey@gmail.com>
Этот коммит содержится в:
Ibrahim Serdar Acikgoz
2025-05-15 11:33:08 +02:00
коммит произвёл GitHub
родитель 4b445cbf16
Коммит a344b3225b
156 изменённых файлов: 14382 добавлений и 621 удалений

Просмотреть файл

@@ -13,6 +13,7 @@ const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const webpack = require('webpack');
const {ModuleFederationPlugin} = require('webpack').container;
const WebpackPwaManifest = require('webpack-pwa-manifest');
const MonacoWebpackPlugin = require('monaco-editor-webpack-plugin');
const packageJson = require('./package.json');
@@ -267,6 +268,40 @@ var config = {
sizes: '96x96',
}],
}),
new MonacoWebpackPlugin({
languages: [],
// don't include features we disable. these generally correspond to the options
// passed to editor initialization in note-content-editor.tsx
// @see https://github.com/microsoft/monaco-editor/blob/main/webpack-plugin/README.md#options
features: [
'!bracketMatching',
'!codeAction',
'!codelens',
'!colorPicker',
'!comment',
'!diffEditor',
'!diffEditorBreadcrumbs',
'!folding',
'!gotoError',
'!gotoLine',
'!gotoSymbol',
'!gotoZoom',
'!inspectTokens',
'!multicursor',
'!parameterHints',
'!quickCommand',
'!quickHelp',
'!quickOutline',
'!referenceSearch',
'!rename',
'!snippet',
'!stickyScroll',
'!suggest',
'!toggleHighContrast',
'!unicodeHighlighter',
],
}),
],
};