ods-component-lib 1.18.74 → 1.18.77

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 (27) hide show
  1. package/dist/components/antd/floatbutton/OdsFloatButton.d.ts +10 -0
  2. package/dist/components/antd/floatbutton/OdsFloatButton.styled.d.ts +1 -0
  3. package/dist/components/antd/modal/OdsModal.d.ts +3 -3
  4. package/dist/components/antd/modal/OdsModalOld.d.ts +7 -0
  5. package/dist/components/antd/timepicker/OdsRangeTimepicker.d.ts +4 -1
  6. package/dist/index.d.ts +4 -4
  7. package/dist/index.js +31092 -198
  8. package/dist/index.js.map +1 -1
  9. package/dist/index.modern.js +31092 -198
  10. package/dist/index.modern.js.map +1 -1
  11. package/dist/stories/OdsFloatButton/OdsFloatButton.stories.d.ts +27 -0
  12. package/dist/stories/OdsFloatButton/Samples/BasicFloatButton.sample.d.ts +1 -0
  13. package/dist/stories/OdsInputNumber/OdsInputNumber.stories.d.ts +9 -0
  14. package/dist/stories/OdsModal/OdsModal.stories.d.ts +19 -3
  15. package/dist/stories/OdsModal/Samples/BasicOdsModal.sample.d.ts +7 -0
  16. package/dist/stories/OdsModalOld/OdsModalOld.stories.d.ts +28 -0
  17. package/dist/stories/OdsModalOld/Samples/OdsModalOld.Sample.d.ts +1 -0
  18. package/dist/stories/OdsRangeTimepicker/OdsRangeTimePicker.stories.d.ts +21 -0
  19. package/dist/stories/OdsRangeTimepicker/Samples/TimeRangePicker.d.ts +3 -0
  20. package/dist/stories/OdsText/OdsText.stories.d.ts +62 -0
  21. package/dist/stories/OdsText/Samples/CustomText.Tample.d.ts +1 -0
  22. package/dist/stories/OdsText/Samples/Default.Tample.d.ts +1 -0
  23. package/dist/stories/OdsText/Samples/EllipsisText.Tample.d.ts +1 -0
  24. package/dist/stories/OdsText/Samples/StrongText.Tample.d.ts +1 -0
  25. package/dist/stories/OdsText/Samples/UnderlineText.Tample.d.ts +1 -0
  26. package/dist/stories/OdsTimePicker/OdsTimePicker.stories.d.ts +0 -1
  27. package/package.json +1 -1
@@ -0,0 +1,27 @@
1
+ import OdsFloatButton from "../../components/antd/floatbutton/OdsFloatButton";
2
+ declare const _default: {
3
+ title: string;
4
+ component: typeof OdsFloatButton;
5
+ tags: string[];
6
+ argTypes: {
7
+ type: {
8
+ options: string[];
9
+ control: {
10
+ type: string;
11
+ };
12
+ description: string;
13
+ };
14
+ shape: {
15
+ options: string[];
16
+ control: {
17
+ type: string;
18
+ };
19
+ description: string;
20
+ };
21
+ onClick: {
22
+ action: string;
23
+ };
24
+ };
25
+ };
26
+ export default _default;
27
+ export declare const FloatButton: any;
@@ -0,0 +1 @@
1
+ export declare const FloatButtonTemplate: any;
@@ -4,6 +4,15 @@ declare const _default: {
4
4
  component: typeof OdsInputNumber;
5
5
  tags: string[];
6
6
  argTypes: {
7
+ max: {
8
+ description: string;
9
+ };
10
+ min: {
11
+ description: string;
12
+ };
13
+ defaultValue: {
14
+ description: string;
15
+ };
7
16
  autoFocus: {
8
17
  options: string[];
9
18
  description: string;
@@ -4,17 +4,33 @@ declare const _default: {
4
4
  component: typeof OdsModal;
5
5
  tags: string[];
6
6
  argTypes: {
7
+ centered: {
8
+ options: boolean[];
9
+ description: string;
10
+ };
7
11
  title: {
8
12
  description: string;
9
13
  };
14
+ closable: {
15
+ options: boolean[];
16
+ description: string;
17
+ };
18
+ content: {
19
+ description: string;
20
+ };
21
+ width: {
22
+ description: string;
23
+ };
10
24
  open: {
11
25
  options: string[];
12
26
  description: string;
13
27
  };
14
- onOk: {
28
+ onCancel: {
29
+ action: string;
15
30
  description: string;
16
31
  };
17
- onCancel: {
32
+ onOk: {
33
+ action: string;
18
34
  description: string;
19
35
  };
20
36
  };
@@ -25,4 +41,4 @@ declare const _default: {
25
41
  };
26
42
  };
27
43
  export default _default;
28
- export declare const Basic: any;
44
+ export declare const BasicOdsAdvanceModal: any;
@@ -0,0 +1,7 @@
1
+ import OdsModal from "../../../components/antd/modal/OdsModal";
2
+ declare const _default: {
3
+ title: string;
4
+ component: typeof OdsModal;
5
+ };
6
+ export default _default;
7
+ export declare const BasicOdsAdvanceModalTemplate: any;
@@ -0,0 +1,28 @@
1
+ import OdsModalOld from "../../components/antd/modal/OdsModalOld";
2
+ declare const _default: {
3
+ title: string;
4
+ component: typeof OdsModalOld;
5
+ tags: string[];
6
+ argTypes: {
7
+ title: {
8
+ description: string;
9
+ };
10
+ open: {
11
+ options: string[];
12
+ description: string;
13
+ };
14
+ onOk: {
15
+ description: string;
16
+ };
17
+ onCancel: {
18
+ description: string;
19
+ };
20
+ };
21
+ parameters: {
22
+ controls: {
23
+ exclude: string[];
24
+ };
25
+ };
26
+ };
27
+ export default _default;
28
+ export declare const Basic: any;
@@ -0,0 +1 @@
1
+ export declare const BasicModal: any;
@@ -0,0 +1,21 @@
1
+ import OdsRangeTimepicker from '../../components/antd/timepicker/OdsRangeTimepicker';
2
+ declare const _default: {
3
+ title: string;
4
+ component: typeof OdsRangeTimepicker;
5
+ tags: string[];
6
+ argTypes: {
7
+ enableSeconds: {
8
+ control: string;
9
+ description: string;
10
+ defaultValue: boolean;
11
+ table: {
12
+ defaultValue: {
13
+ summary: string;
14
+ };
15
+ };
16
+ };
17
+ };
18
+ };
19
+ export default _default;
20
+ export declare const Range: any;
21
+ export declare const RangeWithoutSeconds: any;
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ declare const TimeRangePickerTemplate: (args: any) => React.JSX.Element;
3
+ export default TimeRangePickerTemplate;
@@ -0,0 +1,62 @@
1
+ import OdsText from '../../components/antd/typography/OdsText';
2
+ import { Default } from './Samples/Default.Tample';
3
+ import { CustomText } from './Samples/CustomText.Tample';
4
+ import { StrongText } from './Samples/StrongText.Tample';
5
+ import { UnderlineText } from './Samples/UnderlineText.Tample';
6
+ import { EllipsisText } from './Samples/EllipsisText.Tample';
7
+ declare const _default: {
8
+ title: string;
9
+ component: typeof OdsText;
10
+ tags: string[];
11
+ argTypes: {
12
+ children: {
13
+ control: string;
14
+ description: string;
15
+ };
16
+ style: {
17
+ control: string;
18
+ description: string;
19
+ };
20
+ className: {
21
+ control: string;
22
+ description: string;
23
+ };
24
+ ellipsis: {
25
+ control: string;
26
+ description: string;
27
+ };
28
+ strong: {
29
+ control: string;
30
+ description: string;
31
+ };
32
+ underline: {
33
+ control: string;
34
+ description: string;
35
+ };
36
+ delete: {
37
+ control: string;
38
+ description: string;
39
+ };
40
+ code: {
41
+ control: string;
42
+ description: string;
43
+ };
44
+ mark: {
45
+ control: string;
46
+ description: string;
47
+ };
48
+ type: {
49
+ options: string[];
50
+ control: {
51
+ type: string;
52
+ };
53
+ description: string;
54
+ };
55
+ disabled: {
56
+ control: string;
57
+ description: string;
58
+ };
59
+ };
60
+ };
61
+ export default _default;
62
+ export { Default, CustomText, StrongText, UnderlineText, EllipsisText };
@@ -0,0 +1 @@
1
+ export declare const CustomText: any;
@@ -0,0 +1 @@
1
+ export declare const Default: any;
@@ -0,0 +1 @@
1
+ export declare const EllipsisText: any;
@@ -0,0 +1 @@
1
+ export declare const StrongText: any;
@@ -0,0 +1 @@
1
+ export declare const UnderlineText: any;
@@ -7,4 +7,3 @@ declare const _default: {
7
7
  };
8
8
  export default _default;
9
9
  export declare const Basic: any;
10
- export declare const Range: () => import("react").JSX.Element;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ods-component-lib",
3
- "version": "1.18.74",
3
+ "version": "1.18.77",
4
4
  "description": "Odeon design system component lib",
5
5
  "author": "OdeonTechnology",
6
6
  "license": "MIT",