ods-component-lib 1.18.69 → 1.18.71
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/components/antd/message/OdsMessage.d.ts +11 -0
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +1 -0
- package/dist/index.modern.js.map +1 -1
- package/dist/stories/OdsCalendar/OdsCalendar.stories.d.ts +65 -0
- package/dist/stories/OdsCalendar/Samples/Basic.Sample.d.ts +1 -0
- package/dist/stories/OdsCalendar/Samples/Card.Sample.d.ts +1 -0
- package/dist/stories/OdsList/OdsList.stories.d.ts +86 -0
- package/dist/stories/OdsList/Samples/GridList.sample.d.ts +1 -0
- package/dist/stories/OdsList/Samples/SimpleList.sample.d.ts +1 -0
- package/dist/stories/OdsMessage/OdsMessage.stories.d.ts +28 -0
- package/dist/stories/OdsMessage/Sample/Basic.Sample.d.ts +2 -0
- package/dist/stories/OdsNotification/OdsNotification.stories.d.ts +23 -0
- package/dist/stories/OdsNotification/Samples/Basic.sample.d.ts +1 -0
- package/dist/stories/OdsNotification/Samples/Simple.Sample.d.ts +1 -0
- package/dist/stories/OdsPassword/OdsPassword.stories.d.ts +295 -0
- package/dist/stories/OdsPhoneInput/OdsPhoneInput.stories.d.ts +36 -0
- package/package.json +1 -1
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { CSSProperties } from 'react';
|
|
2
|
+
export interface OdsMessageProps {
|
|
3
|
+
content: string;
|
|
4
|
+
type: 'info' | 'success' | 'error' | 'warning' | 'loading';
|
|
5
|
+
duration?: number;
|
|
6
|
+
onClose?: () => void;
|
|
7
|
+
className?: string;
|
|
8
|
+
style?: CSSProperties;
|
|
9
|
+
}
|
|
10
|
+
declare const OdsMessage: React.FC<OdsMessageProps>;
|
|
11
|
+
export default OdsMessage;
|
package/dist/index.js
CHANGED
|
@@ -16679,6 +16679,7 @@ var OdsRemoteDataGrid = function OdsRemoteDataGrid(props) {
|
|
|
16679
16679
|
};
|
|
16680
16680
|
colItem.headerCellRender = headerCellRenderr;
|
|
16681
16681
|
}
|
|
16682
|
+
if (props.isServerSide) colItem.calculateSortValue = String("dummyFieldForPreventClientSideSorting");
|
|
16682
16683
|
return colItem;
|
|
16683
16684
|
});
|
|
16684
16685
|
columns.current = newColumns;
|