@mxenabled/mxui 1.5.9-alpha.al0 → 1.5.9
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 +19 -1
- package/dist/components/daterangepicker/small/DatePickerShortcutsSmall.d.ts +1 -0
- package/dist/components/daterangepicker/small/DateRangePickerSmall.d.ts +1 -1
- package/dist/index.es.js +186 -166
- package/dist/index.es.js.map +1 -1
- package/dist/themes/Typography.d.ts +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -7,17 +7,35 @@ In order to run the project you will need to make sure that you have yarn instal
|
|
|
7
7
|
|
|
8
8
|
## Contributing
|
|
9
9
|
|
|
10
|
+
### Branch: `master`
|
|
11
|
+
|
|
10
12
|
If your MR includes any changes outside of documentation, you will need to ensure the following:
|
|
11
13
|
|
|
12
14
|
1. Update the `CHANGELOG.md` as part of your MR.
|
|
13
15
|
1. Do not update the version in the `package.json` file, as it will be handled automatically by `shipit`.
|
|
14
16
|
|
|
17
|
+
### Branch: `MXUI_1.x`
|
|
18
|
+
|
|
19
|
+
If your MR includes any changes outside of documentation, you will need to ensure the following:
|
|
20
|
+
|
|
21
|
+
1. Update the `CHANGELOG.md` as part of your MR.
|
|
22
|
+
1. Update the `package.json` with the version you're going to publish.
|
|
23
|
+
|
|
15
24
|
## Merging and Publishing
|
|
16
|
-
|
|
25
|
+
|
|
26
|
+
### Branch: `master`
|
|
27
|
+
|
|
28
|
+
1. To merge and publish, comment `shipit --publish-version=major/minor/patch` once the MR is approved.
|
|
17
29
|
Shipit will handle version bumping based on the specified flag (major, minor, or patch), publish the package to the npm registry, merge the MR into the master branch, and create a corresponding tag.
|
|
18
30
|
|
|
19
31
|
> **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
32
|
|
|
33
|
+
### Branch: `MXUI_1.x`
|
|
34
|
+
|
|
35
|
+
1. To merge, click the 'merge' button found on the MR in the Gitlab UI.
|
|
36
|
+
1. To publish, pull down master and use the `stable` tag: `npm publish --tag stable`.
|
|
37
|
+
1. Tag the new version: `git tag x.x.x` , `git push origin --tags`
|
|
38
|
+
|
|
21
39
|
## Using this Library
|
|
22
40
|
|
|
23
41
|
The QA storybook containing the latest changes is [accessible here](https://mxui.kube.qa.internal.mx/?path=/docs/introduction--docs).
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
2
|
import { DateRange, PickersShortcutsProps } from '@mui/x-date-pickers-pro';
|
|
3
3
|
interface DatePickerShortcutsSmallProps extends PickersShortcutsProps<DateRange<Date>> {
|
|
4
|
+
selectLabel: string;
|
|
4
5
|
selected?: string;
|
|
5
6
|
}
|
|
6
7
|
declare const DatePickerShortcutsSmall: React.FC<DatePickerShortcutsSmallProps>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { PickersLayoutProps } from '@mui/x-date-pickers/PickersLayout';
|
|
2
1
|
import { DateRange } from '@mui/x-date-pickers-pro';
|
|
2
|
+
import { PickersLayoutProps } from '@mui/x-date-pickers/PickersLayout';
|
|
3
3
|
declare const DateRangePickerSmallLayout: (props: PickersLayoutProps<DateRange<Date>, Date, any>) => import("react/jsx-runtime").JSX.Element;
|
|
4
4
|
export default DateRangePickerSmallLayout;
|