@adres/adrec-dls 0.1.0

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 (46) hide show
  1. package/README.md +38 -0
  2. package/dist-lib/components/ApplicationHistory/ApplicationHistory.d.ts +30 -0
  3. package/dist-lib/components/Badge/Badge.d.ts +27 -0
  4. package/dist-lib/components/Button/Button.d.ts +34 -0
  5. package/dist-lib/components/CardTitle/CardTitle.d.ts +39 -0
  6. package/dist-lib/components/Checkbox/Checkbox.d.ts +20 -0
  7. package/dist-lib/components/DataTable/DataTable.d.ts +28 -0
  8. package/dist-lib/components/DescriptionList/DescriptionList.d.ts +21 -0
  9. package/dist-lib/components/Drawer/Drawer.d.ts +27 -0
  10. package/dist-lib/components/ImagePlaceholder/ImagePlaceholder.d.ts +16 -0
  11. package/dist-lib/components/InputField/InputField.d.ts +45 -0
  12. package/dist-lib/components/LinkRow/LinkRow.d.ts +17 -0
  13. package/dist-lib/components/Modal/Modal.d.ts +13 -0
  14. package/dist-lib/components/Notification/Notification.d.ts +16 -0
  15. package/dist-lib/components/Panel/Panel.d.ts +12 -0
  16. package/dist-lib/components/Popover/Popover.d.ts +29 -0
  17. package/dist-lib/components/RadioGroup/RadioGroup.d.ts +25 -0
  18. package/dist-lib/components/ScreenBottomActions/ScreenBottomActions.d.ts +29 -0
  19. package/dist-lib/components/SectionHeader/SectionHeader.d.ts +20 -0
  20. package/dist-lib/components/Select/Select.d.ts +33 -0
  21. package/dist-lib/components/SidePanel/SidePanel.d.ts +25 -0
  22. package/dist-lib/components/StatusIndicator/StatusIndicator.d.ts +8 -0
  23. package/dist-lib/components/Textarea/Textarea.d.ts +28 -0
  24. package/dist-lib/icons/Aed.d.ts +3 -0
  25. package/dist-lib/icons/AlertCircle.d.ts +3 -0
  26. package/dist-lib/icons/Asterisk.d.ts +3 -0
  27. package/dist-lib/icons/Bell.d.ts +3 -0
  28. package/dist-lib/icons/Calendar.d.ts +3 -0
  29. package/dist-lib/icons/CancelSolid.d.ts +4 -0
  30. package/dist-lib/icons/CheckCircle.d.ts +3 -0
  31. package/dist-lib/icons/CheckSolid.d.ts +3 -0
  32. package/dist-lib/icons/ChevronDown.d.ts +3 -0
  33. package/dist-lib/icons/ChevronRight.d.ts +3 -0
  34. package/dist-lib/icons/HelpCircle.d.ts +3 -0
  35. package/dist-lib/icons/Image.d.ts +3 -0
  36. package/dist-lib/icons/InfoCircle.d.ts +3 -0
  37. package/dist-lib/icons/Plus.d.ts +3 -0
  38. package/dist-lib/icons/Question.d.ts +3 -0
  39. package/dist-lib/icons/User.d.ts +3 -0
  40. package/dist-lib/icons/WarningTriangle.d.ts +3 -0
  41. package/dist-lib/icons/index.d.ts +17 -0
  42. package/dist-lib/index.d.ts +22 -0
  43. package/dist-lib/index.js +6706 -0
  44. package/dist-lib/styles/tv.d.ts +1 -0
  45. package/dist-lib/tokens.css +441 -0
  46. package/package.json +63 -0
@@ -0,0 +1,3 @@
1
+ export declare const CheckCircle: ({ className }: {
2
+ className?: string;
3
+ }) => import("react").JSX.Element;
@@ -0,0 +1,3 @@
1
+ export declare const CheckSolid: ({ className }: {
2
+ className?: string;
3
+ }) => import("react").JSX.Element;
@@ -0,0 +1,3 @@
1
+ export declare const ChevronDown: ({ className }: {
2
+ className?: string;
3
+ }) => import("react").JSX.Element;
@@ -0,0 +1,3 @@
1
+ export declare const ChevronRight: ({ className }: {
2
+ className?: string;
3
+ }) => import("react").JSX.Element;
@@ -0,0 +1,3 @@
1
+ export declare const HelpCircle: ({ className }: {
2
+ className?: string;
3
+ }) => import("react").JSX.Element;
@@ -0,0 +1,3 @@
1
+ export declare const Image: ({ className }: {
2
+ className?: string;
3
+ }) => import("react").JSX.Element;
@@ -0,0 +1,3 @@
1
+ export declare const InfoCircle: ({ className }: {
2
+ className?: string;
3
+ }) => import("react").JSX.Element;
@@ -0,0 +1,3 @@
1
+ export declare const Plus: ({ className }: {
2
+ className?: string;
3
+ }) => import("react").JSX.Element;
@@ -0,0 +1,3 @@
1
+ export declare const Question: ({ className }: {
2
+ className?: string;
3
+ }) => import("react").JSX.Element;
@@ -0,0 +1,3 @@
1
+ export declare const User: ({ className }: {
2
+ className?: string;
3
+ }) => import("react").JSX.Element;
@@ -0,0 +1,3 @@
1
+ export declare const WarningTriangle: ({ className }: {
2
+ className?: string;
3
+ }) => import("react").JSX.Element;
@@ -0,0 +1,17 @@
1
+ export { Aed } from './Aed';
2
+ export { AlertCircle } from './AlertCircle';
3
+ export { Asterisk } from './Asterisk';
4
+ export { Bell } from './Bell';
5
+ export { Calendar } from './Calendar';
6
+ export { CancelSolid } from './CancelSolid';
7
+ export { CheckCircle } from './CheckCircle';
8
+ export { CheckSolid } from './CheckSolid';
9
+ export { ChevronDown } from './ChevronDown';
10
+ export { ChevronRight } from './ChevronRight';
11
+ export { HelpCircle } from './HelpCircle';
12
+ export { Image } from './Image';
13
+ export { InfoCircle } from './InfoCircle';
14
+ export { Plus } from './Plus';
15
+ export { Question } from './Question';
16
+ export { User } from './User';
17
+ export { WarningTriangle } from './WarningTriangle';
@@ -0,0 +1,22 @@
1
+ export * from './components/ApplicationHistory/ApplicationHistory';
2
+ export * from './components/Badge/Badge';
3
+ export * from './components/Button/Button';
4
+ export * from './components/CardTitle/CardTitle';
5
+ export * from './components/Checkbox/Checkbox';
6
+ export * from './components/DataTable/DataTable';
7
+ export * from './components/DescriptionList/DescriptionList';
8
+ export * from './components/Drawer/Drawer';
9
+ export * from './components/ImagePlaceholder/ImagePlaceholder';
10
+ export * from './components/InputField/InputField';
11
+ export * from './components/LinkRow/LinkRow';
12
+ export * from './components/Modal/Modal';
13
+ export * from './components/Notification/Notification';
14
+ export * from './components/Panel/Panel';
15
+ export * from './components/Popover/Popover';
16
+ export * from './components/RadioGroup/RadioGroup';
17
+ export * from './components/ScreenBottomActions/ScreenBottomActions';
18
+ export * from './components/SectionHeader/SectionHeader';
19
+ export * from './components/Select/Select';
20
+ export * from './components/SidePanel/SidePanel';
21
+ export * from './components/StatusIndicator/StatusIndicator';
22
+ export * from './components/Textarea/Textarea';