@ndlib/component-library 1.0.41 → 1.0.42
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/elements/AlertsV2/AlertV2.stories.d.ts +10 -0
- package/dist/components/elements/AlertsV2/AlertV2.stories.js +51 -0
- package/dist/components/elements/AlertsV2/AlertsV2.module.css +49 -0
- package/dist/components/elements/AlertsV2/AlertsV2.stories.d.ts +7 -0
- package/dist/components/elements/AlertsV2/AlertsV2.stories.js +17 -0
- package/dist/components/elements/AlertsV2/index.d.ts +15 -0
- package/dist/components/elements/AlertsV2/index.js +50 -0
- package/dist/components/elements/BlockQuoteV2/BlockQuoteV2.module.css +6 -0
- package/dist/components/elements/BlockQuoteV2/index.d.ts +4 -0
- package/dist/components/elements/BlockQuoteV2/index.js +21 -0
- package/dist/components/elements/BrandingBarV2/BrandingBarV2.module.css +68 -0
- package/dist/components/elements/BrandingBarV2/BrandingBarV2.stories.d.ts +6 -0
- package/dist/components/elements/BrandingBarV2/BrandingBarV2.stories.js +13 -0
- package/dist/components/elements/BrandingBarV2/index.d.ts +2 -0
- package/dist/components/elements/BrandingBarV2/index.js +10 -0
- package/dist/components/elements/CaptionV2/index.d.ts +2 -0
- package/dist/components/elements/CaptionV2/index.js +22 -0
- package/dist/components/elements/DatePickerV2/DatePickerV2.stories.d.ts +8 -0
- package/dist/components/elements/DatePickerV2/DatePickerV2.stories.js +53 -0
- package/dist/components/elements/DatePickerV2/index.d.ts +23 -0
- package/dist/components/elements/DatePickerV2/index.js +57 -0
- package/dist/components/elements/DropdownV2/DropdownV2.stories.d.ts +8 -0
- package/dist/components/elements/DropdownV2/DropdownV2.stories.js +26 -0
- package/dist/components/elements/DropdownV2/index.d.ts +26 -0
- package/dist/components/elements/DropdownV2/index.js +81 -0
- package/dist/components/elements/InlineV2/InlineV2.stories.d.ts +6 -0
- package/dist/components/elements/InlineV2/InlineV2.stories.js +14 -0
- package/dist/components/elements/InlineV2/index.d.ts +6 -0
- package/dist/components/elements/InlineV2/index.js +23 -0
- package/dist/components/elements/ListV2/ListV2.stories.d.ts +10 -0
- package/dist/components/elements/ListV2/ListV2.stories.js +39 -0
- package/dist/components/elements/ListV2/index.d.ts +27 -0
- package/dist/components/elements/ListV2/index.js +102 -0
- package/dist/components/elements/MarkdownV2/MarkdownV2.module.css +39 -0
- package/dist/components/elements/MarkdownV2/MarkdownV2.stories.d.ts +10 -0
- package/dist/components/elements/MarkdownV2/MarkdownV2.stories.js +130 -0
- package/dist/components/elements/MarkdownV2/index.d.ts +11 -0
- package/dist/components/elements/MarkdownV2/index.js +123 -0
- package/dist/components/elements/MonthPickerV2/MonthPickerV2.stories.d.ts +7 -0
- package/dist/components/elements/MonthPickerV2/MonthPickerV2.stories.js +33 -0
- package/dist/components/elements/MonthPickerV2/index.d.ts +14 -0
- package/dist/components/elements/MonthPickerV2/index.js +26 -0
- package/dist/components/elements/PillV2/PillV2.module.css +29 -0
- package/dist/components/elements/PillV2/PillV2.stories.d.ts +8 -0
- package/dist/components/elements/PillV2/PillV2.stories.js +42 -0
- package/dist/components/elements/PillV2/index.d.ts +21 -0
- package/dist/components/elements/PillV2/index.js +79 -0
- package/dist/components/elements/RadioGroupV2/RadioGroupV2.stories.d.ts +7 -0
- package/dist/components/elements/RadioGroupV2/RadioGroupV2.stories.js +28 -0
- package/dist/components/elements/RadioGroupV2/index.d.ts +16 -0
- package/dist/components/elements/RadioGroupV2/index.js +27 -0
- package/dist/components/elements/RadioV2/RadioV2.module.css +17 -0
- package/dist/components/elements/RadioV2/RadioV2.stories.d.ts +6 -0
- package/dist/components/elements/RadioV2/RadioV2.stories.js +19 -0
- package/dist/components/elements/RadioV2/index.d.ts +8 -0
- package/dist/components/elements/RadioV2/index.js +23 -0
- package/dist/components/elements/TabListV2/TabListV2.module.css +21 -0
- package/dist/components/elements/TabListV2/TabListV2.stories.d.ts +6 -0
- package/dist/components/elements/TabListV2/TabListV2.stories.js +14 -0
- package/dist/components/elements/TabListV2/example.d.ts +7 -0
- package/dist/components/elements/TabListV2/example.js +36 -0
- package/dist/components/elements/TabListV2/index.d.ts +10 -0
- package/dist/components/elements/TabListV2/index.js +31 -0
- package/dist/index.d.ts +11 -0
- package/dist/index.js +11 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -4,8 +4,10 @@ export { COLOR, colors } from './theme/colors';
|
|
|
4
4
|
export { TYPOGRAPHY_TYPE, FONT, FONT_SIZE, FONT_WEIGHT, LINE_HEIGHT, } from './theme/typography';
|
|
5
5
|
export { GlobalStyles } from './theme/GlobalStyles';
|
|
6
6
|
export { Alert, Alerts } from './components/elements/Alerts';
|
|
7
|
+
export { AlertV2, AlertsV2 } from './components/elements/AlertsV2';
|
|
7
8
|
export { ArrowLink } from './components/elements/ArrowLink';
|
|
8
9
|
export { BrandingBar } from './components/elements/BrandingBar';
|
|
10
|
+
export { BrandingBarV2 } from './components/elements/BrandingBarV2';
|
|
9
11
|
export { Button, BUTTON_SIZE, BUTTON_TYPE, LinkButton, } from './components/elements/Button';
|
|
10
12
|
export { ButtonV2, BUTTONV2_SIZE, BUTTONV2_TYPE, LinkButtonV2, } from './components/elements/ButtonV2';
|
|
11
13
|
export { Heading, HEADING_SIZE } from './components/elements/Heading';
|
|
@@ -17,6 +19,7 @@ export { ParagraphV2, PARAGRAPHV2_SIZE, } from './components/elements/ParagraphV
|
|
|
17
19
|
export { Group, useGroup, GROUP_TYPE } from './components/elements/Group';
|
|
18
20
|
export { GroupV2, useGroupV2, GROUPV2_TYPE, } from './components/elements/GroupV2';
|
|
19
21
|
export { Markdown } from './components/elements/Markdown';
|
|
22
|
+
export { MarkdownV2 } from './components/elements/MarkdownV2';
|
|
20
23
|
export { Box } from './components/elements/layout/Box';
|
|
21
24
|
export { BoxV2 } from './components/elements/BoxV2';
|
|
22
25
|
export { Column } from './components/elements/layout/Column';
|
|
@@ -29,25 +32,33 @@ export { INPUTV2_SIZE, TextInputV2 } from './components/elements/TextInputV2';
|
|
|
29
32
|
export { Select } from './components/elements/Select';
|
|
30
33
|
export { SelectV2 } from './components/elements/SelectV2';
|
|
31
34
|
export { DatePicker } from './components/elements/DatePicker';
|
|
35
|
+
export { DatePickerV2 } from './components/elements/DatePickerV2';
|
|
32
36
|
export { MonthPicker } from './components/elements/MonthPicker';
|
|
37
|
+
export { MonthPickerV2 } from './components/elements/MonthPickerV2';
|
|
33
38
|
export { Checkbox } from './components/elements/Checkbox';
|
|
34
39
|
export { CheckboxV2 } from './components/elements/CheckboxV2';
|
|
35
40
|
export { CheckboxGroup } from './components/elements/CheckboxGroup';
|
|
36
41
|
export { CheckboxGroupV2 } from './components/elements/CheckboxGroupV2';
|
|
37
42
|
export { ConsentBanner } from './components/elements/ConsentBanner';
|
|
38
43
|
export { Radio } from './components/elements/Radio';
|
|
44
|
+
export { RadioV2 } from './components/elements/RadioV2';
|
|
39
45
|
export { RadioGroup } from './components/elements/RadioGroup';
|
|
46
|
+
export { RadioGroupV2 } from './components/elements/RadioGroupV2';
|
|
40
47
|
export { List, ListItem, LIST_SIZE } from './components/elements/List';
|
|
48
|
+
export { ListV2, ListItemV2, LISTV2_SIZE } from './components/elements/ListV2';
|
|
41
49
|
export { ReadMore } from './components/elements/ReadMore';
|
|
42
50
|
export { ReadMoreV2 } from './components/elements/ReadMoreV2';
|
|
43
51
|
export { Icon } from './components/elements/Icon';
|
|
44
52
|
export { IconV2 } from './components/elements/IconV2';
|
|
45
53
|
export { Dropdown } from './components/elements/Dropdown';
|
|
54
|
+
export { DropdownV2 } from './components/elements/DropdownV2';
|
|
46
55
|
export { Spinner, SPINNER_SIZE } from './components/elements/Spinner';
|
|
47
56
|
export { SpinnerV2, SPINNERV2_SIZE } from './components/elements/SpinnerV2';
|
|
48
57
|
export { Pill, PILL_SIZE, PILL_TYPE } from './components/elements/Pill';
|
|
58
|
+
export { PillV2, PILLV2_SIZE, PILLV2_TYPE } from './components/elements/PillV2';
|
|
49
59
|
export { Table, TableColumn } from './components/elements/Table';
|
|
50
60
|
export { TabList, Tab } from './components/elements/TabList';
|
|
61
|
+
export { TabListV2, TabV2 } from './components/elements/TabListV2';
|
|
51
62
|
export { RawHtml } from './components/elements/RawHtml';
|
|
52
63
|
export { ListBoxV2 } from './components/elements/ListBoxV2';
|
|
53
64
|
export { Card, CARD_SIZE, CARD_LAYOUT } from './components/composites/Card';
|