@orianatech/pire 0.5.0 → 0.7.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.
- package/dist/components/core/Heading.d.cts +15 -0
- package/dist/components/core/Heading.d.ts +16 -0
- package/dist/components/core/Heading.d.ts.map +1 -0
- package/dist/components/core/IconButton.d.cts +12 -0
- package/dist/components/core/IconButton.d.ts +12 -0
- package/dist/components/core/IconButton.d.ts.map +1 -1
- package/dist/components/core/Link.d.cts +13 -0
- package/dist/components/core/Link.d.ts +14 -0
- package/dist/components/core/Link.d.ts.map +1 -0
- package/dist/components/core/Separator.d.cts +12 -0
- package/dist/components/core/Separator.d.ts +13 -0
- package/dist/components/core/Separator.d.ts.map +1 -0
- package/dist/components/core/Text.d.cts +29 -0
- package/dist/components/core/Text.d.ts +30 -0
- package/dist/components/core/Text.d.ts.map +1 -0
- package/dist/components/data/DataTable.d.cts +7 -1
- package/dist/components/data/DataTable.d.ts +7 -1
- package/dist/components/data/DataTable.d.ts.map +1 -1
- package/dist/components/data/FilterBar.d.cts +7 -1
- package/dist/components/data/FilterBar.d.ts +7 -1
- package/dist/components/data/FilterBar.d.ts.map +1 -1
- package/dist/components/feedback/Dialog.d.ts.map +1 -1
- package/dist/components/feedback/InlineMessage.d.ts.map +1 -1
- package/dist/components/feedback/Toast.d.ts.map +1 -1
- package/dist/components/forms/ComboBox.d.ts.map +1 -1
- package/dist/components/forms/DatePicker.d.ts.map +1 -1
- package/dist/components/forms/MultiComboBox.d.ts.map +1 -1
- package/dist/components/forms/NumberField.d.ts.map +1 -1
- package/dist/components/forms/ValueHelpField.d.ts.map +1 -1
- package/dist/components/layout/PageBand.d.cts +15 -0
- package/dist/components/layout/PageBand.d.ts +16 -0
- package/dist/components/layout/PageBand.d.ts.map +1 -0
- package/dist/components/navigation/Menu.d.cts +39 -0
- package/dist/components/navigation/Menu.d.ts +40 -0
- package/dist/components/navigation/Menu.d.ts.map +1 -0
- package/dist/components/navigation/Pagination.d.ts.map +1 -1
- package/dist/components/navigation/SideNav.d.ts.map +1 -1
- package/dist/components/patterns/SidePanel.d.ts.map +1 -1
- package/dist/components/patterns/ValueHelpDialog.d.ts.map +1 -1
- package/dist/components.css +85 -0
- package/dist/i18n/PireIntlProvider.d.cts +21 -0
- package/dist/i18n/PireIntlProvider.d.ts +22 -0
- package/dist/i18n/PireIntlProvider.d.ts.map +1 -0
- package/dist/i18n/messages.d.cts +66 -0
- package/dist/i18n/messages.d.ts +67 -0
- package/dist/i18n/messages.d.ts.map +1 -0
- package/dist/index.cjs +830 -488
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +9 -1
- package/dist/index.d.ts +9 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +797 -462
- package/dist/index.js.map +1 -1
- package/dist/tokens/base.css +3 -0
- package/dist/tokens/typography.css +5 -0
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -6,6 +6,10 @@ export { Tag, type TagProps } from './components/core/Tag.cjs';
|
|
|
6
6
|
export { Card, type CardProps } from './components/core/Card.cjs';
|
|
7
7
|
export { Avatar, type AvatarProps } from './components/core/Avatar.cjs';
|
|
8
8
|
export { SegmentedControl, type SegmentedControlProps, type SegmentOption } from './components/core/SegmentedControl.cjs';
|
|
9
|
+
export { Text, Strong, type TextProps, type StrongProps, type TextColor, type TextSize } from './components/core/Text.cjs';
|
|
10
|
+
export { Heading, type HeadingProps } from './components/core/Heading.cjs';
|
|
11
|
+
export { Link, type LinkProps } from './components/core/Link.cjs';
|
|
12
|
+
export { Separator, type SeparatorProps } from './components/core/Separator.cjs';
|
|
9
13
|
export { FormField, type FormFieldProps } from './components/forms/FormField.cjs';
|
|
10
14
|
export { Input, type InputProps } from './components/forms/Input.cjs';
|
|
11
15
|
export { TextArea, type TextAreaProps } from './components/forms/TextArea.cjs';
|
|
@@ -23,6 +27,7 @@ export { SideNav, type SideNavProps, type SideNavItem, type SideNavChildItem, ty
|
|
|
23
27
|
export { Tabs, type TabsProps, type TabItem } from './components/navigation/Tabs.cjs';
|
|
24
28
|
export { Breadcrumb, type BreadcrumbProps, type BreadcrumbItem } from './components/navigation/Breadcrumb.cjs';
|
|
25
29
|
export { Pagination, type PaginationProps } from './components/navigation/Pagination.cjs';
|
|
30
|
+
export { Menu, MenuItem, MenuSection, MenuSeparator, type MenuProps, type MenuItemProps, type MenuSectionProps, type MenuSeparatorProps } from './components/navigation/Menu.cjs';
|
|
26
31
|
export { Dialog, type DialogProps } from './components/feedback/Dialog.cjs';
|
|
27
32
|
export { InlineMessage, type InlineMessageProps, type MessageKind } from './components/feedback/InlineMessage.cjs';
|
|
28
33
|
export { ProgressBar, type ProgressBarProps } from './components/feedback/ProgressBar.cjs';
|
|
@@ -36,6 +41,7 @@ export { FilterBar, type FilterBarProps, type ActiveFilter } from './components/
|
|
|
36
41
|
export { DescriptionList, type DescriptionListProps, type DescriptionItem } from './components/data/DescriptionList.cjs';
|
|
37
42
|
export { Timeline, type TimelineProps, type TimelineEntry } from './components/data/Timeline.cjs';
|
|
38
43
|
export { LinkList, type LinkListProps, type LinkListItem } from './components/data/LinkList.cjs';
|
|
44
|
+
export { PageBand, type PageBandProps } from './components/layout/PageBand.cjs';
|
|
39
45
|
export { PageHeader, type PageHeaderProps } from './components/layout/PageHeader.cjs';
|
|
40
46
|
export { SectionHeader, type SectionHeaderProps } from './components/layout/SectionHeader.cjs';
|
|
41
47
|
export { SelectionBar, type SelectionBarProps } from './components/layout/SelectionBar.cjs';
|
|
@@ -45,5 +51,7 @@ export { ValueHelpDialog, type ValueHelpDialogProps } from './components/pattern
|
|
|
45
51
|
export { SidePanel, type SidePanelProps } from './components/patterns/SidePanel.cjs';
|
|
46
52
|
export { EmptyState, type EmptyStateProps } from './components/patterns/EmptyState.cjs';
|
|
47
53
|
/** Re-exported so apps can compose overlays and collections without a second dependency. */
|
|
48
|
-
export {
|
|
54
|
+
export { PireIntlProvider, usePireMessages, type PireIntlProviderProps } from './i18n/PireIntlProvider.cjs';
|
|
55
|
+
export { enMessages, esMessages, type PireMessages } from './i18n/messages.cjs';
|
|
56
|
+
export { DialogTrigger, MenuTrigger, SubmenuTrigger, Popover, RouterProvider, I18nProvider } from 'react-aria-components';
|
|
49
57
|
export type { DateValue } from 'react-aria-components';
|
package/dist/index.d.ts
CHANGED
|
@@ -6,6 +6,10 @@ export { Tag, type TagProps } from './components/core/Tag.js';
|
|
|
6
6
|
export { Card, type CardProps } from './components/core/Card.js';
|
|
7
7
|
export { Avatar, type AvatarProps } from './components/core/Avatar.js';
|
|
8
8
|
export { SegmentedControl, type SegmentedControlProps, type SegmentOption } from './components/core/SegmentedControl.js';
|
|
9
|
+
export { Text, Strong, type TextProps, type StrongProps, type TextColor, type TextSize } from './components/core/Text.js';
|
|
10
|
+
export { Heading, type HeadingProps } from './components/core/Heading.js';
|
|
11
|
+
export { Link, type LinkProps } from './components/core/Link.js';
|
|
12
|
+
export { Separator, type SeparatorProps } from './components/core/Separator.js';
|
|
9
13
|
export { FormField, type FormFieldProps } from './components/forms/FormField.js';
|
|
10
14
|
export { Input, type InputProps } from './components/forms/Input.js';
|
|
11
15
|
export { TextArea, type TextAreaProps } from './components/forms/TextArea.js';
|
|
@@ -23,6 +27,7 @@ export { SideNav, type SideNavProps, type SideNavItem, type SideNavChildItem, ty
|
|
|
23
27
|
export { Tabs, type TabsProps, type TabItem } from './components/navigation/Tabs.js';
|
|
24
28
|
export { Breadcrumb, type BreadcrumbProps, type BreadcrumbItem } from './components/navigation/Breadcrumb.js';
|
|
25
29
|
export { Pagination, type PaginationProps } from './components/navigation/Pagination.js';
|
|
30
|
+
export { Menu, MenuItem, MenuSection, MenuSeparator, type MenuProps, type MenuItemProps, type MenuSectionProps, type MenuSeparatorProps } from './components/navigation/Menu.js';
|
|
26
31
|
export { Dialog, type DialogProps } from './components/feedback/Dialog.js';
|
|
27
32
|
export { InlineMessage, type InlineMessageProps, type MessageKind } from './components/feedback/InlineMessage.js';
|
|
28
33
|
export { ProgressBar, type ProgressBarProps } from './components/feedback/ProgressBar.js';
|
|
@@ -36,6 +41,7 @@ export { FilterBar, type FilterBarProps, type ActiveFilter } from './components/
|
|
|
36
41
|
export { DescriptionList, type DescriptionListProps, type DescriptionItem } from './components/data/DescriptionList.js';
|
|
37
42
|
export { Timeline, type TimelineProps, type TimelineEntry } from './components/data/Timeline.js';
|
|
38
43
|
export { LinkList, type LinkListProps, type LinkListItem } from './components/data/LinkList.js';
|
|
44
|
+
export { PageBand, type PageBandProps } from './components/layout/PageBand.js';
|
|
39
45
|
export { PageHeader, type PageHeaderProps } from './components/layout/PageHeader.js';
|
|
40
46
|
export { SectionHeader, type SectionHeaderProps } from './components/layout/SectionHeader.js';
|
|
41
47
|
export { SelectionBar, type SelectionBarProps } from './components/layout/SelectionBar.js';
|
|
@@ -45,6 +51,8 @@ export { ValueHelpDialog, type ValueHelpDialogProps } from './components/pattern
|
|
|
45
51
|
export { SidePanel, type SidePanelProps } from './components/patterns/SidePanel.js';
|
|
46
52
|
export { EmptyState, type EmptyStateProps } from './components/patterns/EmptyState.js';
|
|
47
53
|
/** Re-exported so apps can compose overlays and collections without a second dependency. */
|
|
48
|
-
export {
|
|
54
|
+
export { PireIntlProvider, usePireMessages, type PireIntlProviderProps } from './i18n/PireIntlProvider.js';
|
|
55
|
+
export { enMessages, esMessages, type PireMessages } from './i18n/messages.js';
|
|
56
|
+
export { DialogTrigger, MenuTrigger, SubmenuTrigger, Popover, RouterProvider, I18nProvider } from 'react-aria-components';
|
|
49
57
|
export type { DateValue } from 'react-aria-components';
|
|
50
58
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,IAAI,EAAE,cAAc,EAAE,KAAK,SAAS,EAAE,KAAK,QAAQ,EAAE,KAAK,UAAU,EAAE,MAAM,wBAAwB,CAAC;AAC9G,OAAO,EAAE,MAAM,EAAE,KAAK,WAAW,EAAE,MAAM,0BAA0B,CAAC;AACpE,OAAO,EAAE,UAAU,EAAE,KAAK,eAAe,EAAE,MAAM,8BAA8B,CAAC;AAChF,OAAO,EAAE,KAAK,EAAE,KAAK,UAAU,EAAE,KAAK,WAAW,EAAE,MAAM,yBAAyB,CAAC;AACnF,OAAO,EAAE,GAAG,EAAE,KAAK,QAAQ,EAAE,MAAM,uBAAuB,CAAC;AAC3D,OAAO,EAAE,IAAI,EAAE,KAAK,SAAS,EAAE,MAAM,wBAAwB,CAAC;AAC9D,OAAO,EAAE,MAAM,EAAE,KAAK,WAAW,EAAE,MAAM,0BAA0B,CAAC;AACpE,OAAO,EAAE,gBAAgB,EAAE,KAAK,qBAAqB,EAAE,KAAK,aAAa,EAAE,MAAM,oCAAoC,CAAC;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
|