@manuscripts/article-editor 4.9.0 → 4.9.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.
@@ -1,8 +1,8 @@
1
1
  "use strict";
2
2
  /*!
3
- * The contents of this file are subject to the Common Public Attribution License Version 1.0 (the License); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://mpapp-public.gitlab.io/manuscripts-frontend/LICENSE. The License is based on the Mozilla Public License Version 1.1 but Sections 14 and 15 have been added to cover use of software over a computer network and provide for limited attribution for the Original Developer. In addition, Exhibit A has been modified to be consistent with Exhibit B.
3
+ * The contents of this file are subject to the Common Public Attribution License Version 1.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://mpapp-public.gitlab.io/manuscripts-frontend/LICENSE. The License is based on the Mozilla Public License Version 1.1 but Sections 14 and 15 have been added to cover use of software over a computer network and provide for limited attribution for the Original Developer. In addition, Exhibit A has been modified to be consistent with Exhibit B.
4
4
  *
5
- * Software distributed under the License is distributed on an AS IS basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License.
5
+ * Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License.
6
6
  *
7
7
  * The Original Code is manuscripts-frontend.
8
8
  *
@@ -10,44 +10,14 @@
10
10
  *
11
11
  * All portions of the code written by Atypon Systems LLC are Copyright (c) 2019 Atypon Systems LLC. All Rights Reserved.
12
12
  */
13
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
14
- if (k2 === undefined) k2 = k;
15
- var desc = Object.getOwnPropertyDescriptor(m, k);
16
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
17
- desc = { enumerable: true, get: function() { return m[k]; } };
18
- }
19
- Object.defineProperty(o, k2, desc);
20
- }) : (function(o, m, k, k2) {
21
- if (k2 === undefined) k2 = k;
22
- o[k2] = m[k];
23
- }));
24
- var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
25
- Object.defineProperty(o, "default", { enumerable: true, value: v });
26
- }) : function(o, v) {
27
- o["default"] = v;
28
- });
29
- var __importStar = (this && this.__importStar) || (function () {
30
- var ownKeys = function(o) {
31
- ownKeys = Object.getOwnPropertyNames || function (o) {
32
- var ar = [];
33
- for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
34
- return ar;
35
- };
36
- return ownKeys(o);
37
- };
38
- return function (mod) {
39
- if (mod && mod.__esModule) return mod;
40
- var result = {};
41
- if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
42
- __setModuleDefault(result, mod);
43
- return result;
44
- };
45
- })();
46
13
  Object.defineProperty(exports, "__esModule", { value: true });
47
- exports.theme = exports.GlobalStyle = void 0;
14
+ exports.GlobalStyle = exports.theme = void 0;
15
+ const style_guide_1 = require("@manuscripts/style-guide");
48
16
  const styled_components_1 = require("styled-components");
49
- const colors = __importStar(require("./colors"));
50
- const fontFamily = '"Lato", sans-serif';
17
+ exports.theme = {
18
+ ...style_guide_1.defaultTheme,
19
+ name: 'Article Editor',
20
+ };
51
21
  exports.GlobalStyle = (0, styled_components_1.createGlobalStyle) `
52
22
  body {
53
23
  background-color: ${(props) => props.theme.colors.background.primary};
@@ -57,185 +27,4 @@ exports.GlobalStyle = (0, styled_components_1.createGlobalStyle) `
57
27
  overflow-x: hidden;
58
28
  }
59
29
  `;
60
- exports.theme = {
61
- name: 'Manuscripts',
62
- colors: {
63
- background: {
64
- primary: colors.white,
65
- secondary: colors.alabasterGrey,
66
- tertiary: colors.mercuryGrey,
67
- fifth: colors.manuscriptsXLight2,
68
- dark: 'rgba(0,0,0,0.5)',
69
- error: colors.chablisRed,
70
- info: colors.manuscriptsXLight2,
71
- success: colors.peppermintGreen,
72
- warning: colors.butteryYellow,
73
- selected: colors.aliceBlue,
74
- tracked: {
75
- active: '#e6f7fc',
76
- default: colors.white,
77
- hover: colors.seashellGrey,
78
- },
79
- },
80
- border: {
81
- error: colors.mandysRed,
82
- info: colors.manuscriptsBlue,
83
- success: colors.springGreen,
84
- warning: colors.wheatYellow,
85
- primary: colors.manuscriptsLight, // 2
86
- secondary: colors.mercuryGrey, // 2
87
- tertiary: colors.seashellGrey, // 1
88
- field: {
89
- active: colors.manuscriptsLight,
90
- default: colors.mercuryGrey,
91
- hover: colors.manuscriptsLight,
92
- },
93
- tracked: {
94
- active: colors.graphBlue1,
95
- default: colors.greyLight,
96
- hover: colors.greyLight,
97
- },
98
- },
99
- brand: {
100
- dark: colors.manuscriptsBlueDark,
101
- medium: colors.manuscriptsIcons,
102
- default: colors.manuscriptsBlue,
103
- light: colors.manuscriptsLight,
104
- xlight: colors.manuscriptsXLight,
105
- secondary: colors.manuscriptsSecondary,
106
- },
107
- button: {
108
- default: {
109
- background: {
110
- active: 'transparent',
111
- default: 'transparent',
112
- hover: colors.manuscriptsXLight2,
113
- },
114
- border: {
115
- active: 'transparent',
116
- default: 'transparent',
117
- hover: colors.manuscriptsXLight2,
118
- },
119
- color: {
120
- active: colors.manuscriptsBlue,
121
- default: colors.manuscriptsBlue,
122
- hover: colors.manuscriptsBlue,
123
- },
124
- },
125
- primary: {
126
- background: {
127
- active: colors.manuscriptsBlueDark,
128
- default: colors.manuscriptsBlue,
129
- hover: colors.manuscriptsBlueDark,
130
- },
131
- border: {
132
- active: colors.manuscriptsBlueDark,
133
- default: colors.manuscriptsBlue,
134
- hover: colors.manuscriptsBlueDark,
135
- },
136
- color: {
137
- active: colors.white,
138
- default: colors.white,
139
- hover: colors.white,
140
- },
141
- },
142
- secondary: {
143
- background: {
144
- active: colors.white,
145
- default: colors.white,
146
- hover: colors.white,
147
- },
148
- border: {
149
- active: colors.mercuryGrey,
150
- default: colors.mercuryGrey,
151
- hover: colors.mercuryGrey,
152
- },
153
- color: {
154
- active: colors.manuscriptsBlue,
155
- default: colors.greyDark,
156
- hover: colors.manuscriptsBlue,
157
- },
158
- },
159
- error: {
160
- background: {
161
- active: colors.punchRed,
162
- default: colors.punchRed,
163
- hover: colors.darkRed,
164
- },
165
- border: {
166
- active: colors.punchRed,
167
- default: colors.punchRed,
168
- hover: colors.darkRed,
169
- },
170
- color: {
171
- active: colors.white,
172
- default: colors.white,
173
- hover: colors.white,
174
- },
175
- },
176
- },
177
- text: {
178
- primary: colors.greyDark,
179
- secondary: colors.greyMuted,
180
- tertiary: colors.manuscriptsBlue, // 0
181
- muted: colors.mercuryGrey, // 0
182
- onDark: colors.white,
183
- onLight: colors.greyMuted,
184
- error: colors.punchRed,
185
- info: colors.jellyBeanBlue,
186
- success: colors.killarneyGreen,
187
- warning: colors.zestOrange,
188
- },
189
- outline: {
190
- focus: colors.focusBlue,
191
- },
192
- },
193
- font: {
194
- family: {
195
- sans: fontFamily,
196
- serif: 'serif',
197
- // TODO:: this need to be removed, for the next style-guide version
198
- Lato: '"Lato"',
199
- },
200
- size: {
201
- xlarge: '20px',
202
- large: '18px',
203
- medium: '16px',
204
- normal: '14px',
205
- small: '12px',
206
- },
207
- lineHeight: {
208
- large: '24px',
209
- normal: '16px',
210
- small: '14px',
211
- },
212
- weight: {
213
- xbold: 900,
214
- bold: 700,
215
- semibold: 600,
216
- medium: 500,
217
- normal: 400,
218
- light: 300,
219
- xlight: 200,
220
- },
221
- },
222
- grid: {
223
- radius: {
224
- default: '8px',
225
- small: '4px',
226
- rounder: '16px',
227
- },
228
- unit: 4,
229
- mobile: 360,
230
- tablet: 768,
231
- smallDesktop: 1024,
232
- desktop: 1280,
233
- largeDesktop: 1920,
234
- editorMaxWidth: 960,
235
- },
236
- shadow: {
237
- boxShadow: '0 0 10px 0 rgba(0, 0, 0, 0.05)',
238
- dropShadow: '0 4px 9px 0 rgba(84, 83, 83, 0.3)',
239
- },
240
- };
241
30
  //# sourceMappingURL=theme.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"theme.js","sourceRoot":"","sources":["../../../src/theme/theme.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"theme.js","sourceRoot":"","sources":["../../../src/theme/theme.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;;AAEH,0DAAuD;AACvD,yDAAmE;AAEtD,QAAA,KAAK,GAAiB;IACjC,GAAG,0BAAY;IACf,IAAI,EAAE,gBAAgB;CACvB,CAAA;AAEY,QAAA,WAAW,GAAG,IAAA,qCAAiB,EAAA;;wBAEpB,CAAC,KAAK,EAAE,EAAE,CAAC,KAAK,CAAC,KAAK,CAAC,MAAM,CAAC,UAAU,CAAC,OAAO;aAC3D,CAAC,KAAK,EAAE,EAAE,CAAC,KAAK,CAAC,KAAK,CAAC,MAAM,CAAC,IAAI,CAAC,OAAO;mBACpC,CAAC,KAAK,EAAE,EAAE,CAAC,KAAK,CAAC,KAAK,CAAC,IAAI,CAAC,MAAM,CAAC,IAAI;;;;CAIzD,CAAA"}
@@ -1,7 +1,7 @@
1
1
  /*!
2
- * The contents of this file are subject to the Common Public Attribution License Version 1.0 (the License); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://mpapp-public.gitlab.io/manuscripts-frontend/LICENSE. The License is based on the Mozilla Public License Version 1.1 but Sections 14 and 15 have been added to cover use of software over a computer network and provide for limited attribution for the Original Developer. In addition, Exhibit A has been modified to be consistent with Exhibit B.
2
+ * The contents of this file are subject to the Common Public Attribution License Version 1.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://mpapp-public.gitlab.io/manuscripts-frontend/LICENSE. The License is based on the Mozilla Public License Version 1.1 but Sections 14 and 15 have been added to cover use of software over a computer network and provide for limited attribution for the Original Developer. In addition, Exhibit A has been modified to be consistent with Exhibit B.
3
3
  *
4
- * Software distributed under the License is distributed on an AS IS basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License.
4
+ * Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License.
5
5
  *
6
6
  * The Original Code is manuscripts-frontend.
7
7
  *
@@ -9,9 +9,12 @@
9
9
  *
10
10
  * All portions of the code written by Atypon Systems LLC are Copyright (c) 2019 Atypon Systems LLC. All Rights Reserved.
11
11
  */
12
+ import { defaultTheme } from '@manuscripts/style-guide';
12
13
  import { createGlobalStyle } from 'styled-components';
13
- import * as colors from './colors';
14
- const fontFamily = '"Lato", sans-serif';
14
+ export const theme = {
15
+ ...defaultTheme,
16
+ name: 'Article Editor',
17
+ };
15
18
  export const GlobalStyle = createGlobalStyle `
16
19
  body {
17
20
  background-color: ${(props) => props.theme.colors.background.primary};
@@ -21,185 +24,4 @@ export const GlobalStyle = createGlobalStyle `
21
24
  overflow-x: hidden;
22
25
  }
23
26
  `;
24
- export const theme = {
25
- name: 'Manuscripts',
26
- colors: {
27
- background: {
28
- primary: colors.white,
29
- secondary: colors.alabasterGrey,
30
- tertiary: colors.mercuryGrey,
31
- fifth: colors.manuscriptsXLight2,
32
- dark: 'rgba(0,0,0,0.5)',
33
- error: colors.chablisRed,
34
- info: colors.manuscriptsXLight2,
35
- success: colors.peppermintGreen,
36
- warning: colors.butteryYellow,
37
- selected: colors.aliceBlue,
38
- tracked: {
39
- active: '#e6f7fc',
40
- default: colors.white,
41
- hover: colors.seashellGrey,
42
- },
43
- },
44
- border: {
45
- error: colors.mandysRed,
46
- info: colors.manuscriptsBlue,
47
- success: colors.springGreen,
48
- warning: colors.wheatYellow,
49
- primary: colors.manuscriptsLight, // 2
50
- secondary: colors.mercuryGrey, // 2
51
- tertiary: colors.seashellGrey, // 1
52
- field: {
53
- active: colors.manuscriptsLight,
54
- default: colors.mercuryGrey,
55
- hover: colors.manuscriptsLight,
56
- },
57
- tracked: {
58
- active: colors.graphBlue1,
59
- default: colors.greyLight,
60
- hover: colors.greyLight,
61
- },
62
- },
63
- brand: {
64
- dark: colors.manuscriptsBlueDark,
65
- medium: colors.manuscriptsIcons,
66
- default: colors.manuscriptsBlue,
67
- light: colors.manuscriptsLight,
68
- xlight: colors.manuscriptsXLight,
69
- secondary: colors.manuscriptsSecondary,
70
- },
71
- button: {
72
- default: {
73
- background: {
74
- active: 'transparent',
75
- default: 'transparent',
76
- hover: colors.manuscriptsXLight2,
77
- },
78
- border: {
79
- active: 'transparent',
80
- default: 'transparent',
81
- hover: colors.manuscriptsXLight2,
82
- },
83
- color: {
84
- active: colors.manuscriptsBlue,
85
- default: colors.manuscriptsBlue,
86
- hover: colors.manuscriptsBlue,
87
- },
88
- },
89
- primary: {
90
- background: {
91
- active: colors.manuscriptsBlueDark,
92
- default: colors.manuscriptsBlue,
93
- hover: colors.manuscriptsBlueDark,
94
- },
95
- border: {
96
- active: colors.manuscriptsBlueDark,
97
- default: colors.manuscriptsBlue,
98
- hover: colors.manuscriptsBlueDark,
99
- },
100
- color: {
101
- active: colors.white,
102
- default: colors.white,
103
- hover: colors.white,
104
- },
105
- },
106
- secondary: {
107
- background: {
108
- active: colors.white,
109
- default: colors.white,
110
- hover: colors.white,
111
- },
112
- border: {
113
- active: colors.mercuryGrey,
114
- default: colors.mercuryGrey,
115
- hover: colors.mercuryGrey,
116
- },
117
- color: {
118
- active: colors.manuscriptsBlue,
119
- default: colors.greyDark,
120
- hover: colors.manuscriptsBlue,
121
- },
122
- },
123
- error: {
124
- background: {
125
- active: colors.punchRed,
126
- default: colors.punchRed,
127
- hover: colors.darkRed,
128
- },
129
- border: {
130
- active: colors.punchRed,
131
- default: colors.punchRed,
132
- hover: colors.darkRed,
133
- },
134
- color: {
135
- active: colors.white,
136
- default: colors.white,
137
- hover: colors.white,
138
- },
139
- },
140
- },
141
- text: {
142
- primary: colors.greyDark,
143
- secondary: colors.greyMuted,
144
- tertiary: colors.manuscriptsBlue, // 0
145
- muted: colors.mercuryGrey, // 0
146
- onDark: colors.white,
147
- onLight: colors.greyMuted,
148
- error: colors.punchRed,
149
- info: colors.jellyBeanBlue,
150
- success: colors.killarneyGreen,
151
- warning: colors.zestOrange,
152
- },
153
- outline: {
154
- focus: colors.focusBlue,
155
- },
156
- },
157
- font: {
158
- family: {
159
- sans: fontFamily,
160
- serif: 'serif',
161
- // TODO:: this need to be removed, for the next style-guide version
162
- Lato: '"Lato"',
163
- },
164
- size: {
165
- xlarge: '20px',
166
- large: '18px',
167
- medium: '16px',
168
- normal: '14px',
169
- small: '12px',
170
- },
171
- lineHeight: {
172
- large: '24px',
173
- normal: '16px',
174
- small: '14px',
175
- },
176
- weight: {
177
- xbold: 900,
178
- bold: 700,
179
- semibold: 600,
180
- medium: 500,
181
- normal: 400,
182
- light: 300,
183
- xlight: 200,
184
- },
185
- },
186
- grid: {
187
- radius: {
188
- default: '8px',
189
- small: '4px',
190
- rounder: '16px',
191
- },
192
- unit: 4,
193
- mobile: 360,
194
- tablet: 768,
195
- smallDesktop: 1024,
196
- desktop: 1280,
197
- largeDesktop: 1920,
198
- editorMaxWidth: 960,
199
- },
200
- shadow: {
201
- boxShadow: '0 0 10px 0 rgba(0, 0, 0, 0.05)',
202
- dropShadow: '0 4px 9px 0 rgba(84, 83, 83, 0.3)',
203
- },
204
- };
205
27
  //# sourceMappingURL=theme.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"theme.js","sourceRoot":"","sources":["../../../src/theme/theme.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"theme.js","sourceRoot":"","sources":["../../../src/theme/theme.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,EAAE,YAAY,EAAE,MAAM,0BAA0B,CAAA;AACvD,OAAO,EAAE,iBAAiB,EAAgB,MAAM,mBAAmB,CAAA;AAEnE,MAAM,CAAC,MAAM,KAAK,GAAiB;IACjC,GAAG,YAAY;IACf,IAAI,EAAE,gBAAgB;CACvB,CAAA;AAED,MAAM,CAAC,MAAM,WAAW,GAAG,iBAAiB,CAAA;;wBAEpB,CAAC,KAAK,EAAE,EAAE,CAAC,KAAK,CAAC,KAAK,CAAC,MAAM,CAAC,UAAU,CAAC,OAAO;aAC3D,CAAC,KAAK,EAAE,EAAE,CAAC,KAAK,CAAC,KAAK,CAAC,MAAM,CAAC,IAAI,CAAC,OAAO;mBACpC,CAAC,KAAK,EAAE,EAAE,CAAC,KAAK,CAAC,KAAK,CAAC,IAAI,CAAC,MAAM,CAAC,IAAI;;;;CAIzD,CAAA"}
@@ -1,7 +1,7 @@
1
1
  /*!
2
- * The contents of this file are subject to the Common Public Attribution License Version 1.0 (the License); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://mpapp-public.gitlab.io/manuscripts-frontend/LICENSE. The License is based on the Mozilla Public License Version 1.1 but Sections 14 and 15 have been added to cover use of software over a computer network and provide for limited attribution for the Original Developer. In addition, Exhibit A has been modified to be consistent with Exhibit B.
2
+ * The contents of this file are subject to the Common Public Attribution License Version 1.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://mpapp-public.gitlab.io/manuscripts-frontend/LICENSE. The License is based on the Mozilla Public License Version 1.1 but Sections 14 and 15 have been added to cover use of software over a computer network and provide for limited attribution for the Original Developer. In addition, Exhibit A has been modified to be consistent with Exhibit B.
3
3
  *
4
- * Software distributed under the License is distributed on an AS IS basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License.
4
+ * Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License.
5
5
  *
6
6
  * The Original Code is manuscripts-frontend.
7
7
  *
@@ -10,5 +10,5 @@
10
10
  * All portions of the code written by Atypon Systems LLC are Copyright (c) 2019 Atypon Systems LLC. All Rights Reserved.
11
11
  */
12
12
  import { DefaultTheme } from 'styled-components';
13
- export declare const GlobalStyle: import("styled-components").GlobalStyleComponent<{}, DefaultTheme>;
14
13
  export declare const theme: DefaultTheme;
14
+ export declare const GlobalStyle: import("styled-components").GlobalStyleComponent<{}, DefaultTheme>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@manuscripts/article-editor",
3
- "version": "4.9.0",
3
+ "version": "4.9.2",
4
4
  "license": "CPAL-1.0",
5
5
  "description": "React components for editing and viewing manuscripts",
6
6
  "repository": "github:Atypon-OpenSource/manuscripts-article-editor",
@@ -32,9 +32,9 @@
32
32
  "@fontsource/pt-sans": "5.2.5",
33
33
  "@fontsource/pt-serif": "5.2.5",
34
34
  "@headlessui/react": "2.2.3",
35
- "@manuscripts/body-editor": "3.9.0",
35
+ "@manuscripts/body-editor": "3.9.5",
36
36
  "@manuscripts/json-schema": "2.2.12",
37
- "@manuscripts/style-guide": "3.4.2",
37
+ "@manuscripts/style-guide": "3.4.4",
38
38
  "@manuscripts/track-changes-plugin": "2.2.6",
39
39
  "@manuscripts/transform": "4.3.18",
40
40
  "@popperjs/core": "2.11.8",
@@ -107,4 +107,4 @@
107
107
  "engines": {
108
108
  "node": ">=20.16.0"
109
109
  }
110
- }
110
+ }
@@ -1,70 +0,0 @@
1
- "use strict";
2
- /*!
3
- * The contents of this file are subject to the Common Public Attribution License Version 1.0 (the “License”); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://mpapp-public.gitlab.io/manuscripts-frontend/LICENSE. The License is based on the Mozilla Public License Version 1.1 but Sections 14 and 15 have been added to cover use of software over a computer network and provide for limited attribution for the Original Developer. In addition, Exhibit A has been modified to be consistent with Exhibit B.
4
- *
5
- * Software distributed under the License is distributed on an “AS IS” basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License.
6
- *
7
- * The Original Code is manuscripts-frontend.
8
- *
9
- * The Original Developer is the Initial Developer. The Initial Developer of the Original Code is Atypon Systems LLC.
10
- *
11
- * All portions of the code written by Atypon Systems LLC are Copyright (c) 2019 Atypon Systems LLC. All Rights Reserved.
12
- */
13
- Object.defineProperty(exports, "__esModule", { value: true });
14
- exports.butteryYellow = exports.wheatYellow = exports.zestOrange = exports.peppermintGreen = exports.springGreen = exports.killarneyGreen = exports.darkRed = exports.chablisRed = exports.mandysRed = exports.punchRed = exports.graphBlue1 = exports.powderBlue = exports.focusBlue = exports.aliceBlue = exports.jellyBeanBlue = exports.white = exports.alabasterGrey = exports.seashellGrey = exports.mercuryGrey = exports.greyLight = exports.greyMuted = exports.greyDark = exports.black = exports.manuscriptsSecondary = exports.manuscriptsXLight2 = exports.manuscriptsXLight = exports.manuscriptsLight = exports.manuscriptsIcons = exports.manuscriptsBlue = exports.manuscriptsBlueDark = void 0;
15
- /* PRIMARY PALETTE */
16
- exports.manuscriptsBlueDark = '#0b6bb8';
17
- exports.manuscriptsBlue = '#0d79d0';
18
- exports.manuscriptsIcons = '#1a9bc7';
19
- exports.manuscriptsLight = '#bce7f6';
20
- exports.manuscriptsXLight = '#ddf3fa';
21
- exports.manuscriptsXLight2 = '#f2fbfc';
22
- exports.manuscriptsSecondary = '#ffbd26';
23
- /* EXTENDED PALETTE */
24
- /* GREYS */
25
- exports.black = '#000';
26
- exports.greyDark = '#353535';
27
- // export const scorpionGrey2 = '#585858'
28
- // export const scorpionGrey = '#5e6f7e'
29
- exports.greyMuted = '#6e6e6e';
30
- // export const greyMedium = '#949494'
31
- // export const dustyGrey = '#97a2b1'
32
- exports.greyLight = '#c9c9c9';
33
- // export const altoGrey = '#d6d6d6'
34
- exports.mercuryGrey = '#e2e2e2';
35
- exports.seashellGrey = '#f2f2f2';
36
- exports.alabasterGrey = '#fafafa';
37
- exports.white = '#fff';
38
- /* BLUES */
39
- exports.jellyBeanBlue = '#2781a1';
40
- exports.aliceBlue = '#f2fbfc';
41
- exports.focusBlue = '#3DADFF';
42
- // export const blueDarker = '#7fb5d5'
43
- // export const blue = '#d6e8fc'
44
- // export const iceBlue = '#e8f2fc'
45
- // export const linkWaterBlue = '#eff6fe'
46
- exports.powderBlue = '#DDF3FA';
47
- exports.graphBlue1 = '#20AEDF';
48
- // export const aliceBlue = '#f2fbff'
49
- /* REDS */
50
- exports.punchRed = '#f35143';
51
- // export const darkCoral = '#cd593c'
52
- // export const sungloRed = '#e26969'
53
- // export const eunryRed = '#d2a1a1'
54
- exports.mandysRed = '#f5c1b7';
55
- exports.chablisRed = '#fff1f0';
56
- exports.darkRed = '#c74237';
57
- /* GREENS */
58
- exports.killarneyGreen = '#36b260';
59
- // export const deYorkGreen = '#8dd439'
60
- // export const pineGladeGreen = '#a8cd95'
61
- exports.springGreen = '#b2c0ac';
62
- exports.peppermintGreen = '#dff0d7';
63
- /* YELLOWS */
64
- exports.zestOrange = '#fe8f1f';
65
- // export const brightSunYellow = '#ffbd26'
66
- // export const huskYellow = '#b6a651'
67
- // export const salomieYellow = '#ffe08b'
68
- exports.wheatYellow = '#ffe0b2';
69
- exports.butteryYellow = '#fffcdb';
70
- //# sourceMappingURL=colors.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"colors.js","sourceRoot":"","sources":["../../../src/theme/colors.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;GAUG;;;AAEH,qBAAqB;AACR,QAAA,mBAAmB,GAAG,SAAS,CAAA;AAC/B,QAAA,eAAe,GAAG,SAAS,CAAA;AAC3B,QAAA,gBAAgB,GAAG,SAAS,CAAA;AAC5B,QAAA,gBAAgB,GAAG,SAAS,CAAA;AAC5B,QAAA,iBAAiB,GAAG,SAAS,CAAA;AAC7B,QAAA,kBAAkB,GAAG,SAAS,CAAA;AAC9B,QAAA,oBAAoB,GAAG,SAAS,CAAA;AAE7C,sBAAsB;AACtB,WAAW;AACE,QAAA,KAAK,GAAG,MAAM,CAAA;AACd,QAAA,QAAQ,GAAG,SAAS,CAAA;AACjC,yCAAyC;AACzC,wCAAwC;AAC3B,QAAA,SAAS,GAAG,SAAS,CAAA;AAClC,sCAAsC;AACtC,qCAAqC;AACxB,QAAA,SAAS,GAAG,SAAS,CAAA;AAClC,oCAAoC;AACvB,QAAA,WAAW,GAAG,SAAS,CAAA;AACvB,QAAA,YAAY,GAAG,SAAS,CAAA;AACxB,QAAA,aAAa,GAAG,SAAS,CAAA;AACzB,QAAA,KAAK,GAAG,MAAM,CAAA;AAE3B,WAAW;AACE,QAAA,aAAa,GAAG,SAAS,CAAA;AACzB,QAAA,SAAS,GAAG,SAAS,CAAA;AACrB,QAAA,SAAS,GAAG,SAAS,CAAA;AAElC,sCAAsC;AACtC,gCAAgC;AAChC,mCAAmC;AACnC,yCAAyC;AAC5B,QAAA,UAAU,GAAG,SAAS,CAAA;AACtB,QAAA,UAAU,GAAG,SAAS,CAAA;AACnC,qCAAqC;AAErC,UAAU;AACG,QAAA,QAAQ,GAAG,SAAS,CAAA;AACjC,qCAAqC;AACrC,qCAAqC;AACrC,oCAAoC;AACvB,QAAA,SAAS,GAAG,SAAS,CAAA;AACrB,QAAA,UAAU,GAAG,SAAS,CAAA;AACtB,QAAA,OAAO,GAAG,SAAS,CAAA;AAEhC,YAAY;AACC,QAAA,cAAc,GAAG,SAAS,CAAA;AACvC,uCAAuC;AACvC,0CAA0C;AAC7B,QAAA,WAAW,GAAG,SAAS,CAAA;AACvB,QAAA,eAAe,GAAG,SAAS,CAAA;AAExC,aAAa;AACA,QAAA,UAAU,GAAG,SAAS,CAAA;AACnC,2CAA2C;AAC3C,sCAAsC;AACtC,yCAAyC;AAC5B,QAAA,WAAW,GAAG,SAAS,CAAA;AACvB,QAAA,aAAa,GAAG,SAAS,CAAA"}
@@ -1,67 +0,0 @@
1
- /*!
2
- * The contents of this file are subject to the Common Public Attribution License Version 1.0 (the “License”); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://mpapp-public.gitlab.io/manuscripts-frontend/LICENSE. The License is based on the Mozilla Public License Version 1.1 but Sections 14 and 15 have been added to cover use of software over a computer network and provide for limited attribution for the Original Developer. In addition, Exhibit A has been modified to be consistent with Exhibit B.
3
- *
4
- * Software distributed under the License is distributed on an “AS IS” basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License.
5
- *
6
- * The Original Code is manuscripts-frontend.
7
- *
8
- * The Original Developer is the Initial Developer. The Initial Developer of the Original Code is Atypon Systems LLC.
9
- *
10
- * All portions of the code written by Atypon Systems LLC are Copyright (c) 2019 Atypon Systems LLC. All Rights Reserved.
11
- */
12
- /* PRIMARY PALETTE */
13
- export const manuscriptsBlueDark = '#0b6bb8';
14
- export const manuscriptsBlue = '#0d79d0';
15
- export const manuscriptsIcons = '#1a9bc7';
16
- export const manuscriptsLight = '#bce7f6';
17
- export const manuscriptsXLight = '#ddf3fa';
18
- export const manuscriptsXLight2 = '#f2fbfc';
19
- export const manuscriptsSecondary = '#ffbd26';
20
- /* EXTENDED PALETTE */
21
- /* GREYS */
22
- export const black = '#000';
23
- export const greyDark = '#353535';
24
- // export const scorpionGrey2 = '#585858'
25
- // export const scorpionGrey = '#5e6f7e'
26
- export const greyMuted = '#6e6e6e';
27
- // export const greyMedium = '#949494'
28
- // export const dustyGrey = '#97a2b1'
29
- export const greyLight = '#c9c9c9';
30
- // export const altoGrey = '#d6d6d6'
31
- export const mercuryGrey = '#e2e2e2';
32
- export const seashellGrey = '#f2f2f2';
33
- export const alabasterGrey = '#fafafa';
34
- export const white = '#fff';
35
- /* BLUES */
36
- export const jellyBeanBlue = '#2781a1';
37
- export const aliceBlue = '#f2fbfc';
38
- export const focusBlue = '#3DADFF';
39
- // export const blueDarker = '#7fb5d5'
40
- // export const blue = '#d6e8fc'
41
- // export const iceBlue = '#e8f2fc'
42
- // export const linkWaterBlue = '#eff6fe'
43
- export const powderBlue = '#DDF3FA';
44
- export const graphBlue1 = '#20AEDF';
45
- // export const aliceBlue = '#f2fbff'
46
- /* REDS */
47
- export const punchRed = '#f35143';
48
- // export const darkCoral = '#cd593c'
49
- // export const sungloRed = '#e26969'
50
- // export const eunryRed = '#d2a1a1'
51
- export const mandysRed = '#f5c1b7';
52
- export const chablisRed = '#fff1f0';
53
- export const darkRed = '#c74237';
54
- /* GREENS */
55
- export const killarneyGreen = '#36b260';
56
- // export const deYorkGreen = '#8dd439'
57
- // export const pineGladeGreen = '#a8cd95'
58
- export const springGreen = '#b2c0ac';
59
- export const peppermintGreen = '#dff0d7';
60
- /* YELLOWS */
61
- export const zestOrange = '#fe8f1f';
62
- // export const brightSunYellow = '#ffbd26'
63
- // export const huskYellow = '#b6a651'
64
- // export const salomieYellow = '#ffe08b'
65
- export const wheatYellow = '#ffe0b2';
66
- export const butteryYellow = '#fffcdb';
67
- //# sourceMappingURL=colors.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"colors.js","sourceRoot":"","sources":["../../../src/theme/colors.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,qBAAqB;AACrB,MAAM,CAAC,MAAM,mBAAmB,GAAG,SAAS,CAAA;AAC5C,MAAM,CAAC,MAAM,eAAe,GAAG,SAAS,CAAA;AACxC,MAAM,CAAC,MAAM,gBAAgB,GAAG,SAAS,CAAA;AACzC,MAAM,CAAC,MAAM,gBAAgB,GAAG,SAAS,CAAA;AACzC,MAAM,CAAC,MAAM,iBAAiB,GAAG,SAAS,CAAA;AAC1C,MAAM,CAAC,MAAM,kBAAkB,GAAG,SAAS,CAAA;AAC3C,MAAM,CAAC,MAAM,oBAAoB,GAAG,SAAS,CAAA;AAE7C,sBAAsB;AACtB,WAAW;AACX,MAAM,CAAC,MAAM,KAAK,GAAG,MAAM,CAAA;AAC3B,MAAM,CAAC,MAAM,QAAQ,GAAG,SAAS,CAAA;AACjC,yCAAyC;AACzC,wCAAwC;AACxC,MAAM,CAAC,MAAM,SAAS,GAAG,SAAS,CAAA;AAClC,sCAAsC;AACtC,qCAAqC;AACrC,MAAM,CAAC,MAAM,SAAS,GAAG,SAAS,CAAA;AAClC,oCAAoC;AACpC,MAAM,CAAC,MAAM,WAAW,GAAG,SAAS,CAAA;AACpC,MAAM,CAAC,MAAM,YAAY,GAAG,SAAS,CAAA;AACrC,MAAM,CAAC,MAAM,aAAa,GAAG,SAAS,CAAA;AACtC,MAAM,CAAC,MAAM,KAAK,GAAG,MAAM,CAAA;AAE3B,WAAW;AACX,MAAM,CAAC,MAAM,aAAa,GAAG,SAAS,CAAA;AACtC,MAAM,CAAC,MAAM,SAAS,GAAG,SAAS,CAAA;AAClC,MAAM,CAAC,MAAM,SAAS,GAAG,SAAS,CAAA;AAElC,sCAAsC;AACtC,gCAAgC;AAChC,mCAAmC;AACnC,yCAAyC;AACzC,MAAM,CAAC,MAAM,UAAU,GAAG,SAAS,CAAA;AACnC,MAAM,CAAC,MAAM,UAAU,GAAG,SAAS,CAAA;AACnC,qCAAqC;AAErC,UAAU;AACV,MAAM,CAAC,MAAM,QAAQ,GAAG,SAAS,CAAA;AACjC,qCAAqC;AACrC,qCAAqC;AACrC,oCAAoC;AACpC,MAAM,CAAC,MAAM,SAAS,GAAG,SAAS,CAAA;AAClC,MAAM,CAAC,MAAM,UAAU,GAAG,SAAS,CAAA;AACnC,MAAM,CAAC,MAAM,OAAO,GAAG,SAAS,CAAA;AAEhC,YAAY;AACZ,MAAM,CAAC,MAAM,cAAc,GAAG,SAAS,CAAA;AACvC,uCAAuC;AACvC,0CAA0C;AAC1C,MAAM,CAAC,MAAM,WAAW,GAAG,SAAS,CAAA;AACpC,MAAM,CAAC,MAAM,eAAe,GAAG,SAAS,CAAA;AAExC,aAAa;AACb,MAAM,CAAC,MAAM,UAAU,GAAG,SAAS,CAAA;AACnC,2CAA2C;AAC3C,sCAAsC;AACtC,yCAAyC;AACzC,MAAM,CAAC,MAAM,WAAW,GAAG,SAAS,CAAA;AACpC,MAAM,CAAC,MAAM,aAAa,GAAG,SAAS,CAAA"}
@@ -1,41 +0,0 @@
1
- /*!
2
- * The contents of this file are subject to the Common Public Attribution License Version 1.0 (the “License”); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://mpapp-public.gitlab.io/manuscripts-frontend/LICENSE. The License is based on the Mozilla Public License Version 1.1 but Sections 14 and 15 have been added to cover use of software over a computer network and provide for limited attribution for the Original Developer. In addition, Exhibit A has been modified to be consistent with Exhibit B.
3
- *
4
- * Software distributed under the License is distributed on an “AS IS” basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License.
5
- *
6
- * The Original Code is manuscripts-frontend.
7
- *
8
- * The Original Developer is the Initial Developer. The Initial Developer of the Original Code is Atypon Systems LLC.
9
- *
10
- * All portions of the code written by Atypon Systems LLC are Copyright (c) 2019 Atypon Systems LLC. All Rights Reserved.
11
- */
12
- export declare const manuscriptsBlueDark = "#0b6bb8";
13
- export declare const manuscriptsBlue = "#0d79d0";
14
- export declare const manuscriptsIcons = "#1a9bc7";
15
- export declare const manuscriptsLight = "#bce7f6";
16
- export declare const manuscriptsXLight = "#ddf3fa";
17
- export declare const manuscriptsXLight2 = "#f2fbfc";
18
- export declare const manuscriptsSecondary = "#ffbd26";
19
- export declare const black = "#000";
20
- export declare const greyDark = "#353535";
21
- export declare const greyMuted = "#6e6e6e";
22
- export declare const greyLight = "#c9c9c9";
23
- export declare const mercuryGrey = "#e2e2e2";
24
- export declare const seashellGrey = "#f2f2f2";
25
- export declare const alabasterGrey = "#fafafa";
26
- export declare const white = "#fff";
27
- export declare const jellyBeanBlue = "#2781a1";
28
- export declare const aliceBlue = "#f2fbfc";
29
- export declare const focusBlue = "#3DADFF";
30
- export declare const powderBlue = "#DDF3FA";
31
- export declare const graphBlue1 = "#20AEDF";
32
- export declare const punchRed = "#f35143";
33
- export declare const mandysRed = "#f5c1b7";
34
- export declare const chablisRed = "#fff1f0";
35
- export declare const darkRed = "#c74237";
36
- export declare const killarneyGreen = "#36b260";
37
- export declare const springGreen = "#b2c0ac";
38
- export declare const peppermintGreen = "#dff0d7";
39
- export declare const zestOrange = "#fe8f1f";
40
- export declare const wheatYellow = "#ffe0b2";
41
- export declare const butteryYellow = "#fffcdb";