@redocly/theme 0.83.0-rc.1 → 0.83.0-rc.2

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.
@@ -101,6 +101,7 @@ const DropdownMenuItemWrapper = styled_components_1.default.li `
101
101
  ${({ separator }) => separator &&
102
102
  (0, styled_components_1.css) `
103
103
  cursor: default;
104
+ pointer-events: none;
104
105
  font-size: var(--dropdown-menu-item-separator-font-size);
105
106
  line-height: var(--dropdown-menu-item-separator-line-height);
106
107
  color: var(--dropdown-menu-item-separator-text-color);
@@ -3,7 +3,7 @@ export declare enum SecurityVariablesEnvSuffix {
3
3
  BasicAuthPassword = "_password",
4
4
  JWTToken = "_token",
5
5
  APIKey = "",
6
- OAuth2Token = "_token",
7
- OAuth2ClientId = "_client_id",
8
- OAuth2ClientSecret = "_client_secret"
6
+ Token = "_token",
7
+ ClientId = "_client_id",
8
+ ClientSecret = "_client_secret"
9
9
  }
@@ -7,8 +7,8 @@ var SecurityVariablesEnvSuffix;
7
7
  SecurityVariablesEnvSuffix["BasicAuthPassword"] = "_password";
8
8
  SecurityVariablesEnvSuffix["JWTToken"] = "_token";
9
9
  SecurityVariablesEnvSuffix["APIKey"] = "";
10
- SecurityVariablesEnvSuffix["OAuth2Token"] = "_token";
11
- SecurityVariablesEnvSuffix["OAuth2ClientId"] = "_client_id";
12
- SecurityVariablesEnvSuffix["OAuth2ClientSecret"] = "_client_secret";
10
+ SecurityVariablesEnvSuffix["Token"] = "_token";
11
+ SecurityVariablesEnvSuffix["ClientId"] = "_client_id";
12
+ SecurityVariablesEnvSuffix["ClientSecret"] = "_client_secret";
13
13
  })(SecurityVariablesEnvSuffix || (exports.SecurityVariablesEnvSuffix = SecurityVariablesEnvSuffix = {}));
14
14
  //# sourceMappingURL=environments.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@redocly/theme",
3
- "version": "0.83.0-rc.1",
3
+ "version": "0.83.0-rc.2",
4
4
  "description": "Shared UI components lib",
5
5
  "keywords": [
6
6
  "theme",
@@ -98,7 +98,7 @@
98
98
  "timeago.js": "^4.0.2",
99
99
  "i18next": "^22.4.12",
100
100
  "nprogress": "^0.2.0",
101
- "@redocly/config": "0.83.0-rc.1"
101
+ "@redocly/config": "0.83.0-rc.2"
102
102
  },
103
103
  "scripts": {
104
104
  "start": "npm-run-all --parallel storybook storybook:tokens:watch",
@@ -142,6 +142,7 @@ const DropdownMenuItemWrapper = styled.li<{
142
142
  separator &&
143
143
  css`
144
144
  cursor: default;
145
+ pointer-events: none;
145
146
  font-size: var(--dropdown-menu-item-separator-font-size);
146
147
  line-height: var(--dropdown-menu-item-separator-line-height);
147
148
  color: var(--dropdown-menu-item-separator-text-color);
@@ -3,7 +3,7 @@ export enum SecurityVariablesEnvSuffix {
3
3
  BasicAuthPassword = '_password',
4
4
  JWTToken = '_token',
5
5
  APIKey = '',
6
- OAuth2Token = '_token',
7
- OAuth2ClientId = '_client_id',
8
- OAuth2ClientSecret = '_client_secret',
6
+ Token = '_token',
7
+ ClientId = '_client_id',
8
+ ClientSecret = '_client_secret',
9
9
  }