@dxc-technology/halstack-react 0.0.0-227874a → 0.0.0-22b474c
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/BackgroundColorContext.d.ts +10 -0
- package/BackgroundColorContext.js +8 -7
- package/HalstackContext.d.ts +1339 -0
- package/HalstackContext.js +335 -0
- package/accordion/Accordion.d.ts +4 -0
- package/accordion/Accordion.js +124 -243
- package/accordion/Accordion.stories.tsx +395 -0
- package/accordion/Accordion.test.js +71 -0
- package/accordion/types.d.ts +69 -0
- package/accordion/types.js +5 -0
- package/accordion-group/AccordionGroup.d.ts +7 -0
- package/accordion-group/AccordionGroup.js +70 -107
- package/accordion-group/AccordionGroup.stories.tsx +251 -0
- package/accordion-group/AccordionGroup.test.js +126 -0
- package/accordion-group/types.d.ts +79 -0
- package/accordion-group/types.js +5 -0
- package/alert/Alert.d.ts +4 -0
- package/alert/Alert.js +45 -157
- package/alert/Alert.stories.tsx +198 -0
- package/alert/Alert.test.js +92 -0
- package/alert/types.d.ts +49 -0
- package/alert/types.js +5 -0
- package/badge/Badge.d.ts +4 -0
- package/badge/Badge.js +15 -17
- package/badge/types.d.ts +5 -0
- package/badge/types.js +5 -0
- package/bleed/Bleed.d.ts +3 -0
- package/bleed/Bleed.js +51 -0
- package/bleed/Bleed.stories.tsx +342 -0
- package/bleed/types.d.ts +37 -0
- package/bleed/types.js +5 -0
- package/box/Box.d.ts +4 -0
- package/box/Box.js +39 -81
- package/box/Box.stories.tsx +147 -0
- package/box/Box.test.js +18 -0
- package/box/types.d.ts +44 -0
- package/box/types.js +5 -0
- package/bulleted-list/BulletedList.d.ts +7 -0
- package/bulleted-list/BulletedList.js +123 -0
- package/bulleted-list/BulletedList.stories.tsx +200 -0
- package/bulleted-list/types.d.ts +11 -0
- package/bulleted-list/types.js +5 -0
- package/button/Button.d.ts +4 -0
- package/button/Button.js +60 -145
- package/button/Button.stories.tsx +425 -0
- package/button/Button.test.js +35 -0
- package/button/types.d.ts +53 -0
- package/button/types.js +5 -0
- package/card/Card.d.ts +4 -0
- package/card/Card.js +53 -147
- package/card/Card.stories.tsx +200 -0
- package/card/Card.test.js +50 -0
- package/card/ice-cream.jpg +0 -0
- package/card/types.d.ts +68 -0
- package/card/types.js +5 -0
- package/checkbox/Checkbox.d.ts +4 -0
- package/checkbox/Checkbox.js +112 -161
- package/checkbox/Checkbox.stories.tsx +260 -0
- package/checkbox/Checkbox.test.js +155 -0
- package/checkbox/types.d.ts +68 -0
- package/checkbox/types.js +5 -0
- package/chip/Chip.d.ts +4 -0
- package/chip/Chip.js +32 -144
- package/chip/Chip.stories.tsx +206 -0
- package/chip/Chip.test.js +54 -0
- package/chip/types.d.ts +45 -0
- package/chip/types.js +5 -0
- package/common/utils.d.ts +1 -0
- package/common/utils.js +4 -4
- package/common/variables.d.ts +1625 -0
- package/common/variables.js +582 -644
- package/date-input/Calendar.d.ts +4 -0
- package/date-input/Calendar.js +258 -0
- package/date-input/DateInput.d.ts +4 -0
- package/date-input/DateInput.js +179 -310
- package/date-input/DateInput.stories.tsx +304 -0
- package/date-input/DateInput.test.js +835 -0
- package/date-input/DatePicker.d.ts +4 -0
- package/date-input/DatePicker.js +146 -0
- package/date-input/Icons.d.ts +6 -0
- package/date-input/Icons.js +75 -0
- package/date-input/YearPicker.d.ts +4 -0
- package/date-input/YearPicker.js +126 -0
- package/date-input/types.d.ts +158 -0
- package/date-input/types.js +5 -0
- package/dialog/Dialog.d.ts +4 -0
- package/dialog/Dialog.js +81 -150
- package/dialog/Dialog.stories.tsx +319 -0
- package/dialog/Dialog.test.js +369 -0
- package/dialog/types.d.ts +44 -0
- package/dialog/types.js +5 -0
- package/dropdown/Dropdown.d.ts +4 -0
- package/dropdown/Dropdown.js +246 -402
- package/dropdown/Dropdown.stories.tsx +438 -0
- package/dropdown/Dropdown.test.js +586 -0
- package/dropdown/DropdownMenu.d.ts +4 -0
- package/dropdown/DropdownMenu.js +70 -0
- package/dropdown/DropdownMenuItem.d.ts +4 -0
- package/dropdown/DropdownMenuItem.js +79 -0
- package/dropdown/types.d.ts +100 -0
- package/dropdown/types.js +5 -0
- package/file-input/FileInput.d.ts +4 -0
- package/file-input/FileInput.js +210 -307
- package/file-input/FileInput.stories.tsx +618 -0
- package/file-input/FileInput.test.js +457 -0
- package/file-input/FileItem.d.ts +4 -0
- package/file-input/FileItem.js +58 -183
- package/file-input/types.d.ts +129 -0
- package/file-input/types.js +5 -0
- package/flex/Flex.d.ts +4 -0
- package/flex/Flex.js +69 -0
- package/flex/Flex.stories.tsx +98 -0
- package/flex/types.d.ts +32 -0
- package/flex/types.js +5 -0
- package/footer/Footer.d.ts +4 -0
- package/footer/Footer.js +51 -289
- package/footer/Footer.stories.tsx +228 -0
- package/footer/Footer.test.js +97 -0
- package/footer/Icons.d.ts +2 -0
- package/footer/Icons.js +16 -16
- package/footer/types.d.ts +66 -0
- package/footer/types.js +5 -0
- package/grid/Grid.d.ts +7 -0
- package/grid/Grid.js +91 -0
- package/grid/Grid.stories.tsx +219 -0
- package/grid/types.d.ts +115 -0
- package/grid/types.js +5 -0
- package/header/Header.d.ts +8 -0
- package/header/Header.js +136 -303
- package/header/Header.stories.tsx +315 -0
- package/header/Header.test.js +79 -0
- package/header/Icons.d.ts +2 -0
- package/header/Icons.js +9 -34
- package/header/types.d.ts +48 -0
- package/header/types.js +5 -0
- package/heading/Heading.d.ts +4 -0
- package/heading/Heading.js +26 -97
- package/heading/Heading.stories.tsx +54 -0
- package/heading/Heading.test.js +186 -0
- package/heading/types.d.ts +33 -0
- package/heading/types.js +5 -0
- package/inset/Inset.d.ts +3 -0
- package/inset/Inset.js +51 -0
- package/inset/Inset.stories.tsx +230 -0
- package/inset/types.d.ts +37 -0
- package/inset/types.js +5 -0
- package/layout/ApplicationLayout.d.ts +20 -0
- package/layout/ApplicationLayout.js +77 -233
- package/layout/ApplicationLayout.stories.tsx +162 -0
- package/layout/Icons.d.ts +5 -0
- package/layout/Icons.js +19 -8
- package/layout/SidenavContext.d.ts +5 -0
- package/layout/SidenavContext.js +19 -0
- package/layout/types.d.ts +41 -0
- package/layout/types.js +5 -0
- package/link/Link.d.ts +4 -0
- package/link/Link.js +66 -167
- package/link/Link.stories.tsx +253 -0
- package/link/Link.test.js +81 -0
- package/link/types.d.ts +54 -0
- package/link/types.js +5 -0
- package/main.d.ts +45 -40
- package/main.js +122 -104
- package/nav-tabs/NavTabs.d.ts +8 -0
- package/nav-tabs/NavTabs.js +125 -0
- package/nav-tabs/NavTabs.stories.tsx +260 -0
- package/nav-tabs/NavTabs.test.js +82 -0
- package/nav-tabs/Tab.d.ts +4 -0
- package/nav-tabs/Tab.js +150 -0
- package/nav-tabs/types.d.ts +53 -0
- package/nav-tabs/types.js +5 -0
- package/number-input/NumberInput.d.ts +4 -0
- package/number-input/NumberInput.js +21 -81
- package/number-input/NumberInput.stories.tsx +115 -0
- package/number-input/NumberInput.test.js +542 -0
- package/number-input/NumberInputContext.d.ts +4 -0
- package/number-input/NumberInputContext.js +5 -2
- package/number-input/numberInputContextTypes.d.ts +19 -0
- package/number-input/numberInputContextTypes.js +5 -0
- package/number-input/types.d.ts +124 -0
- package/number-input/types.js +5 -0
- package/package.json +35 -33
- package/paginator/Icons.d.ts +5 -0
- package/paginator/Icons.js +25 -37
- package/paginator/Paginator.d.ts +4 -0
- package/paginator/Paginator.js +30 -172
- package/paginator/Paginator.stories.tsx +87 -0
- package/paginator/Paginator.test.js +305 -0
- package/paginator/types.d.ts +38 -0
- package/paginator/types.js +5 -0
- package/paragraph/Paragraph.d.ts +5 -0
- package/paragraph/Paragraph.js +38 -0
- package/paragraph/Paragraph.stories.tsx +44 -0
- package/password-input/PasswordInput.d.ts +4 -0
- package/password-input/PasswordInput.js +40 -77
- package/password-input/PasswordInput.stories.tsx +131 -0
- package/password-input/PasswordInput.test.js +181 -0
- package/password-input/types.d.ts +110 -0
- package/password-input/types.js +5 -0
- package/progress-bar/ProgressBar.d.ts +4 -0
- package/progress-bar/ProgressBar.js +76 -142
- package/progress-bar/ProgressBar.stories.jsx +93 -0
- package/progress-bar/ProgressBar.test.js +110 -0
- package/progress-bar/types.d.ts +37 -0
- package/progress-bar/types.js +5 -0
- package/quick-nav/QuickNav.d.ts +4 -0
- package/quick-nav/QuickNav.js +117 -0
- package/quick-nav/QuickNav.stories.tsx +356 -0
- package/quick-nav/types.d.ts +21 -0
- package/quick-nav/types.js +5 -0
- package/radio-group/Radio.d.ts +4 -0
- package/radio-group/Radio.js +156 -0
- package/radio-group/RadioGroup.d.ts +4 -0
- package/radio-group/RadioGroup.js +283 -0
- package/radio-group/RadioGroup.stories.tsx +214 -0
- package/radio-group/RadioGroup.test.js +722 -0
- package/radio-group/types.d.ts +114 -0
- package/radio-group/types.js +5 -0
- package/resultsetTable/Icons.d.ts +7 -0
- package/resultsetTable/Icons.js +51 -0
- package/resultsetTable/ResultsetTable.d.ts +4 -0
- package/resultsetTable/ResultsetTable.js +61 -224
- package/resultsetTable/ResultsetTable.stories.tsx +300 -0
- package/resultsetTable/ResultsetTable.test.js +325 -0
- package/resultsetTable/types.d.ts +67 -0
- package/resultsetTable/types.js +5 -0
- package/select/Icons.d.ts +10 -0
- package/select/Icons.js +93 -0
- package/select/Listbox.d.ts +4 -0
- package/select/Listbox.js +169 -0
- package/select/Option.d.ts +4 -0
- package/select/Option.js +97 -0
- package/select/Select.d.ts +4 -0
- package/select/Select.js +281 -751
- package/select/Select.stories.tsx +971 -0
- package/select/Select.test.js +2228 -0
- package/select/types.d.ts +210 -0
- package/select/types.js +5 -0
- package/sidenav/Icons.d.ts +7 -0
- package/sidenav/Icons.js +51 -0
- package/sidenav/Sidenav.d.ts +10 -0
- package/sidenav/Sidenav.js +155 -94
- package/sidenav/Sidenav.stories.tsx +282 -0
- package/sidenav/Sidenav.test.js +44 -0
- package/sidenav/types.d.ts +76 -0
- package/sidenav/types.js +5 -0
- package/slider/Slider.d.ts +4 -0
- package/slider/Slider.js +167 -229
- package/slider/Slider.stories.tsx +240 -0
- package/slider/Slider.test.js +250 -0
- package/slider/types.d.ts +86 -0
- package/slider/types.js +5 -0
- package/spinner/Spinner.d.ts +4 -0
- package/spinner/Spinner.js +57 -194
- package/spinner/Spinner.stories.jsx +129 -0
- package/spinner/Spinner.test.js +64 -0
- package/spinner/types.d.ts +32 -0
- package/spinner/types.js +5 -0
- package/switch/Switch.d.ts +4 -0
- package/switch/Switch.js +163 -123
- package/switch/Switch.stories.tsx +171 -0
- package/switch/Switch.test.js +225 -0
- package/switch/types.d.ts +66 -0
- package/switch/types.js +5 -0
- package/table/Table.d.ts +4 -0
- package/table/Table.js +14 -28
- package/table/Table.stories.jsx +356 -0
- package/table/Table.test.js +26 -0
- package/table/types.d.ts +21 -0
- package/table/types.js +5 -0
- package/tabs/Tab.d.ts +4 -0
- package/tabs/Tab.js +132 -0
- package/tabs/Tabs.d.ts +4 -0
- package/tabs/Tabs.js +351 -233
- package/tabs/Tabs.stories.tsx +226 -0
- package/tabs/Tabs.test.js +350 -0
- package/tabs/types.d.ts +92 -0
- package/tabs/types.js +5 -0
- package/tag/Tag.d.ts +4 -0
- package/tag/Tag.js +47 -148
- package/tag/Tag.stories.tsx +155 -0
- package/tag/Tag.test.js +60 -0
- package/tag/types.d.ts +69 -0
- package/tag/types.js +5 -0
- package/text-input/Icons.d.ts +8 -0
- package/text-input/Icons.js +60 -0
- package/text-input/Suggestion.d.ts +4 -0
- package/text-input/Suggestion.js +84 -0
- package/text-input/Suggestions.d.ts +4 -0
- package/text-input/Suggestions.js +134 -0
- package/text-input/TextInput.d.ts +4 -0
- package/text-input/TextInput.js +262 -579
- package/text-input/TextInput.stories.tsx +569 -0
- package/text-input/TextInput.test.js +1723 -0
- package/text-input/types.d.ts +197 -0
- package/text-input/types.js +5 -0
- package/textarea/Textarea.d.ts +4 -0
- package/textarea/Textarea.js +51 -144
- package/textarea/Textarea.stories.jsx +216 -0
- package/textarea/Textarea.test.js +435 -0
- package/textarea/types.d.ts +137 -0
- package/textarea/types.js +5 -0
- package/toggle-group/ToggleGroup.d.ts +4 -0
- package/toggle-group/ToggleGroup.js +42 -151
- package/toggle-group/ToggleGroup.stories.tsx +215 -0
- package/toggle-group/ToggleGroup.test.js +156 -0
- package/toggle-group/types.d.ts +105 -0
- package/toggle-group/types.js +5 -0
- package/typography/Typography.d.ts +4 -0
- package/typography/Typography.js +32 -0
- package/typography/Typography.stories.tsx +198 -0
- package/typography/types.d.ts +18 -0
- package/typography/types.js +5 -0
- package/useTheme.d.ts +1235 -0
- package/useTheme.js +3 -3
- package/useTranslatedLabels.d.ts +85 -0
- package/useTranslatedLabels.js +20 -0
- package/utils/BaseTypography.d.ts +21 -0
- package/utils/BaseTypography.js +108 -0
- package/utils/FocusLock.d.ts +13 -0
- package/utils/FocusLock.js +139 -0
- package/wizard/Wizard.d.ts +4 -0
- package/wizard/Wizard.js +134 -254
- package/wizard/Wizard.stories.tsx +253 -0
- package/wizard/Wizard.test.js +141 -0
- package/wizard/types.d.ts +64 -0
- package/wizard/types.js +5 -0
- package/ThemeContext.js +0 -250
- package/V3Select/V3Select.js +0 -549
- package/V3Select/index.d.ts +0 -27
- package/V3Textarea/V3Textarea.js +0 -264
- package/V3Textarea/index.d.ts +0 -27
- package/accordion/index.d.ts +0 -28
- package/accordion-group/index.d.ts +0 -16
- package/alert/index.d.ts +0 -51
- package/box/index.d.ts +0 -25
- package/button/Button.stories.js +0 -27
- package/button/index.d.ts +0 -24
- package/card/index.d.ts +0 -22
- package/checkbox/index.d.ts +0 -24
- package/chip/index.d.ts +0 -22
- package/common/RequiredComponent.js +0 -40
- package/date/Date.js +0 -379
- package/date/index.d.ts +0 -27
- package/date-input/index.d.ts +0 -95
- package/dialog/index.d.ts +0 -18
- package/dropdown/index.d.ts +0 -26
- package/file-input/index.d.ts +0 -81
- package/footer/index.d.ts +0 -25
- package/header/index.d.ts +0 -25
- package/heading/index.d.ts +0 -17
- package/input-text/Icons.js +0 -22
- package/input-text/InputText.js +0 -705
- package/input-text/index.d.ts +0 -36
- package/link/index.d.ts +0 -23
- package/number-input/index.d.ts +0 -113
- package/paginator/index.d.ts +0 -20
- package/password-input/index.d.ts +0 -94
- package/progress-bar/index.d.ts +0 -18
- package/radio/Radio.js +0 -209
- package/radio/index.d.ts +0 -23
- package/resultsetTable/index.d.ts +0 -19
- package/select/index.d.ts +0 -131
- package/sidenav/index.d.ts +0 -13
- package/slider/index.d.ts +0 -29
- package/spinner/index.d.ts +0 -17
- package/switch/index.d.ts +0 -24
- package/table/index.d.ts +0 -13
- package/tabs/index.d.ts +0 -19
- package/tag/index.d.ts +0 -24
- package/text-input/index.d.ts +0 -135
- package/textarea/index.d.ts +0 -117
- package/toggle/Toggle.js +0 -220
- package/toggle/index.d.ts +0 -21
- package/toggle-group/index.d.ts +0 -21
- package/upload/Upload.js +0 -205
- package/upload/buttons-upload/ButtonsUpload.js +0 -135
- package/upload/buttons-upload/Icons.js +0 -40
- package/upload/dragAndDropArea/DragAndDropArea.js +0 -329
- package/upload/dragAndDropArea/Icons.js +0 -39
- package/upload/file-upload/FileToUpload.js +0 -189
- package/upload/file-upload/Icons.js +0 -66
- package/upload/files-upload/FilesToUpload.js +0 -123
- package/upload/index.d.ts +0 -15
- package/upload/transaction/Icons.js +0 -160
- package/upload/transaction/Transaction.js +0 -148
- package/upload/transactions/Transactions.js +0 -138
- package/wizard/Icons.js +0 -65
- package/wizard/index.d.ts +0 -18
|
@@ -0,0 +1,124 @@
|
|
|
1
|
+
declare type Space = "xxsmall" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "xxlarge";
|
|
2
|
+
declare type Margin = {
|
|
3
|
+
top?: Space;
|
|
4
|
+
bottom?: Space;
|
|
5
|
+
left?: Space;
|
|
6
|
+
right?: Space;
|
|
7
|
+
};
|
|
8
|
+
declare type Props = {
|
|
9
|
+
/**
|
|
10
|
+
* Text to be placed above the number.
|
|
11
|
+
*/
|
|
12
|
+
label?: string;
|
|
13
|
+
/**
|
|
14
|
+
* Name attribute of the input element.
|
|
15
|
+
*/
|
|
16
|
+
name?: string;
|
|
17
|
+
/**
|
|
18
|
+
* Initial value of the input element, only when it is uncontrolled.
|
|
19
|
+
*/
|
|
20
|
+
defaultValue?: string;
|
|
21
|
+
/**
|
|
22
|
+
* Value of the input element. If undefined, the component will be uncontrolled and the value will be managed internally by the component.
|
|
23
|
+
*/
|
|
24
|
+
value?: string;
|
|
25
|
+
/**
|
|
26
|
+
* Helper text to be placed above the number.
|
|
27
|
+
*/
|
|
28
|
+
helperText?: string;
|
|
29
|
+
/**
|
|
30
|
+
* Text to be put as placeholder of the number.
|
|
31
|
+
*/
|
|
32
|
+
placeholder?: string;
|
|
33
|
+
/**
|
|
34
|
+
* If true, the component will be disabled.
|
|
35
|
+
*/
|
|
36
|
+
disabled?: boolean;
|
|
37
|
+
/**
|
|
38
|
+
* If true, the number will be optional, showing '(Optional)'
|
|
39
|
+
* next to the label. Otherwise, the field will be considered required
|
|
40
|
+
* and an error will be passed as a parameter to the OnBlur and onChange
|
|
41
|
+
* functions when it has not been filled.
|
|
42
|
+
*/
|
|
43
|
+
optional?: boolean;
|
|
44
|
+
/**
|
|
45
|
+
* Prefix to be placed before the number value.
|
|
46
|
+
*/
|
|
47
|
+
prefix?: string;
|
|
48
|
+
/**
|
|
49
|
+
* Suffix to be placed after the number value.
|
|
50
|
+
*/
|
|
51
|
+
suffix?: string;
|
|
52
|
+
/**
|
|
53
|
+
* Minimum value allowed by the number input. If the typed value by the user is
|
|
54
|
+
* lower than min, the onBlur and onChange functions will be called with
|
|
55
|
+
* the current value and an internal error informing that the current
|
|
56
|
+
* value is not correct. If a valid state is reached, the error parameter
|
|
57
|
+
* will not be defined in both events.
|
|
58
|
+
*/
|
|
59
|
+
min?: number;
|
|
60
|
+
/**
|
|
61
|
+
* Maximum value allowed by the number input. If the typed value by the user
|
|
62
|
+
* surpasses max, the onBlur and onChange functions will be called with
|
|
63
|
+
* the current value and an internal error informing that the current
|
|
64
|
+
* value is not correct. If a valid state is reached, the error parameter
|
|
65
|
+
* will not be defined in both events.
|
|
66
|
+
*/
|
|
67
|
+
max?: number;
|
|
68
|
+
/**
|
|
69
|
+
* The step interval to use when using the up and down arrows to adjust the value.
|
|
70
|
+
*/
|
|
71
|
+
step?: number;
|
|
72
|
+
/**
|
|
73
|
+
* This function will be called when the user types within the input
|
|
74
|
+
* element of the component. An object including the current value and
|
|
75
|
+
* the error (if the value entered is not valid) will be passed to this
|
|
76
|
+
* function. If there is no error, error will not be defined.
|
|
77
|
+
*/
|
|
78
|
+
onChange?: (val: {
|
|
79
|
+
value: string;
|
|
80
|
+
error?: string;
|
|
81
|
+
}) => void;
|
|
82
|
+
/**
|
|
83
|
+
* This function will be called when the input element loses the focus.
|
|
84
|
+
* An object including the input value and the error (if the value
|
|
85
|
+
* entered is not valid) will be passed to this function. If there is no error,
|
|
86
|
+
* error will not be defined.
|
|
87
|
+
*/
|
|
88
|
+
onBlur?: (val: {
|
|
89
|
+
value: string;
|
|
90
|
+
error?: string;
|
|
91
|
+
}) => void;
|
|
92
|
+
/**
|
|
93
|
+
* If it is a defined value and also a truthy string, the component will
|
|
94
|
+
* change its appearance, showing the error below the input component. If
|
|
95
|
+
* the defined value is an empty string, it will reserve a space below
|
|
96
|
+
* the component for a future error, but it would not change its look. In
|
|
97
|
+
* case of being undefined or null, both the appearance and the space for
|
|
98
|
+
* the error message would not be modified.
|
|
99
|
+
*/
|
|
100
|
+
error?: string;
|
|
101
|
+
/**
|
|
102
|
+
* HTML autocomplete attribute. Lets the user specify if any permission the user agent has to provide automated assistance in filling out the input value.
|
|
103
|
+
* Its value must be one of all the possible values of the HTML autocomplete attribute: 'on', 'off', 'email', 'username', 'new-password', ...
|
|
104
|
+
*/
|
|
105
|
+
autocomplete?: string;
|
|
106
|
+
/**
|
|
107
|
+
* Size of the margin to be applied to the component ('xxsmall' | 'xsmall' | 'small' | 'medium' | 'large' | 'xlarge' | 'xxlarge').
|
|
108
|
+
* You can pass an object with 'top', 'bottom', 'left' and 'right' properties in order to specify different margin sizes.
|
|
109
|
+
*/
|
|
110
|
+
margin?: Space | Margin;
|
|
111
|
+
/**
|
|
112
|
+
* Size of the component.
|
|
113
|
+
*/
|
|
114
|
+
size?: "small" | "medium" | "large" | "fillParent";
|
|
115
|
+
/**
|
|
116
|
+
* Value of the tabindex attribute.
|
|
117
|
+
*/
|
|
118
|
+
tabIndex?: number;
|
|
119
|
+
};
|
|
120
|
+
/**
|
|
121
|
+
* Reference to the component.
|
|
122
|
+
*/
|
|
123
|
+
export declare type RefType = HTMLDivElement;
|
|
124
|
+
export default Props;
|
package/package.json
CHANGED
|
@@ -1,59 +1,57 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dxc-technology/halstack-react",
|
|
3
|
-
"version": "0.0.0-
|
|
3
|
+
"version": "0.0.0-22b474c",
|
|
4
4
|
"description": "DXC Halstack React components library",
|
|
5
5
|
"repository": "dxc-technology/halstack-react",
|
|
6
|
-
"homepage": "
|
|
6
|
+
"homepage": "https://developer.dxc.com/halstack",
|
|
7
7
|
"license": "Apache-2.0",
|
|
8
8
|
"author": {
|
|
9
9
|
"name": "DXC Technology",
|
|
10
10
|
"email": "DigitalInsurance@dxc.com",
|
|
11
|
-
"url": "https://dxc.com"
|
|
11
|
+
"url": "https://developer.dxc.com"
|
|
12
12
|
},
|
|
13
13
|
"main": "./main.js",
|
|
14
14
|
"types": "./main.d.ts",
|
|
15
15
|
"peerDependencies": {
|
|
16
|
-
"react": "^
|
|
17
|
-
"react-dom": "^
|
|
16
|
+
"react": "^18.x",
|
|
17
|
+
"react-dom": "^18.x",
|
|
18
18
|
"styled-components": "^5.0.1"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@
|
|
22
|
-
"@
|
|
23
|
-
"@
|
|
24
|
-
"@material-ui/lab": "4.0.0-alpha.17",
|
|
25
|
-
"@material-ui/pickers": "3.2.2",
|
|
26
|
-
"@material-ui/styles": "4.0.2",
|
|
27
|
-
"@testing-library/user-event": "^12.6.3",
|
|
21
|
+
"@radix-ui/react-popover": "0.1.6",
|
|
22
|
+
"@types/styled-components": "^5.1.24",
|
|
23
|
+
"@types/uuid": "^8.3.4",
|
|
28
24
|
"color": "^3.1.3",
|
|
29
|
-
"
|
|
30
|
-
"
|
|
31
|
-
"prop-types": "^15.7.2",
|
|
32
|
-
"rgb-hex": "^3.0.0",
|
|
25
|
+
"dayjs": "^1.11.1",
|
|
26
|
+
"slugify": "^1.6.5",
|
|
33
27
|
"uuid": "^8.3.2"
|
|
34
28
|
},
|
|
35
29
|
"scripts": {
|
|
36
|
-
"test": "jest",
|
|
30
|
+
"test": "jest --env=jsdom",
|
|
37
31
|
"test:watch": "npm test -- --watch --coverage",
|
|
38
|
-
"build": "babel src --out-dir ../dist --copy-files --verbose && node ../scripts/build/copy-
|
|
39
|
-
"build:watch": "babel src --watch --out-dir ../dist --copy-files --verbose",
|
|
32
|
+
"build": "babel src --extensions .js,.jsx,.ts,.tsx --out-dir ../dist --copy-files --verbose && node ../scripts/build/copy-package.js && tsc ",
|
|
33
|
+
"build:watch": "babel src --watch --extensions .js,.jsx,.ts,.tsx --out-dir ../dist --copy-files --verbose",
|
|
40
34
|
"storybook": "start-storybook -p 6006",
|
|
41
35
|
"build-storybook": "build-storybook"
|
|
42
36
|
},
|
|
43
37
|
"devDependencies": {
|
|
44
|
-
"@babel/cli": "^7.
|
|
45
|
-
"@babel/core": "^7.
|
|
46
|
-
"@babel/plugin-proposal-
|
|
47
|
-
"@babel/plugin-proposal-
|
|
48
|
-
"@babel/plugin-
|
|
49
|
-
"@babel/
|
|
50
|
-
"@babel/preset-
|
|
51
|
-
"@babel/preset-
|
|
38
|
+
"@babel/cli": "^7.16.8",
|
|
39
|
+
"@babel/core": "^7.16.7",
|
|
40
|
+
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.13.8",
|
|
41
|
+
"@babel/plugin-proposal-optional-chaining": "^7.13.8",
|
|
42
|
+
"@babel/plugin-transform-runtime": "^7.16.8",
|
|
43
|
+
"@babel/preset-env": "^7.16.8",
|
|
44
|
+
"@babel/preset-react": "^7.16.7",
|
|
45
|
+
"@babel/preset-typescript": "^7.16.7",
|
|
52
46
|
"@storybook/addon-actions": "^6.4.9",
|
|
53
47
|
"@storybook/addon-essentials": "^6.4.9",
|
|
54
48
|
"@storybook/addon-links": "^6.4.9",
|
|
55
49
|
"@storybook/react": "^6.4.9",
|
|
56
|
-
"@testing-library
|
|
50
|
+
"@storybook/testing-library": "0.0.7",
|
|
51
|
+
"@testing-library/react": "^13.0.0",
|
|
52
|
+
"@testing-library/user-event": "^13.0.0",
|
|
53
|
+
"@types/color": "^3.0.3",
|
|
54
|
+
"@types/react": "^18.0.18",
|
|
57
55
|
"babel-jest": "^24.8.0",
|
|
58
56
|
"babel-loader": "^8.0.6",
|
|
59
57
|
"chromatic": "^6.3.3",
|
|
@@ -67,17 +65,21 @@
|
|
|
67
65
|
"eslint-plugin-react-hooks": "^4.2.0",
|
|
68
66
|
"eslint-plugin-storybook": "^0.5.5",
|
|
69
67
|
"identity-obj-proxy": "^3.0.0",
|
|
70
|
-
"jest": "^
|
|
71
|
-
"
|
|
72
|
-
"react
|
|
68
|
+
"jest": "^29.2.2",
|
|
69
|
+
"jest-environment-jsdom": "^29.3.1",
|
|
70
|
+
"react": "^18.x",
|
|
71
|
+
"react-dom": "^18.x",
|
|
72
|
+
"react-test-renderer": "^16.8.6",
|
|
73
|
+
"storybook-addon-pseudo-states": "^1.0.0",
|
|
73
74
|
"styled-components": "^5.0.1",
|
|
74
|
-
"
|
|
75
|
+
"typescript": "^4.5.4"
|
|
75
76
|
},
|
|
76
77
|
"jest": {
|
|
77
78
|
"moduleNameMapper": {
|
|
78
79
|
"\\.(css|less|scss|sass)$": "identity-obj-proxy",
|
|
79
80
|
"\\.(svg)$": "<rootDir>/test/mocks/svgMock.js",
|
|
80
|
-
"\\.(png)$": "<rootDir>/test/mocks/pngMock.js"
|
|
81
|
+
"\\.(png)$": "<rootDir>/test/mocks/pngMock.js",
|
|
82
|
+
"^uuid$": "uuid"
|
|
81
83
|
}
|
|
82
84
|
}
|
|
83
85
|
}
|
package/paginator/Icons.js
CHANGED
|
@@ -5,62 +5,50 @@ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefau
|
|
|
5
5
|
Object.defineProperty(exports, "__esModule", {
|
|
6
6
|
value: true
|
|
7
7
|
});
|
|
8
|
-
exports.
|
|
8
|
+
exports.previousIcon = exports.nextIcon = exports.lastIcon = exports.firstIcon = void 0;
|
|
9
9
|
|
|
10
10
|
var _react = _interopRequireDefault(require("react"));
|
|
11
11
|
|
|
12
|
-
var firstIcon = _react["default"].createElement("svg", {
|
|
12
|
+
var firstIcon = /*#__PURE__*/_react["default"].createElement("svg", {
|
|
13
13
|
xmlns: "http://www.w3.org/2000/svg",
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}, _react["default"].createElement("path", {
|
|
18
|
-
|
|
19
|
-
"data-name": "Path 2463",
|
|
20
|
-
d: "M18.41,16.59,13.82,12l4.59-4.59L17,6l-6,6,6,6ZM6,6H8V18H6Z",
|
|
21
|
-
transform: "translate(-6 -6)"
|
|
14
|
+
height: "24",
|
|
15
|
+
width: "24",
|
|
16
|
+
fill: "currentColor"
|
|
17
|
+
}, /*#__PURE__*/_react["default"].createElement("path", {
|
|
18
|
+
d: "M6 18V6h2v12Zm11 0-6-6 6-6 1.4 1.4-4.6 4.6 4.6 4.6Z"
|
|
22
19
|
}));
|
|
23
20
|
|
|
24
21
|
exports.firstIcon = firstIcon;
|
|
25
22
|
|
|
26
|
-
var previousIcon = _react["default"].createElement("svg", {
|
|
23
|
+
var previousIcon = /*#__PURE__*/_react["default"].createElement("svg", {
|
|
27
24
|
xmlns: "http://www.w3.org/2000/svg",
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
}, _react["default"].createElement("path", {
|
|
32
|
-
|
|
33
|
-
"data-name": "Path 2459",
|
|
34
|
-
d: "M15.41,7.41,14,6,8,12l6,6,1.41-1.41L10.83,12Z",
|
|
35
|
-
transform: "translate(-8 -6)"
|
|
25
|
+
height: "24",
|
|
26
|
+
width: "24",
|
|
27
|
+
fill: "currentColor"
|
|
28
|
+
}, /*#__PURE__*/_react["default"].createElement("path", {
|
|
29
|
+
d: "m14 18-6-6 6-6 1.4 1.4-4.6 4.6 4.6 4.6Z"
|
|
36
30
|
}));
|
|
37
31
|
|
|
38
32
|
exports.previousIcon = previousIcon;
|
|
39
33
|
|
|
40
|
-
var nextIcon = _react["default"].createElement("svg", {
|
|
34
|
+
var nextIcon = /*#__PURE__*/_react["default"].createElement("svg", {
|
|
41
35
|
xmlns: "http://www.w3.org/2000/svg",
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
}, _react["default"].createElement("path", {
|
|
46
|
-
|
|
47
|
-
"data-name": "Path 2461",
|
|
48
|
-
d: "M10,6,8.59,7.41,13.17,12,8.59,16.59,10,18l6-6Z",
|
|
49
|
-
transform: "translate(-8.59 -6)"
|
|
36
|
+
height: "24",
|
|
37
|
+
width: "24",
|
|
38
|
+
fill: "currentColor"
|
|
39
|
+
}, /*#__PURE__*/_react["default"].createElement("path", {
|
|
40
|
+
d: "M9.4 18 8 16.6l4.6-4.6L8 7.4 9.4 6l6 6Z"
|
|
50
41
|
}));
|
|
51
42
|
|
|
52
43
|
exports.nextIcon = nextIcon;
|
|
53
44
|
|
|
54
|
-
var lastIcon = _react["default"].createElement("svg", {
|
|
45
|
+
var lastIcon = /*#__PURE__*/_react["default"].createElement("svg", {
|
|
55
46
|
xmlns: "http://www.w3.org/2000/svg",
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
}, _react["default"].createElement("path", {
|
|
60
|
-
|
|
61
|
-
"data-name": "Path 2465",
|
|
62
|
-
d: "M5.59,7.41,10.18,12,5.59,16.59,7,18l6-6L7,6ZM16,6h2V18H16Z",
|
|
63
|
-
transform: "translate(-5.59 -6)"
|
|
47
|
+
height: "24",
|
|
48
|
+
width: "24",
|
|
49
|
+
fill: "currentColor"
|
|
50
|
+
}, /*#__PURE__*/_react["default"].createElement("path", {
|
|
51
|
+
d: "m7 18-1.4-1.4 4.6-4.6-4.6-4.6L7 6l6 6Zm9 0V6h2v12Z"
|
|
64
52
|
}));
|
|
65
53
|
|
|
66
54
|
exports.lastIcon = lastIcon;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import PaginatorPropsType from "./types";
|
|
3
|
+
declare const DxcPaginator: ({ currentPage, itemsPerPage, itemsPerPageOptions, totalItems, showGoToPage, onPageChange, itemsPerPageFunction, tabIndex, }: PaginatorPropsType) => JSX.Element;
|
|
4
|
+
export default DxcPaginator;
|
package/paginator/Paginator.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
-
var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard");
|
|
4
|
-
|
|
5
3
|
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
6
4
|
|
|
5
|
+
var _typeof = require("@babel/runtime/helpers/typeof");
|
|
6
|
+
|
|
7
7
|
Object.defineProperty(exports, "__esModule", {
|
|
8
8
|
value: true
|
|
9
9
|
});
|
|
@@ -11,15 +11,13 @@ exports["default"] = void 0;
|
|
|
11
11
|
|
|
12
12
|
var _taggedTemplateLiteral2 = _interopRequireDefault(require("@babel/runtime/helpers/taggedTemplateLiteral"));
|
|
13
13
|
|
|
14
|
-
var _toConsumableArray2 = _interopRequireDefault(require("@babel/runtime/helpers/toConsumableArray"));
|
|
15
|
-
|
|
16
14
|
var _react = _interopRequireDefault(require("react"));
|
|
17
15
|
|
|
18
16
|
var _styledComponents = _interopRequireWildcard(require("styled-components"));
|
|
19
17
|
|
|
20
|
-
var
|
|
18
|
+
var _useTheme = _interopRequireDefault(require("../useTheme"));
|
|
21
19
|
|
|
22
|
-
var
|
|
20
|
+
var _useTranslatedLabels = _interopRequireDefault(require("../useTranslatedLabels"));
|
|
23
21
|
|
|
24
22
|
var _Button = _interopRequireDefault(require("../button/Button"));
|
|
25
23
|
|
|
@@ -27,97 +25,13 @@ var _Select = _interopRequireDefault(require("../select/Select"));
|
|
|
27
25
|
|
|
28
26
|
var _Icons = require("./Icons");
|
|
29
27
|
|
|
30
|
-
var _BackgroundColorContext = require("../BackgroundColorContext
|
|
31
|
-
|
|
32
|
-
function _templateObject9() {
|
|
33
|
-
var data = (0, _taggedTemplateLiteral2["default"])([""]);
|
|
34
|
-
|
|
35
|
-
_templateObject9 = function _templateObject9() {
|
|
36
|
-
return data;
|
|
37
|
-
};
|
|
38
|
-
|
|
39
|
-
return data;
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
function _templateObject8() {
|
|
43
|
-
var data = (0, _taggedTemplateLiteral2["default"])(["\n display: flex;\n align-items: center;\n margin-right: ", ";\n margin-left: ", ";\n\n label {\n height: 0px;\n }\n label + .MuiInput-formControl {\n margin-top: 0px;\n }\n"]);
|
|
44
|
-
|
|
45
|
-
_templateObject8 = function _templateObject8() {
|
|
46
|
-
return data;
|
|
47
|
-
};
|
|
48
|
-
|
|
49
|
-
return data;
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
function _templateObject7() {
|
|
53
|
-
var data = (0, _taggedTemplateLiteral2["default"])(["\n display: flex;\n width: 100%;\n justify-content: flex-end;\n align-items: center;\n margin: 0 ", " 0 ", ";\n"]);
|
|
54
|
-
|
|
55
|
-
_templateObject7 = function _templateObject7() {
|
|
56
|
-
return data;
|
|
57
|
-
};
|
|
58
|
-
|
|
59
|
-
return data;
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
function _templateObject6() {
|
|
63
|
-
var data = (0, _taggedTemplateLiteral2["default"])(["\n margin-right: ", ";\n margin-left: ", ";\n"]);
|
|
64
|
-
|
|
65
|
-
_templateObject6 = function _templateObject6() {
|
|
66
|
-
return data;
|
|
67
|
-
};
|
|
68
|
-
|
|
69
|
-
return data;
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
function _templateObject5() {
|
|
73
|
-
var data = (0, _taggedTemplateLiteral2["default"])(["\n margin-right: 10px;\n margin-left: 10px;\n"]);
|
|
74
|
-
|
|
75
|
-
_templateObject5 = function _templateObject5() {
|
|
76
|
-
return data;
|
|
77
|
-
};
|
|
78
|
-
|
|
79
|
-
return data;
|
|
80
|
-
}
|
|
81
|
-
|
|
82
|
-
function _templateObject4() {
|
|
83
|
-
var data = (0, _taggedTemplateLiteral2["default"])(["\n margin-right: 15px;\n"]);
|
|
84
|
-
|
|
85
|
-
_templateObject4 = function _templateObject4() {
|
|
86
|
-
return data;
|
|
87
|
-
};
|
|
88
|
-
|
|
89
|
-
return data;
|
|
90
|
-
}
|
|
91
|
-
|
|
92
|
-
function _templateObject3() {
|
|
93
|
-
var data = (0, _taggedTemplateLiteral2["default"])(["\n display: flex;\n align-items: center;\n margin-right: ", ";\n margin-left: ", ";\n\n label {\n height: 0px;\n }\n label + .MuiInput-formControl {\n margin-top: 0px;\n }\n"]);
|
|
28
|
+
var _BackgroundColorContext = require("../BackgroundColorContext");
|
|
94
29
|
|
|
95
|
-
|
|
96
|
-
return data;
|
|
97
|
-
};
|
|
30
|
+
var _templateObject, _templateObject2, _templateObject3, _templateObject4, _templateObject5, _templateObject6, _templateObject7, _templateObject8;
|
|
98
31
|
|
|
99
|
-
|
|
100
|
-
}
|
|
32
|
+
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
101
33
|
|
|
102
|
-
function
|
|
103
|
-
var data = (0, _taggedTemplateLiteral2["default"])(["\n max-width: 100px;\n"]);
|
|
104
|
-
|
|
105
|
-
_templateObject2 = function _templateObject2() {
|
|
106
|
-
return data;
|
|
107
|
-
};
|
|
108
|
-
|
|
109
|
-
return data;
|
|
110
|
-
}
|
|
111
|
-
|
|
112
|
-
function _templateObject() {
|
|
113
|
-
var data = (0, _taggedTemplateLiteral2["default"])(["\n display: flex;\n height: ", ";\n width: ", ";\n font-family: ", ";\n font-size: ", ";\n font-weight: ", ";\n font-style: ", ";\n text-transform: ", ";\n background-color: ", ";\n color: ", ";\n\n button {\n &:disabled {\n background-color: transparent !important;\n opacity: 0.3 !important;\n }\n }\n"]);
|
|
114
|
-
|
|
115
|
-
_templateObject = function _templateObject() {
|
|
116
|
-
return data;
|
|
117
|
-
};
|
|
118
|
-
|
|
119
|
-
return data;
|
|
120
|
-
}
|
|
34
|
+
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
121
35
|
|
|
122
36
|
var DxcPaginator = function DxcPaginator(_ref) {
|
|
123
37
|
var _ref$currentPage = _ref.currentPage,
|
|
@@ -137,13 +51,12 @@ var DxcPaginator = function DxcPaginator(_ref) {
|
|
|
137
51
|
var minItemsPerPage = currentPageInternal === 1 || currentPageInternal === 0 ? currentPageInternal : (currentPageInternal - 1) * itemsPerPage + 1;
|
|
138
52
|
var maxItemsPerPage = minItemsPerPage - 1 + itemsPerPage > totalItems ? totalItems : minItemsPerPage - 1 + itemsPerPage;
|
|
139
53
|
var colorsTheme = (0, _useTheme["default"])();
|
|
140
|
-
|
|
54
|
+
var translatedLabels = (0, _useTranslatedLabels["default"])();
|
|
55
|
+
return /*#__PURE__*/_react["default"].createElement(_styledComponents.ThemeProvider, {
|
|
141
56
|
theme: colorsTheme.paginator
|
|
142
|
-
}, _react["default"].createElement(_BackgroundColorContext.BackgroundColorProvider, {
|
|
57
|
+
}, /*#__PURE__*/_react["default"].createElement(_BackgroundColorContext.BackgroundColorProvider, {
|
|
143
58
|
color: colorsTheme.paginator.backgroundColor
|
|
144
|
-
}, _react["default"].createElement(DxcPaginatorContainer, {
|
|
145
|
-
disabled: currentPageInternal === 1
|
|
146
|
-
}, _react["default"].createElement(LabelsContainer, null, itemsPerPageOptions && _react["default"].createElement(ItemsPageContainer, null, _react["default"].createElement(ItemsLabel, null, "Items per page "), _react["default"].createElement(SelectContainer, null, _react["default"].createElement(_Select["default"], {
|
|
59
|
+
}, /*#__PURE__*/_react["default"].createElement(DxcPaginatorContainer, null, /*#__PURE__*/_react["default"].createElement(LabelsContainer, null, itemsPerPageOptions && /*#__PURE__*/_react["default"].createElement(ItemsPageContainer, null, /*#__PURE__*/_react["default"].createElement(ItemsLabel, null, translatedLabels.paginator.itemsPerPageText), /*#__PURE__*/_react["default"].createElement(SelectContainer, null, /*#__PURE__*/_react["default"].createElement(_Select["default"], {
|
|
147
60
|
options: itemsPerPageOptions.map(function (num) {
|
|
148
61
|
return {
|
|
149
62
|
label: num.toString(),
|
|
@@ -155,38 +68,25 @@ var DxcPaginator = function DxcPaginator(_ref) {
|
|
|
155
68
|
},
|
|
156
69
|
value: itemsPerPage.toString(),
|
|
157
70
|
size: "fillParent",
|
|
158
|
-
margin: {
|
|
159
|
-
top: "xsmall"
|
|
160
|
-
},
|
|
161
71
|
tabIndex: tabIndex
|
|
162
|
-
}))), _react["default"].createElement(TotalItemsContainer, null, minItemsPerPage,
|
|
163
|
-
size: "small",
|
|
72
|
+
}))), /*#__PURE__*/_react["default"].createElement(TotalItemsContainer, null, translatedLabels.paginator.minToMaxOfText(minItemsPerPage, maxItemsPerPage, totalItems)), onPageChange && /*#__PURE__*/_react["default"].createElement(_Button["default"], {
|
|
164
73
|
mode: "secondary",
|
|
165
74
|
disabled: currentPageInternal === 1 || currentPageInternal === 0,
|
|
166
|
-
margin: {
|
|
167
|
-
left: "xxsmall",
|
|
168
|
-
right: "xxsmall"
|
|
169
|
-
},
|
|
170
75
|
icon: _Icons.firstIcon,
|
|
171
76
|
tabIndex: tabIndex,
|
|
172
77
|
onClick: function onClick() {
|
|
173
78
|
onPageChange(1);
|
|
174
79
|
}
|
|
175
|
-
}), onPageChange && _react["default"].createElement(_Button["default"], {
|
|
176
|
-
size: "small",
|
|
80
|
+
}), onPageChange && /*#__PURE__*/_react["default"].createElement(_Button["default"], {
|
|
177
81
|
mode: "secondary",
|
|
178
82
|
disabled: currentPageInternal === 1 || currentPageInternal === 0,
|
|
179
|
-
margin: {
|
|
180
|
-
left: "xxsmall",
|
|
181
|
-
right: "xxsmall"
|
|
182
|
-
},
|
|
183
83
|
icon: _Icons.previousIcon,
|
|
184
84
|
tabIndex: tabIndex,
|
|
185
85
|
onClick: function onClick() {
|
|
186
86
|
onPageChange(currentPage - 1);
|
|
187
87
|
}
|
|
188
|
-
}), showGoToPage
|
|
189
|
-
options: (
|
|
88
|
+
}), showGoToPage ? /*#__PURE__*/_react["default"].createElement(PageToSelectContainer, null, /*#__PURE__*/_react["default"].createElement(GoToLabel, null, translatedLabels.paginator.goToPageText, " "), /*#__PURE__*/_react["default"].createElement(SelectContainer, null, /*#__PURE__*/_react["default"].createElement(_Select["default"], {
|
|
89
|
+
options: Array.from(Array(totalPages), function (e, num) {
|
|
190
90
|
return {
|
|
191
91
|
label: (num + 1).toString(),
|
|
192
92
|
value: (num + 1).toString()
|
|
@@ -197,31 +97,18 @@ var DxcPaginator = function DxcPaginator(_ref) {
|
|
|
197
97
|
},
|
|
198
98
|
value: currentPage.toString(),
|
|
199
99
|
size: "fillParent",
|
|
200
|
-
margin: {
|
|
201
|
-
top: "xsmall"
|
|
202
|
-
},
|
|
203
100
|
tabIndex: tabIndex
|
|
204
|
-
})))
|
|
205
|
-
size: "small",
|
|
101
|
+
}))) : /*#__PURE__*/_react["default"].createElement("span", null, translatedLabels.paginator.pageOfText(currentPageInternal, totalPages)), onPageChange && /*#__PURE__*/_react["default"].createElement(_Button["default"], {
|
|
206
102
|
mode: "secondary",
|
|
207
103
|
disabled: currentPageInternal === totalPages,
|
|
208
|
-
margin: {
|
|
209
|
-
left: "xxsmall",
|
|
210
|
-
right: "xxsmall"
|
|
211
|
-
},
|
|
212
104
|
icon: _Icons.nextIcon,
|
|
213
105
|
tabIndex: tabIndex,
|
|
214
106
|
onClick: function onClick() {
|
|
215
107
|
onPageChange(currentPage + 1);
|
|
216
108
|
}
|
|
217
|
-
}), onPageChange && _react["default"].createElement(_Button["default"], {
|
|
218
|
-
size: "small",
|
|
109
|
+
}), onPageChange && /*#__PURE__*/_react["default"].createElement(_Button["default"], {
|
|
219
110
|
mode: "secondary",
|
|
220
111
|
disabled: currentPageInternal === totalPages,
|
|
221
|
-
margin: {
|
|
222
|
-
left: "xxsmall",
|
|
223
|
-
right: "xxsmall"
|
|
224
|
-
},
|
|
225
112
|
icon: _Icons.lastIcon,
|
|
226
113
|
tabIndex: tabIndex,
|
|
227
114
|
onClick: function onClick() {
|
|
@@ -230,11 +117,7 @@ var DxcPaginator = function DxcPaginator(_ref) {
|
|
|
230
117
|
})))));
|
|
231
118
|
};
|
|
232
119
|
|
|
233
|
-
var DxcPaginatorContainer = _styledComponents["default"].div(_templateObject(), function (props) {
|
|
234
|
-
return props.theme.height;
|
|
235
|
-
}, function (props) {
|
|
236
|
-
return props.theme.width;
|
|
237
|
-
}, function (props) {
|
|
120
|
+
var DxcPaginatorContainer = _styledComponents["default"].div(_templateObject || (_templateObject = (0, _taggedTemplateLiteral2["default"])(["\n display: flex;\n font-family: ", ";\n font-size: ", ";\n font-weight: ", ";\n font-style: ", ";\n text-transform: ", ";\n background-color: ", ";\n color: ", ";\n padding: ", " ", ";\n\n button {\n &:disabled {\n background-color: transparent !important;\n opacity: 0.3 !important;\n }\n }\n"])), function (props) {
|
|
238
121
|
return props.theme.fontFamily;
|
|
239
122
|
}, function (props) {
|
|
240
123
|
return props.theme.fontSize;
|
|
@@ -248,58 +131,33 @@ var DxcPaginatorContainer = _styledComponents["default"].div(_templateObject(),
|
|
|
248
131
|
return props.theme.backgroundColor;
|
|
249
132
|
}, function (props) {
|
|
250
133
|
return props.theme.fontColor;
|
|
134
|
+
}, function (props) {
|
|
135
|
+
return props.theme.verticalPadding;
|
|
136
|
+
}, function (props) {
|
|
137
|
+
return props.theme.horizontalPadding;
|
|
251
138
|
});
|
|
252
139
|
|
|
253
|
-
var SelectContainer = _styledComponents["default"].div(_templateObject2());
|
|
140
|
+
var SelectContainer = _styledComponents["default"].div(_templateObject2 || (_templateObject2 = (0, _taggedTemplateLiteral2["default"])(["\n min-width: 5.25rem;\n"])));
|
|
254
141
|
|
|
255
|
-
var ItemsPageContainer = _styledComponents["default"].span(_templateObject3(), function (props) {
|
|
142
|
+
var ItemsPageContainer = _styledComponents["default"].span(_templateObject3 || (_templateObject3 = (0, _taggedTemplateLiteral2["default"])(["\n display: flex;\n align-items: center;\n margin-right: ", ";\n margin-left: ", ";\n"])), function (props) {
|
|
256
143
|
return props.theme.itemsPerPageSelectorMarginRight;
|
|
257
144
|
}, function (props) {
|
|
258
145
|
return props.theme.itemsPerPageSelectorMarginLeft;
|
|
259
146
|
});
|
|
260
147
|
|
|
261
|
-
var ItemsLabel = _styledComponents["default"].span(_templateObject4());
|
|
148
|
+
var ItemsLabel = _styledComponents["default"].span(_templateObject4 || (_templateObject4 = (0, _taggedTemplateLiteral2["default"])(["\n margin-right: 0.5rem;\n"])));
|
|
262
149
|
|
|
263
|
-
var GoToLabel = _styledComponents["default"].span(_templateObject5());
|
|
150
|
+
var GoToLabel = _styledComponents["default"].span(_templateObject5 || (_templateObject5 = (0, _taggedTemplateLiteral2["default"])(["\n margin-right: 0.5rem;\n margin-left: 0.5rem;\n"])));
|
|
264
151
|
|
|
265
|
-
var TotalItemsContainer = _styledComponents["default"].span(_templateObject6(), function (props) {
|
|
152
|
+
var TotalItemsContainer = _styledComponents["default"].span(_templateObject6 || (_templateObject6 = (0, _taggedTemplateLiteral2["default"])(["\n margin-right: ", ";\n margin-left: ", ";\n"])), function (props) {
|
|
266
153
|
return props.theme.totalItemsContainerMarginRight;
|
|
267
154
|
}, function (props) {
|
|
268
155
|
return props.theme.totalItemsContainerMarginLeft;
|
|
269
156
|
});
|
|
270
157
|
|
|
271
|
-
var LabelsContainer = _styledComponents["default"].div(_templateObject7(
|
|
272
|
-
return props.theme.marginRight;
|
|
273
|
-
}, function (props) {
|
|
274
|
-
return props.theme.marginLeft;
|
|
275
|
-
});
|
|
158
|
+
var LabelsContainer = _styledComponents["default"].div(_templateObject7 || (_templateObject7 = (0, _taggedTemplateLiteral2["default"])(["\n display: flex;\n gap: 0.5rem;\n width: 100%;\n justify-content: flex-end;\n align-items: center;\n"])));
|
|
276
159
|
|
|
277
|
-
var PageToSelectContainer = _styledComponents["default"].span(_templateObject8(
|
|
278
|
-
return props.theme.pageSelectorMarginRight;
|
|
279
|
-
}, function (props) {
|
|
280
|
-
return props.theme.pageSelectorMarginLeft;
|
|
281
|
-
});
|
|
282
|
-
|
|
283
|
-
var TextContainer = _styledComponents["default"].span(_templateObject9());
|
|
160
|
+
var PageToSelectContainer = _styledComponents["default"].span(_templateObject8 || (_templateObject8 = (0, _taggedTemplateLiteral2["default"])(["\n display: flex;\n align-items: center;\n margin-right: 0.5rem;\n"])));
|
|
284
161
|
|
|
285
|
-
DxcPaginator.propTypes = {
|
|
286
|
-
currentPage: _propTypes["default"].number,
|
|
287
|
-
itemsPerPage: _propTypes["default"].number,
|
|
288
|
-
itemsPerPageOptions: _propTypes["default"].arrayOf(_propTypes["default"].number),
|
|
289
|
-
totalItems: _propTypes["default"].number.isRequired,
|
|
290
|
-
showGoToPage: _propTypes["default"].bool,
|
|
291
|
-
onPageChange: _propTypes["default"].func,
|
|
292
|
-
itemsPerPageFunction: _propTypes["default"].func,
|
|
293
|
-
tabIndex: _propTypes["default"].number
|
|
294
|
-
};
|
|
295
|
-
DxcPaginator.defaultProps = {
|
|
296
|
-
currentPage: 1,
|
|
297
|
-
itemsPerPage: 5,
|
|
298
|
-
itemsPerPageOptions: null,
|
|
299
|
-
showGoToPage: false,
|
|
300
|
-
onPageChange: null,
|
|
301
|
-
itemsPerPageFunction: null,
|
|
302
|
-
tabIndex: 0
|
|
303
|
-
};
|
|
304
162
|
var _default = DxcPaginator;
|
|
305
163
|
exports["default"] = _default;
|