Skip to content

Commit 6b82201

Browse files
committed
Bumped version
1 parent a197b8e commit 6b82201

File tree

96 files changed

+257
-257
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

96 files changed

+257
-257
lines changed

client/behaviours/actionable/actionable.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { getMainSvg } from '/github/kite9-org/kite9/client/bundles/screen.js?v=v0.2'
1+
import { getMainSvg } from '/github/kite9-org/kite9/client/bundles/screen.js?v=v0.3'
22

33
/**
44
* Allows the context menu to appear when the user clicks an element with an id

client/behaviours/animation/animation.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { parseTransform, number, handleTransformAsStyle } from '/github/kite9-org/kite9/client/bundles/api.js?v=v0.2'
2-
import { getMainSvg } from '/github/kite9-org/kite9/client/bundles/screen.js?v=v0.2'
1+
import { parseTransform, number, handleTransformAsStyle } from '/github/kite9-org/kite9/client/bundles/api.js?v=v0.3'
2+
import { getMainSvg } from '/github/kite9-org/kite9/client/bundles/screen.js?v=v0.3'
33

44
/**
55
* Somehow, someday, make these extensible

client/behaviours/containers/child/containers-child.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { hasLastSelected, createUniqueId } from '/github/kite9-org/kite9/client/bundles/api.js?v=v0.2'
2-
import { getMainSvg } from '/github/kite9-org/kite9/client/bundles/screen.js?v=v0.2'
1+
import { hasLastSelected, createUniqueId } from '/github/kite9-org/kite9/client/bundles/api.js?v=v0.3'
2+
import { getMainSvg } from '/github/kite9-org/kite9/client/bundles/screen.js?v=v0.3'
33

44

55
function defaultChildSelector() {

client/behaviours/containers/contain/containers-contain.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import { hasLastSelected, createUniqueId, getParentElement, getNextSiblingId, getParentElements } from '/github/kite9-org/kite9/client/bundles/api.js?v=v0.2'
2-
import { getMainSvg } from '/github/kite9-org/kite9/client/bundles/screen.js?v=v0.2'
3-
import { getBeforeId } from '/github/kite9-org/kite9/client/bundles/ordering.js?v=v0.2'
1+
import { hasLastSelected, createUniqueId, getParentElement, getNextSiblingId, getParentElements } from '/github/kite9-org/kite9/client/bundles/api.js?v=v0.3'
2+
import { getMainSvg } from '/github/kite9-org/kite9/client/bundles/screen.js?v=v0.3'
3+
import { getBeforeId } from '/github/kite9-org/kite9/client/bundles/ordering.js?v=v0.3'
44

55

66
function defaultContainSelector() {

client/behaviours/containers/drag/containers-drag.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import { getSVGCoords, getMainSvg } from '/github/kite9-org/kite9/client/bundles/screen.js?v=v0.2'
2-
import { handleTransformAsStyle, getKite9Target, getParentElement, getNextSiblingId, onlyUnique, isLink, isConnected } from '/github/kite9-org/kite9/client/bundles/api.js?v=v0.2'
3-
import { getBeforeId } from '/github/kite9-org/kite9/client/bundles/ordering.js?v=v0.2'
1+
import { getSVGCoords, getMainSvg } from '/github/kite9-org/kite9/client/bundles/screen.js?v=v0.3'
2+
import { handleTransformAsStyle, getKite9Target, getParentElement, getNextSiblingId, onlyUnique, isLink, isConnected } from '/github/kite9-org/kite9/client/bundles/api.js?v=v0.3'
3+
import { getBeforeId } from '/github/kite9-org/kite9/client/bundles/ordering.js?v=v0.3'
44

55
export function initContainerDropLocatorFunction(containment) {
66

client/behaviours/containers/insert/containers-insert.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import { hasLastSelected, getKite9Target, createUniqueId, changeId } from '/github/kite9-org/kite9/client/bundles/api.js?v=v0.2'
2-
import { getMainSvg, getSVGCoords, getElementPageBBox, currentTarget } from '/github/kite9-org/kite9/client/bundles/screen.js?v=v0.2'
3-
import { getBefore } from '/github/kite9-org/kite9/client/bundles/ordering.js?v=v0.2'
1+
import { hasLastSelected, getKite9Target, createUniqueId, changeId } from '/github/kite9-org/kite9/client/bundles/api.js?v=v0.3'
2+
import { getMainSvg, getSVGCoords, getElementPageBBox, currentTarget } from '/github/kite9-org/kite9/client/bundles/screen.js?v=v0.3'
3+
import { getBefore } from '/github/kite9-org/kite9/client/bundles/ordering.js?v=v0.3'
44

55

66
function defaultInsertSelector() {

client/behaviours/containers/layout/containers-layout.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import { hasLastSelected, isConnected, parseInfo } from '/github/kite9-org/kite9/client/bundles/api.js?v=v0.2'
2-
import { getSVGCoords, getElementPageBBox, getMainSvg } from '/github/kite9-org/kite9/client/bundles/screen.js?v=v0.2'
3-
import { drawBar, clearBar } from '/github/kite9-org/kite9/client/bundles/ordering.js?v=v0.2'
1+
import { hasLastSelected, isConnected, parseInfo } from '/github/kite9-org/kite9/client/bundles/api.js?v=v0.3'
2+
import { getSVGCoords, getElementPageBBox, getMainSvg } from '/github/kite9-org/kite9/client/bundles/screen.js?v=v0.3'
3+
import { drawBar, clearBar } from '/github/kite9-org/kite9/client/bundles/ordering.js?v=v0.3'
44

55
function getLayout(e) {
66
if (e==null) {

client/behaviours/containers/rules/containers-rules.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { isGrid } from '/github/kite9-org/kite9/client/bundles/api.js?v=v0.2'
1+
import { isGrid } from '/github/kite9-org/kite9/client/bundles/api.js?v=v0.3'
22
/**
33
* Three attributes:
44
*

client/behaviours/dragable/dragable.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import { getSVGCoords, getMainSvg, is_touch_device4 } from '/github/kite9-org/kite9/client/bundles/screen.js?v=v0.2'
2-
import { handleTransformAsStyle, getKite9Target, isConnected, isDiagram, getParentElement, onlyUnique } from '/github/kite9-org/kite9/client/bundles/api.js?v=v0.2'
3-
import { getBeforeId } from '/github/kite9-org/kite9/client/bundles/ordering.js?v=v0.2'
1+
import { getSVGCoords, getMainSvg, is_touch_device4 } from '/github/kite9-org/kite9/client/bundles/screen.js?v=v0.3'
2+
import { handleTransformAsStyle, getKite9Target, isConnected, isDiagram, getParentElement, onlyUnique } from '/github/kite9-org/kite9/client/bundles/api.js?v=v0.3'
3+
import { getBeforeId } from '/github/kite9-org/kite9/client/bundles/ordering.js?v=v0.3'
44

55
export function initDragable(dragger, selector) {
66

client/behaviours/editable/image/editable-image.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import { hasLastSelected} from '/github/kite9-org/kite9/client/bundles/api.js?v=v0.2'
2-
import { getMainSvg } from '/github/kite9-org/kite9/client/bundles/screen.js?v=v0.2'
3-
import { icon, form, text, p, inlineButtons, ok, cancel, formValues, img, fieldset, div } from '/github/kite9-org/kite9/client/bundles/form.js?v=v0.2'
1+
import { hasLastSelected} from '/github/kite9-org/kite9/client/bundles/api.js?v=v0.3'
2+
import { getMainSvg } from '/github/kite9-org/kite9/client/bundles/screen.js?v=v0.3'
3+
import { icon, form, text, p, inlineButtons, ok, cancel, formValues, img, fieldset, div } from '/github/kite9-org/kite9/client/bundles/form.js?v=v0.3'
44

55
const LOADING = '/public/behaviours/editable/image/loading.svg';
66
const SUCCESS = '/public/behaviours/editable/image/success.svg';

0 commit comments

Comments
 (0)