@jackuait/blok 0.5.0 → 0.6.0-beta.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.
- package/dist/blok.mjs +2 -2
- package/dist/chunks/{blok-Iw5VswgQ.mjs → blok-BCb-TePJ.mjs} +3305 -5469
- package/dist/chunks/{i18next-loader-Bq60jl5F.mjs → i18next-loader-O9hLUUxC.mjs} +1 -1
- package/dist/chunks/{index-bpSviZOu.mjs → index-B9OatijR.mjs} +1 -1
- package/dist/chunks/inline-tool-convert-Y0pOGkpb.mjs +4471 -0
- package/dist/full.mjs +2 -2
- package/dist/tools.mjs +3023 -958
- package/dist/vendor.LICENSE.txt +33 -33
- package/package.json +1 -1
- package/src/components/block-tunes/block-tune-delete.ts +3 -2
- package/src/components/constants/data-attributes.ts +2 -0
- package/src/components/icons/index.ts +153 -61
- package/src/components/modules/api/index.ts +1 -0
- package/src/components/modules/blockEvents/index.ts +9 -0
- package/src/components/modules/blockManager/blockManager.ts +17 -29
- package/src/components/modules/crossBlockSelection.ts +8 -8
- package/src/components/modules/rectangleSelection.ts +13 -0
- package/src/components/modules/toolbar/blockSettings.ts +3 -3
- package/src/components/modules/toolbar/index.ts +10 -0
- package/src/components/modules/toolbar/plus-button.ts +2 -2
- package/src/components/modules/toolbar/settings-toggler.ts +3 -5
- package/src/components/modules/ui.ts +8 -0
- package/src/components/modules/uiControllers/controllers/blockHover.ts +41 -1
- package/src/components/modules/uiControllers/controllers/keyboard.ts +17 -11
- package/src/components/modules/uiControllers/handlers/click.ts +0 -12
- package/src/components/ui/toolbox.ts +29 -0
- package/src/components/utils/popover/components/popover-item/popover-item-default/popover-item-default.const.ts +2 -1
- package/src/components/utils/popover/components/popover-item/popover-item-default/popover-item-default.ts +3 -0
- package/src/components/utils/popover/index.ts +1 -0
- package/src/components/utils/popover/popover-abstract.ts +22 -1
- package/src/components/utils/popover/popover-registry.ts +188 -0
- package/src/components/utils/tooltip.ts +2 -24
- package/src/styles/main.css +22 -0
- package/src/tools/index.ts +2 -0
- package/src/tools/table/data-normalizer.ts +32 -0
- package/src/tools/table/index.ts +569 -0
- package/src/tools/table/table-add-controls.ts +440 -0
- package/src/tools/table/table-cell-blocks.ts +587 -0
- package/src/tools/table/table-cell-selection.ts +624 -0
- package/src/tools/table/table-core.ts +467 -0
- package/src/tools/table/table-grip-visuals.ts +96 -0
- package/src/tools/table/table-heading-toggle.ts +127 -0
- package/src/tools/table/table-operations.ts +446 -0
- package/src/tools/table/table-resize.ts +239 -0
- package/src/tools/table/table-row-col-controls.ts +727 -0
- package/src/tools/table/table-row-col-drag.ts +507 -0
- package/src/tools/table/types.ts +54 -0
- package/types/index.d.ts +7 -0
- package/types/tools/table.d.ts +67 -0
- package/types/tools-entry.d.ts +4 -0
- package/types/utils/popover/popover-item.d.ts +6 -0
- package/dist/chunks/inline-tool-convert-DfWTpeSy.mjs +0 -2117
package/dist/blok.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { B as s, v as a } from "./chunks/blok-
|
|
2
|
-
import { D as A } from "./chunks/inline-tool-convert-
|
|
1
|
+
import { B as s, v as a } from "./chunks/blok-BCb-TePJ.mjs";
|
|
2
|
+
import { D as A } from "./chunks/inline-tool-convert-Y0pOGkpb.mjs";
|
|
3
3
|
export {
|
|
4
4
|
s as Blok,
|
|
5
5
|
A as DATA_ATTR,
|