@mxenabled/mxui 2.2.0 → 2.2.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.
package/README.md CHANGED
@@ -3,7 +3,23 @@ In order to run the project you will need to make sure that you have yarn instal
3
3
 
4
4
  1. Install [yarn](https://yarnpkg.com/getting-started/install)
5
5
  1. From the project root dir, run `yarn` or `yarn install` to install dependencies
6
- 1. To start the project run `yarn dev` (the project should automatically run in the browser)
6
+ 1. To start the project run `yarn dev` (the project should automatically run in the browser, showing the storybook docs)
7
+
8
+ ## Questions/Help
9
+
10
+ There are several places you can get answers to your questions:
11
+ - this readme document
12
+ - the changelog file in this repo
13
+ - the storybook documentation: [introduction](https://mxui.kube.qa.internal.mx/?path=/docs/introduction--docs), [contributing](https://mxui.kube.qa.internal.mx/?path=/docs/contributing--docs), [theming](https://mxui.kube.qa.internal.mx/?path=/docs/mxui-components-theming--docs)
14
+ - the #design-system slack channel. don't be shy.
15
+
16
+ ## Using this Library
17
+
18
+ The QA storybook containing the latest changes is [accessible here](https://mxui.kube.qa.internal.mx/?path=/docs/introduction--docs). (you need to be connected to the vpn to view this since it is in the qa environment)
19
+
20
+ Follow the setup instructions found in the storybook.
21
+
22
+ Teams are currently adding components as needed, so the list in storybook right now is what has been built so far. Follow the instructions in [the contributing section](https://mxui.kube.qa.internal.mx/?path=/docs/contributing--docs) of the storybook docs to add to this project.
7
23
 
8
24
  ## Contributing
9
25
 
@@ -18,14 +34,6 @@ Shipit will handle version bumping based on the specified flag (major, minor, or
18
34
 
19
35
  > **Note:** If an alpha version is to be published, update the package version to include a pre-release identifier like `1.2.3-alpha.1` or `1.2.3-v1` and run the `publish:nodejs-npmregistry` job to publish that alpha version.
20
36
 
21
- ## Using this Library
22
-
23
- The QA storybook containing the latest changes is [accessible here](https://mxui.kube.qa.internal.mx/?path=/docs/introduction--docs).
24
-
25
- Follow the setup instructions found in
26
-
27
- Teams are currently adding components as needed, so the list in storybook right now is what has been built so far.
28
-
29
37
  ## Upgrading from 1.x to 2.x
30
38
  This major change introcuces a number of breaking changes due to dependency upgrades for React 19 and MUI 7. It also
31
39
  includes removal of deprected components and theme values.
@@ -0,0 +1,8 @@
1
+ import { default as React } from 'react';
2
+ import { DateRange, PickersShortcutsProps } from '@mui/x-date-pickers-pro';
3
+ interface DatePickerShortcutsSmallProps extends PickersShortcutsProps<DateRange<Date>> {
4
+ selectLabel: string;
5
+ selected?: string;
6
+ }
7
+ declare const DatePickerShortcutsSmall: React.FC<DatePickerShortcutsSmallProps>;
8
+ export default DatePickerShortcutsSmall;
@@ -0,0 +1,4 @@
1
+ import { DateRange } from '@mui/x-date-pickers-pro';
2
+ import { PickersLayoutProps } from '@mui/x-date-pickers/PickersLayout';
3
+ declare const DateRangePickerSmallLayout: (props: PickersLayoutProps<DateRange<Date>>) => import("react/jsx-runtime").JSX.Element;
4
+ export default DateRangePickerSmallLayout;