@symbo.ls/atoms 2.11.394 → 2.11.398

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/Block.js CHANGED
@@ -262,6 +262,10 @@ export const Ul = {
262
262
  tag: 'ul',
263
263
  childExtend: { extend: 'Li' }
264
264
  }
265
+ export const Ol = {
266
+ tag: 'ol',
267
+ childExtend: { extend: 'Li' }
268
+ }
265
269
  // export const Article = { tag: 'article' }
266
270
 
267
271
  export const Gutter = {
package/Img.js CHANGED
@@ -7,7 +7,7 @@ export const Img = {
7
7
  src: (el) => {
8
8
  const { props, context } = el
9
9
  const { exec, isString, replaceLiteralsWithObjectFields } = context.utils
10
- let src = exec(props.src, el)
10
+ let src = (props.preSrc || '') + exec(props.src, el)
11
11
 
12
12
  if (isString(src) && src.includes('{{')) {
13
13
  src = replaceLiteralsWithObjectFields(src, el.state)
package/Timing.js CHANGED
@@ -6,7 +6,7 @@ import {
6
6
  transformDuration
7
7
  } from '@symbo.ls/scratch'
8
8
 
9
- import { isUndefined } from 'smbls'
9
+ import { isUndefined } from '@domql/utils'
10
10
 
11
11
  export const Timing = {
12
12
  deps: {
package/Transform.js CHANGED
@@ -1,6 +1,6 @@
1
1
  'use strict'
2
2
 
3
- import { isUndefined } from 'smbls'
3
+ import { isUndefined } from '@domql/utils'
4
4
 
5
5
  export const Transform = {
6
6
  class: {
package/XYZ.js CHANGED
@@ -1,6 +1,6 @@
1
1
  'use strict'
2
2
 
3
- import { isUndefined } from 'smbls'
3
+ import { isUndefined } from '@domql/utils'
4
4
 
5
5
  export const XYZ = {
6
6
  class: {
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "@symbo.ls/atoms",
3
- "version": "2.11.394",
3
+ "version": "2.11.398",
4
4
  "main": "index.js",
5
5
  "license": "MIT",
6
- "gitHead": "96fc31e44dd43084955c647e91b5d0e70d56aee8",
6
+ "gitHead": "d3cb027daada2cda9943517e98ffc67e0170a763",
7
7
  "dependencies": {
8
8
  "@domql/state": "latest",
9
9
  "@domql/utils": "latest",