@producteca/producteca-ui-kit 1.55.0 → 1.56.1

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.
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,35 @@
1
+ import { default as React } from 'react';
2
+
3
+ type DemoComponent = () => React.ReactElement;
4
+ export declare const DemoButton: DemoComponent;
5
+ export declare const DemoLink: DemoComponent;
6
+ export declare const DemoCard: DemoComponent;
7
+ export declare const DemoAlert: DemoComponent;
8
+ export declare const DemoChip: DemoComponent;
9
+ export declare const DemoFormField: DemoComponent;
10
+ export declare const DemoSelectField: DemoComponent;
11
+ export declare const DemoCheckboxInput: DemoComponent;
12
+ export declare const DemoSwitchInput: DemoComponent;
13
+ export declare const DemoSearcher: DemoComponent;
14
+ export declare const DemoDatePicker: DemoComponent;
15
+ export declare const DemoDateRangePicker: DemoComponent;
16
+ export declare const DemoTabs: DemoComponent;
17
+ export declare const DemoBreadcrumb: DemoComponent;
18
+ export declare const DemoImage: DemoComponent;
19
+ export declare const DemoDropdown: DemoComponent;
20
+ export declare const DemoTooltip: DemoComponent;
21
+ export declare const DemoSpinner: DemoComponent;
22
+ export declare const DemoProgressbar: DemoComponent;
23
+ export declare const DemoEmptyState: DemoComponent;
24
+ export declare const DemoActionBar: DemoComponent;
25
+ export declare const DemoHeaderSection: DemoComponent;
26
+ export declare const DemoCopyButton: DemoComponent;
27
+ export declare const DemoConditionalOperator: DemoComponent;
28
+ export declare const DemoLinkWithIcon: DemoComponent;
29
+ export declare const DemoIconWithIdentifier: DemoComponent;
30
+ export declare const DemoSidebar: DemoComponent;
31
+ export declare const DemoDraggableList: DemoComponent;
32
+ export declare const DemoWarningModal: DemoComponent;
33
+ export declare const DemoMenuAction: DemoComponent;
34
+ export declare const ComponentDemos: Record<string, DemoComponent>;
35
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,3 @@
1
+ import { default as React } from 'react';
2
+
3
+ export declare const PlaygroundSidebar: React.MemoExoticComponent<() => import("react/jsx-runtime").JSX.Element>;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,3 @@
1
+ import { default as React } from 'react';
2
+
3
+ export declare const PlaygroundView: React.MemoExoticComponent<() => import("react/jsx-runtime").JSX.Element>;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,10 @@
1
+ export interface PlaygroundSection {
2
+ id: string;
3
+ title: string;
4
+ category: string;
5
+ }
6
+ export declare const PLAYGROUND_SECTIONS: PlaygroundSection[];
7
+ export declare const _getCategoriesWithSections: () => {
8
+ category: string;
9
+ sections: PlaygroundSection[];
10
+ }[];