@zextras/carbonio-shell-ui 9.0.0-devel.1734599897864 → 9.0.0-devel.1736251123989

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/THIRDPARTIES CHANGED
@@ -10,6 +10,7 @@ MIT License (MIT) applies to:
10
10
  @microsoft/api-extractor, Copyright (c) Microsoft Corporation. All rights reserved.
11
11
  @sentry/browser, Copyright (c) 2019 Sentry (https://sentry.io) and individual contributors. All rights reserved.
12
12
  @svgr/webpack, Copyright 2017 Smooth Code
13
+ @testing-library/dom, Copyright (c) 2017 Kent C. Dodds
13
14
  @testing-library/jest-dom, Copyright (c) 2017 Kent C. Dodds
14
15
  @testing-library/react, Copyright (c) 2017 Kent C. Dodds
15
16
  @testing-library/user-event, Copyright (c) 2020 Giorgio Polvara
@@ -21,7 +22,6 @@ MIT License (MIT) applies to:
21
22
  @types/react-dom, Copyright (c) Microsoft Corporation.
22
23
  @types/react-router-dom, Copyright (c) Microsoft Corporation.
23
24
  @types/react, Copyright (c) Microsoft Corporation.
24
- @types/styled-components, Copyright (c) Microsoft Corporation.
25
25
  @types/ua-parser-js, Copyright (c) Microsoft Corporation.
26
26
  @types/webpack-env, Copyright (c) Microsoft Corporation.
27
27
  @types/webpack, Copyright (c) Microsoft Corporation.
@@ -32,6 +32,7 @@ copy-webpack-plugin, Copyright JS Foundation and other contributors
32
32
  core-js, Copyright (c) 2014-2024 Denis Pushkarev
33
33
  css-loader, Copyright JS Foundation and other contributors
34
34
  darkreader, Copyright (c) 2024 Dark Reader Ltd.
35
+ date-fns, Copyright (c) 2021 Sasha Koss and Lesha Koss https://kossnocorp.mit-license.org
35
36
  eslint-plugin-notice, Copyright (c) 2017 Nick Deis
36
37
  history, Copyright (c) React Training 2016-2020. Copyright (c) Remix Software 2020-2021
37
38
  html-webpack-plugin, Copyright JS Foundation and other contributors
@@ -49,8 +50,10 @@ lodash, Copyright OpenJS Foundation and other contributors <https://openjsf.org/
49
50
  mini-css-extract-plugin, Copyright JS Foundation and other contributors
50
51
  msw, Copyright (c) 2018–present Artem Zakharchenko
51
52
  postcss-loader, Copyright JS Foundation and other contributors
53
+ posthog-js, Copyright 2020 Posthog / Hiberly, Inc.*
52
54
  react-dom, Copyright (c) Facebook, Inc. and its affiliates.
53
55
  react-i18next, Copyright (c) 2023 i18next
56
+ react-router-dom-v5-compat, Copyright (c) React Training LLC 2015-2019. Copyright (c) Remix Software Inc. 2020-2021. Copyright (c) Shopify Inc. 2022-2023
54
57
  react-router-dom, Copyright (c) React Training 2015-2019. Copyright (c) Remix Software 2020-2022
55
58
  react, Copyright (c) Facebook, Inc. and its affiliates.
56
59
  styled-components, Copyright (c) 2016-present Glen Maddern and Maximilian Stoiber
@@ -405,11 +408,19 @@ You should also get your employer (if you work as a programmer) or school, if an
405
408
 
406
409
 
407
410
 
411
+ BSD* (BSD*) applies to:
412
+
413
+ babel-plugin-transform-import-meta, Copyright (c) 2019 javiertury
414
+
415
+
416
+
417
+
418
+
408
419
  BSD 2-Clause "Simplified" License (BSD-2-Clause) applies to:
409
420
 
410
421
  dotenv, Copyright (c) 2015, Scott Motte. All rights reserved.
411
422
 
412
- Copyright (c) <year> <owner>
423
+ Copyright (c) <year> <owner>
413
424
 
414
425
  Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
415
426
 
package/lib/lib.d.ts CHANGED
@@ -54,3 +54,4 @@ export type { SuccessSoapResponse, ErrorSoapResponse, ErrorSoapBodyResponse, Soa
54
54
  export type { BatchRequest, BatchResponse } from './types/network';
55
55
  export type { Action } from './types/integrations';
56
56
  export type { HistoryParams } from './types/misc';
57
+ import './types/theme';
package/lib/lib.js CHANGED
@@ -25,4 +25,5 @@ __exportStar(require("./ui-extras/app-link"), exports);
25
25
  __exportStar(require("./settings/components/settings-header"), exports);
26
26
  __exportStar(require("./boot/app/app-direct-exports"), exports);
27
27
  __exportStar(require("./boot/app/app-direct-exports"), exports);
28
+ require("./types/theme");
28
29
  //# sourceMappingURL=lib.js.map
package/lib/lib.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"lib.js","sourceRoot":"","sources":["../src/lib.ts"],"names":[],"mappings":";AAAA;;;;GAIG;;;;;;;;;;;;;;;;AAmBH,8DAA8D;AAC9D,8CAA4B;AAC5B,uDAAqC;AACrC,wEAAsD;AACtD,gEAA8C;AA+B9C,gEAA8C"}
1
+ {"version":3,"file":"lib.js","sourceRoot":"","sources":["../src/lib.ts"],"names":[],"mappings":";AAAA;;;;GAIG;;;;;;;;;;;;;;;;AAmBH,8DAA8D;AAC9D,8CAA4B;AAC5B,uDAAqC;AACrC,wEAAsD;AACtD,gEAA8C;AA+B9C,gEAA8C;AA0D9C,yBAAuB"}
@@ -1,6 +1,6 @@
1
1
  import type { ComponentType } from 'react';
2
2
  import type React from 'react';
3
- import type { DefaultTheme } from 'styled-components';
3
+ import type { Theme } from '@zextras/carbonio-design-system';
4
4
  export type CarbonioModule = {
5
5
  commit: string;
6
6
  description: string;
@@ -25,7 +25,7 @@ export type BadgeInfo = {
25
25
  icon?: string;
26
26
  count?: number;
27
27
  showCount?: boolean;
28
- color?: keyof DefaultTheme['palette'];
28
+ color?: keyof Theme['palette'];
29
29
  };
30
30
  export type CarbonioView<P> = {
31
31
  id: string;
@@ -0,0 +1,10 @@
1
+ import type { CSSProperties } from 'react';
2
+ declare module '@zextras/carbonio-design-system' {
3
+ interface Theme {
4
+ globalCursors: CSSProperties['cursor'][];
5
+ }
6
+ interface Palette {
7
+ shared: ThemeColorObj;
8
+ linked: ThemeColorObj;
9
+ }
10
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=theme.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"theme.js","sourceRoot":"","sources":["../../src/types/theme.ts"],"names":[],"mappings":""}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zextras/carbonio-shell-ui",
3
- "version": "9.0.0-devel.1734599897864",
3
+ "version": "9.0.0-devel.1736251123989",
4
4
  "description": "The Zextras Carbonio web client",
5
5
  "main": "./lib/lib.js",
6
6
  "types": "./lib/lib.d.ts",
@@ -106,7 +106,7 @@
106
106
  "@fontsource/roboto": "^5.0.8",
107
107
  "@sentry/browser": "^7.103.0",
108
108
  "@tinymce/tinymce-react": "^4.3.2",
109
- "@zextras/carbonio-design-system": "9.0.0-devel.7",
109
+ "@zextras/carbonio-design-system": "9.0.0-devel.13",
110
110
  "@zextras/carbonio-ui-preview": "^3.1.0",
111
111
  "darkreader": "^4.9.79",
112
112
  "date-fns": "^4.1.0",
@@ -128,7 +128,7 @@
128
128
  "zustand": "^4.5.1"
129
129
  },
130
130
  "peerDependencies": {
131
- "@zextras/carbonio-design-system": "9.0.0-devel.7",
131
+ "@zextras/carbonio-design-system": "9.0.0-devel.13",
132
132
  "@zextras/carbonio-ui-preview": "^3.1.0",
133
133
  "core-js": "^3.39.0",
134
134
  "lodash": "^4.17.21",