@momentum-design/components 0.85.8 → 0.85.10
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/dist/browser/index.js +53 -36
- package/dist/browser/index.js.map +2 -2
- package/dist/components/dialog/dialog.component.d.ts +11 -2
- package/dist/components/dialog/dialog.component.js +22 -4
- package/dist/components/dialog/dialog.constants.d.ts +1 -1
- package/dist/components/dialog/dialog.constants.js +1 -1
- package/dist/components/dialog/dialog.styles.js +22 -5
- package/dist/custom-elements.json +522 -522
- package/dist/react/dialog/index.d.ts +1 -1
- package/dist/react/dialog/index.js +1 -1
- package/dist/react/index.d.ts +1 -1
- package/dist/react/index.js +1 -1
- package/package.json +1 -1
@@ -3,7 +3,7 @@ import Component from '../../components/dialog';
|
|
3
3
|
/**
|
4
4
|
* Dialog component is a modal dialog that can be used to display information or prompt the user for input.
|
5
5
|
* It can be used to create custom dialogs where content for the body and footer actions is provided by the consumer.
|
6
|
-
* The dialog is available in
|
6
|
+
* The dialog is available in 5 sizes: small, medium, large, xlarge and fullscreen. It may also receive custom styling/sizing.
|
7
7
|
* The dialog interrupts the user and will block interaction with the rest of the application until it is closed.
|
8
8
|
*
|
9
9
|
* The dialog can be controlled solely through the `visible` property, no trigger element is required.
|
@@ -5,7 +5,7 @@ import { TAG_NAME } from '../../components/dialog/dialog.constants';
|
|
5
5
|
/**
|
6
6
|
* Dialog component is a modal dialog that can be used to display information or prompt the user for input.
|
7
7
|
* It can be used to create custom dialogs where content for the body and footer actions is provided by the consumer.
|
8
|
-
* The dialog is available in
|
8
|
+
* The dialog is available in 5 sizes: small, medium, large, xlarge and fullscreen. It may also receive custom styling/sizing.
|
9
9
|
* The dialog interrupts the user and will block interaction with the rest of the application until it is closed.
|
10
10
|
*
|
11
11
|
* The dialog can be controlled solely through the `visible` property, no trigger element is required.
|
package/dist/react/index.d.ts
CHANGED
@@ -1,6 +1,6 @@
|
|
1
|
+
export { default as AlertChip } from './alertchip';
|
1
2
|
export { default as Animation } from './animation';
|
2
3
|
export { default as Appheader } from './appheader';
|
3
|
-
export { default as AlertChip } from './alertchip';
|
4
4
|
export { default as Avatar } from './avatar';
|
5
5
|
export { default as AvatarButton } from './avatarbutton';
|
6
6
|
export { default as Badge } from './badge';
|
package/dist/react/index.js
CHANGED
@@ -1,6 +1,6 @@
|
|
1
|
+
export { default as AlertChip } from './alertchip';
|
1
2
|
export { default as Animation } from './animation';
|
2
3
|
export { default as Appheader } from './appheader';
|
3
|
-
export { default as AlertChip } from './alertchip';
|
4
4
|
export { default as Avatar } from './avatar';
|
5
5
|
export { default as AvatarButton } from './avatarbutton';
|
6
6
|
export { default as Badge } from './badge';
|
package/package.json
CHANGED