@oxide/design-system 1.7.6--canary.58fcbf4.0 → 1.7.6--canary.ca7d435.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/components/dist/asciidoc.css +1 -1
- package/components/dist/index.d.ts +1 -21
- package/components/dist/index.js +224 -1840
- package/components/dist/index.js.map +1 -1
- package/package.json +2 -4
|
@@ -1,23 +1,9 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
2
|
import * as _oxide_react_asciidoc from '@oxide/react-asciidoc';
|
|
3
|
-
import { Block, DocumentBlock } from '@oxide/react-asciidoc';
|
|
4
3
|
import * as react from 'react';
|
|
5
4
|
import { ReactNode } from 'react';
|
|
6
5
|
import { TabsProps, TabsTriggerProps, TabsListProps, TabsContentProps } from '@radix-ui/react-tabs';
|
|
7
6
|
import { SetRequired } from 'type-fest';
|
|
8
|
-
import * as _asciidoctor_core from '@asciidoctor/core';
|
|
9
|
-
import { Registry, Document } from '@asciidoctor/core';
|
|
10
|
-
|
|
11
|
-
declare const highlight: (block: Block) => Promise<Block>;
|
|
12
|
-
declare const attrs: {
|
|
13
|
-
sectlinks: string;
|
|
14
|
-
stem: string;
|
|
15
|
-
stylesheet: boolean;
|
|
16
|
-
};
|
|
17
|
-
declare const loadAsciidoctor: ({ extensions, }: {
|
|
18
|
-
extensions?: ((this: Registry) => void)[] | undefined;
|
|
19
|
-
}) => _asciidoctor_core.Asciidoctor;
|
|
20
|
-
declare const handleDocument: (document: Document) => Promise<_oxide_react_asciidoc.DocumentBlock>;
|
|
21
7
|
|
|
22
8
|
declare const AsciiDocBlocks: {
|
|
23
9
|
Admonition: ({ node }: {
|
|
@@ -26,12 +12,6 @@ declare const AsciiDocBlocks: {
|
|
|
26
12
|
Table: ({ node }: {
|
|
27
13
|
node: _oxide_react_asciidoc.TableBlock;
|
|
28
14
|
}) => react_jsx_runtime.JSX.Element;
|
|
29
|
-
Section: ({ node }: {
|
|
30
|
-
node: _oxide_react_asciidoc.SectionBlock;
|
|
31
|
-
}) => react_jsx_runtime.JSX.Element;
|
|
32
|
-
MinimalDocument: ({ document }: {
|
|
33
|
-
document: DocumentBlock;
|
|
34
|
-
}) => react_jsx_runtime.JSX.Element;
|
|
35
15
|
};
|
|
36
16
|
|
|
37
17
|
type BadgeColor = 'default' | 'destructive' | 'notice' | 'neutral' | 'purple' | 'blue';
|
|
@@ -116,4 +96,4 @@ interface ListboxProps<Value extends string = string> {
|
|
|
116
96
|
}
|
|
117
97
|
declare const Listbox: <Value extends string = string>({ name, selected, items, placeholder, className, onChange, hasError, disabled, isLoading, ...props }: ListboxProps<Value>) => react_jsx_runtime.JSX.Element;
|
|
118
98
|
|
|
119
|
-
export { AsciiDocBlocks, Badge, BadgeColor, BadgeProps, BadgeVariant, Button, ButtonProps, ButtonSize, Checkbox, CheckboxProps, Listbox, ListboxItem, ListboxProps, Spinner, SpinnerLoader, SpinnerSize, SpinnerVariant, Tabs, TabsRootProps, Variant,
|
|
99
|
+
export { AsciiDocBlocks, 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 };
|