@kopexa/theme 2.0.0 → 2.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.
- package/dist/chunk-2NA54PNL.mjs +43 -0
- package/dist/{chunk-7O57EDVS.mjs → chunk-63C4SFQK.mjs} +20 -10
- package/dist/{chunk-XAHAVJUM.mjs → chunk-A3F4CV54.mjs} +8 -1
- package/dist/chunk-M4TXKRUU.mjs +7 -0
- package/dist/chunk-NUEQ5FLX.mjs +50 -0
- package/dist/chunk-WQ446TVH.mjs +39 -0
- package/dist/components/callout.d.mts +18 -0
- package/dist/components/callout.d.ts +18 -0
- package/dist/components/callout.js +8 -1
- package/dist/components/callout.mjs +1 -1
- package/dist/components/card.d.mts +27 -0
- package/dist/components/card.d.ts +27 -0
- package/dist/components/card.js +20 -10
- package/dist/components/card.mjs +1 -1
- package/dist/components/control-extension.d.mts +5 -0
- package/dist/components/control-extension.d.ts +5 -0
- package/dist/components/control-extension.js +31 -0
- package/dist/components/control-extension.mjs +6 -0
- package/dist/components/editor-basic.d.mts +21 -4
- package/dist/components/editor-basic.d.ts +21 -4
- package/dist/components/editor-basic.js +21 -5
- package/dist/components/editor-basic.mjs +1 -1
- package/dist/components/index.d.mts +3 -1
- package/dist/components/index.d.ts +3 -1
- package/dist/components/index.js +199 -101
- package/dist/components/index.mjs +27 -19
- package/dist/components/integration-card.d.mts +3 -3
- package/dist/components/integration-card.d.ts +3 -3
- package/dist/components/switch.d.mts +62 -0
- package/dist/components/switch.d.ts +62 -0
- package/dist/components/switch.js +63 -0
- package/dist/components/switch.mjs +6 -0
- package/dist/components/toolbar.d.mts +57 -0
- package/dist/components/toolbar.d.ts +57 -0
- package/dist/components/toolbar.js +24 -3
- package/dist/components/toolbar.mjs +1 -1
- package/dist/editor.css +62 -7
- package/dist/index.d.mts +3 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.js +199 -101
- package/dist/index.mjs +27 -19
- package/package.json +5 -5
- package/dist/chunk-BWB7MWRC.mjs +0 -22
- package/dist/chunk-GRPMKEI2.mjs +0 -34
- /package/dist/{chunk-UWWO4AVU.mjs → chunk-4I5ASWB3.mjs} +0 -0
package/dist/index.d.mts
CHANGED
|
@@ -14,12 +14,13 @@ export { ChipSlots, ChipVariantProps, chip } from './components/chip.mjs';
|
|
|
14
14
|
export { CodeVariantProps, code } from './components/code.mjs';
|
|
15
15
|
export { colorHighlightButton } from './components/color-highlight-button.mjs';
|
|
16
16
|
export { CommandVariants, command } from './components/command.mjs';
|
|
17
|
+
export { controlExtension } from './components/control-extension.mjs';
|
|
17
18
|
export { DataGridVariants, datagrid } from './components/data-grid.mjs';
|
|
18
19
|
export { DataTableVariants, dataTable } from './components/data-table.mjs';
|
|
19
20
|
export { DialogSlots, DialogVariantProps, dialog } from './components/dialog.mjs';
|
|
20
21
|
export { DrawerVariantProps, drawer } from './components/drawer.mjs';
|
|
21
22
|
export { DropdownMenuVariantProps, dropdownMenu } from './components/dropdown-menu.mjs';
|
|
22
|
-
export { editorBasic } from './components/editor-basic.mjs';
|
|
23
|
+
export { EditorBasicVariants, editorBasic } from './components/editor-basic.mjs';
|
|
23
24
|
export { editorSpinner } from './components/editor-spinner.mjs';
|
|
24
25
|
export { frameworkRow } from './components/framework-row.mjs';
|
|
25
26
|
export { HeadingVariantProps, heading } from './components/heading.mjs';
|
|
@@ -49,6 +50,7 @@ export { slashDropdownMenu } from './components/slash-dropdown-menu.mjs';
|
|
|
49
50
|
export { SpinnerVariants, spinner } from './components/spinner.mjs';
|
|
50
51
|
export { SplitPageLayoutVariantProps, splitPageLayout } from './components/split-page-layout.mjs';
|
|
51
52
|
export { StandardChipVariants, standardChip } from './components/standard-chip.mjs';
|
|
53
|
+
export { SwitchSlots, SwitchVariantProps, switchVariants } from './components/switch.mjs';
|
|
52
54
|
export { TabNavSlots, TabNavVariantProps, tabNav } from './components/tab-nav.mjs';
|
|
53
55
|
export { TableSlots, TableVariantProps, table } from './components/table.mjs';
|
|
54
56
|
export { TabsVariantProps, tabs } from './components/tabs.mjs';
|
package/dist/index.d.ts
CHANGED
|
@@ -14,12 +14,13 @@ export { ChipSlots, ChipVariantProps, chip } from './components/chip.js';
|
|
|
14
14
|
export { CodeVariantProps, code } from './components/code.js';
|
|
15
15
|
export { colorHighlightButton } from './components/color-highlight-button.js';
|
|
16
16
|
export { CommandVariants, command } from './components/command.js';
|
|
17
|
+
export { controlExtension } from './components/control-extension.js';
|
|
17
18
|
export { DataGridVariants, datagrid } from './components/data-grid.js';
|
|
18
19
|
export { DataTableVariants, dataTable } from './components/data-table.js';
|
|
19
20
|
export { DialogSlots, DialogVariantProps, dialog } from './components/dialog.js';
|
|
20
21
|
export { DrawerVariantProps, drawer } from './components/drawer.js';
|
|
21
22
|
export { DropdownMenuVariantProps, dropdownMenu } from './components/dropdown-menu.js';
|
|
22
|
-
export { editorBasic } from './components/editor-basic.js';
|
|
23
|
+
export { EditorBasicVariants, editorBasic } from './components/editor-basic.js';
|
|
23
24
|
export { editorSpinner } from './components/editor-spinner.js';
|
|
24
25
|
export { frameworkRow } from './components/framework-row.js';
|
|
25
26
|
export { HeadingVariantProps, heading } from './components/heading.js';
|
|
@@ -49,6 +50,7 @@ export { slashDropdownMenu } from './components/slash-dropdown-menu.js';
|
|
|
49
50
|
export { SpinnerVariants, spinner } from './components/spinner.js';
|
|
50
51
|
export { SplitPageLayoutVariantProps, splitPageLayout } from './components/split-page-layout.js';
|
|
51
52
|
export { StandardChipVariants, standardChip } from './components/standard-chip.js';
|
|
53
|
+
export { SwitchSlots, SwitchVariantProps, switchVariants } from './components/switch.js';
|
|
52
54
|
export { TabNavSlots, TabNavVariantProps, tabNav } from './components/tab-nav.js';
|
|
53
55
|
export { TableSlots, TableVariantProps, table } from './components/table.js';
|
|
54
56
|
export { TabsVariantProps, tabs } from './components/tabs.js';
|