@oxide/design-system 3.2.0--canary.151.18510677674.0 → 4.0.0--canary.151.18511380774.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/README.md +19 -14
- package/dist/chunk-7VKKHVZC.js +45 -0
- package/dist/chunk-7VKKHVZC.js.map +1 -0
- package/dist/chunk-BTKC2KJ2.js +5472 -0
- package/dist/chunk-BTKC2KJ2.js.map +1 -0
- package/dist/components/src/{index.d.ts → asciidoc/index.d.ts} +0 -4
- package/dist/components/src/{index.js → asciidoc/index.js} +46 -547
- package/dist/components/src/asciidoc/index.js.map +1 -0
- package/dist/components/src/ui/index.js +32 -124
- package/dist/components/src/ui/index.js.map +1 -1
- package/dist/icons/react/index.js +175 -5295
- package/dist/icons/react/index.js.map +1 -1
- package/package.json +3 -11
- package/dist/components/src/index.js.map +0 -1
|
@@ -3,10 +3,6 @@ import * as _oxide_react_asciidoc from '@oxide/react-asciidoc';
|
|
|
3
3
|
import { DocumentSection, Block, DocumentBlock } from '@oxide/react-asciidoc';
|
|
4
4
|
import * as _asciidoctor_core from '@asciidoctor/core';
|
|
5
5
|
import { Document, Registry, Html5Converter, Block as Block$1 } from '@asciidoctor/core';
|
|
6
|
-
export { Badge, BadgeColor, BadgeProps, BadgeVariant, Button, ButtonProps, ButtonSize, Checkbox, CheckboxProps, Listbox, ListboxItem, ListboxProps, Spinner, SpinnerLoader, SpinnerSize, SpinnerVariant, Tabs, TabsRootProps, Variant, badgeColors, buttonSizes, buttonStyle, spinnerSizes, spinnerVariants, variants } from './ui/index.js';
|
|
7
|
-
import 'react';
|
|
8
|
-
import '@radix-ui/react-tabs';
|
|
9
|
-
import 'type-fest';
|
|
10
6
|
|
|
11
7
|
declare function useIntersectionObserver(elements: Element[], callback: IntersectionObserverCallback, options: IntersectionObserverInit): IntersectionObserver | null;
|
|
12
8
|
declare function useActiveSectionTracking(initialSections: Element[], onSectionChange: (element: Element) => void, debug?: boolean): {
|