ods-component-lib 1.18.82 → 1.18.84

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.
Files changed (24) hide show
  1. package/dist/components/antd/button/OdsDataGrdiRowButton.d.ts +24 -0
  2. package/dist/components/antd/collapse/OdsCollapse.d.ts +9 -1
  3. package/dist/components/antd/dropdown/OdsDropdown.d.ts +1 -0
  4. package/dist/components/antd/input/OdsCurrencyInput.d.ts +14 -0
  5. package/dist/components/antd/list/OdsList.d.ts +1 -1
  6. package/dist/components/devextreme/OdsRemoteDataGrid.d.ts +3 -2
  7. package/dist/index.d.ts +1 -1
  8. package/dist/index.js +689 -14801
  9. package/dist/index.js.map +1 -1
  10. package/dist/index.modern.js +691 -14803
  11. package/dist/index.modern.js.map +1 -1
  12. package/dist/stories/OdsCurrencyInput/OdsCurrencyInput.stories.d.ts +24 -0
  13. package/dist/stories/OdsCurrencyInput/Samples/Basic.Sample.d.ts +3 -0
  14. package/dist/stories/OdsDateRangePicker/OdsDateRangePicker.stories.d.ts +1 -0
  15. package/dist/stories/OdsDateRangePicker/Samples/WithSecond.Sample.d.ts +1 -0
  16. package/dist/stories/OdsDatepicker/OdsDatepicker.stories.d.ts +1 -0
  17. package/dist/stories/OdsDatepicker/Samples/WithSecond.Sample.d.ts +1 -0
  18. package/dist/stories/OdsList/OdsList.stories.d.ts +2 -2
  19. package/dist/stories/OdsRemoteDataGrid/OdsRemoteDataGrid.stories.d.ts +3 -0
  20. package/dist/stories/OdsRemoteDataGrid/Samples/CollapsibleDataGrid/CollapsibleDataGrid.Constants.d.ts +17 -0
  21. package/dist/stories/OdsRemoteDataGrid/Samples/CollapsibleDataGrid/CollapsibleDataGrid.MockData.d.ts +17 -0
  22. package/dist/stories/OdsRemoteDataGrid/Samples/CollapsibleDataGrid/CollapsibleDataGrid.Sample.d.ts +1 -0
  23. package/dist/stories/OdsSearch/OdsSearch.stories.d.ts +3 -0
  24. package/package.json +1 -1
@@ -0,0 +1,24 @@
1
+ /// <reference types="react" />
2
+ declare const _default: {
3
+ title: string;
4
+ tags: string[];
5
+ component: import("react").FC<import("../../components/antd/input/OdsCurrencyInput").CurrencyInputProps>;
6
+ argTypes: {
7
+ initialAmount: {
8
+ control: string;
9
+ description: string;
10
+ defaultValue: {
11
+ summary: string;
12
+ };
13
+ };
14
+ allCurrencies: {
15
+ control: string;
16
+ description: string;
17
+ defaultValue: {
18
+ summary: string;
19
+ };
20
+ };
21
+ };
22
+ };
23
+ export default _default;
24
+ export declare const BasicTemplate: (args: any) => import("react").JSX.Element;
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ declare const OdsCurrencyInputTemplate: (args: any) => React.JSX.Element;
3
+ export default OdsCurrencyInputTemplate;
@@ -14,3 +14,4 @@ export default _default;
14
14
  export declare const Basic: any;
15
15
  export declare const LimitDateRange: any;
16
16
  export declare const SelectRangeDatesInSevenDays: any;
17
+ export declare const WithSecond: any;
@@ -0,0 +1 @@
1
+ export declare const WithSecondTemplate: any;
@@ -27,3 +27,4 @@ export declare const MaskFormat: any;
27
27
  export declare const DateFormat: any;
28
28
  export declare const Multiple: any;
29
29
  export declare const NeedConfirm: any;
30
+ export declare const WithSecond: any;
@@ -0,0 +1 @@
1
+ export declare const WithSecondTemplate: any;
@@ -1,7 +1,7 @@
1
- import OdsList from '../../components/antd/list/OdsList';
1
+ /// <reference types="react" />
2
2
  declare const _default: {
3
3
  title: string;
4
- component: typeof OdsList;
4
+ component: (props: import("../../components/antd/list/OdsList").IListProps) => import("react").JSX.Element;
5
5
  tags: string[];
6
6
  argTypes: {
7
7
  headerText: {
@@ -1,4 +1,6 @@
1
1
  /// <reference types="react" />
2
+ import "devextreme/dist/css/dx.light.css";
3
+ import "./dxgrid.css";
2
4
  declare const _default: {
3
5
  title: string;
4
6
  component: (props: import("../../components/devextreme/OdsRemoteDataGrid").IOdsDataGridProps) => import("react").JSX.Element;
@@ -66,3 +68,4 @@ declare const _default: {
66
68
  export default _default;
67
69
  export declare const Basic: any;
68
70
  export declare const ActionColumns: any;
71
+ export declare const CollapsibleDataGrid: any;
@@ -0,0 +1,17 @@
1
+ /// <reference types="react" />
2
+ export declare const DataGridColumns: ({
3
+ dataField: string;
4
+ dataType: string;
5
+ caption: string;
6
+ cellRender?: undefined;
7
+ dataSource?: undefined;
8
+ } | {
9
+ dataField: string;
10
+ caption: string;
11
+ cellRender: (value: any) => import("react").JSX.Element;
12
+ dataSource: {
13
+ label: string;
14
+ value: boolean;
15
+ }[];
16
+ dataType?: undefined;
17
+ })[];
@@ -0,0 +1,17 @@
1
+ export declare const CollapseMockData: {
2
+ key: string;
3
+ header: string;
4
+ }[];
5
+ export declare const DataGridMockData: {
6
+ Name: string;
7
+ Currency: string;
8
+ IsActive: boolean;
9
+ }[];
10
+ export declare const GetRowGridData: (rowIndex: number) => {
11
+ id: number;
12
+ dataSource: {
13
+ Name: string;
14
+ Currency: string;
15
+ IsActive: boolean;
16
+ }[];
17
+ };
@@ -0,0 +1 @@
1
+ export declare const CollapsibleDataGridTemplate: any;
@@ -4,6 +4,9 @@ declare const _default: {
4
4
  component: typeof OdsSearch;
5
5
  tags: string[];
6
6
  argTypes: {
7
+ description: {
8
+ description: string;
9
+ };
7
10
  enterButton: {
8
11
  description: string;
9
12
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ods-component-lib",
3
- "version": "1.18.82",
3
+ "version": "1.18.84",
4
4
  "description": "Odeon design system component lib",
5
5
  "author": "OdeonTechnology",
6
6
  "license": "MIT",