@symbo.ls/notification 0.6.5 → 0.6.16

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.
@@ -9,9 +9,9 @@ import { Text } from '@symbo.ls/text'
9
9
 
10
10
  export const Notification = {
11
11
  style: { cursor: 'pointer' },
12
- proto: [Shape, Block, Direction, Flex],
12
+ extends: [Shape, Block, Direction, Flex],
13
13
  icon: {
14
- proto: [IconText],
14
+ extends: [IconText],
15
15
  props: {
16
16
  icon: 'info'
17
17
  },
@@ -21,17 +21,17 @@ export const Notification = {
21
21
  }
22
22
  },
23
23
  article: {
24
- proto: [Flex],
24
+ extends: [Flex],
25
25
  style: {
26
26
  flexDirection: 'column',
27
27
  alignItems: 'flex-start'
28
28
  },
29
29
  caption: {
30
- proto: Text,
30
+ extends: Text,
31
31
  text: 'Notification'
32
32
  },
33
33
  p: {
34
- proto: Text,
34
+ extends: Text,
35
35
  props: {
36
36
  size: 'Z',
37
37
  text: 'is not always a distraction'
package/package.json CHANGED
@@ -1,16 +1,16 @@
1
1
  {
2
2
  "name": "@symbo.ls/notification",
3
- "version": "0.6.5",
3
+ "version": "0.6.16",
4
4
  "main": "dist/index.js",
5
5
  "license": "MIT",
6
- "gitHead": "c24282f90804b63aed2b6f2f8be812d04100de5d",
6
+ "gitHead": "0cc8d34533c6e162987c235296c7bb66b975fac7",
7
7
  "dependencies": {
8
- "@symbo.ls/block": "^0.6.5",
9
- "@symbo.ls/direction": "^0.6.5",
10
- "@symbo.ls/flex": "^0.6.5",
11
- "@symbo.ls/icon-text": "^0.6.5",
12
- "@symbo.ls/shape": "^0.6.5",
13
- "@symbo.ls/text": "^0.6.5"
8
+ "@symbo.ls/block": "^0.6.15",
9
+ "@symbo.ls/direction": "^0.6.15",
10
+ "@symbo.ls/flex": "^0.6.15",
11
+ "@symbo.ls/icon-text": "^0.6.16",
12
+ "@symbo.ls/shape": "^0.6.15",
13
+ "@symbo.ls/text": "^0.6.15"
14
14
  },
15
15
  "source": "src/index.js"
16
16
  }
@@ -1,8 +1,8 @@
1
1
  'use strict'
2
2
 
3
- import { reactTransformer } from '@domql/react-transformer'
3
+ import { DOMQLReact } from '@symbo.ls/transform-react'
4
4
  import { Notification as component } from '@symbo.ls/notification'
5
5
 
6
6
  export const Notification = (props, state) => {
7
- return reactTransformer(component, props, state)
7
+ return DOMQLReact(component, props, state)
8
8
  }
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@symbo.ls/react-notification",
3
- "version": "0.6.5",
3
+ "version": "0.6.16",
4
4
  "main": "dist/index.js",
5
5
  "license": "MIT",
6
- "gitHead": "c24282f90804b63aed2b6f2f8be812d04100de5d",
6
+ "gitHead": "0cc8d34533c6e162987c235296c7bb66b975fac7",
7
7
  "dependencies": {
8
- "@symbo.ls/notification": "^0.6.5",
9
- "@symbo.ls/react-transformer": "^0.6.5"
8
+ "@symbo.ls/notification": "^0.6.16",
9
+ "@symbo.ls/transform-react": "^0.6.15"
10
10
  },
11
11
  "source": "src/index.js"
12
12
  }
package/dist/index.js DELETED
@@ -1,68 +0,0 @@
1
- var $k0VQj$symbolsshape = require("@symbo.ls/shape");
2
- var $k0VQj$symbolsblock = require("@symbo.ls/block");
3
- var $k0VQj$symbolsicontext = require("@symbo.ls/icon-text");
4
- var $k0VQj$symbolsdirection = require("@symbo.ls/direction");
5
- var $k0VQj$symbolsflex = require("@symbo.ls/flex");
6
- var $k0VQj$symbolstext = require("@symbo.ls/text");
7
-
8
- function $parcel$export(e, n, v, s) {
9
- Object.defineProperty(e, n, {get: v, set: s, enumerable: true, configurable: true});
10
- }
11
-
12
- $parcel$export(module.exports, "Notification", () => $970bcf5a135934db$export$14834abbfce3b8cd);
13
-
14
-
15
-
16
-
17
-
18
-
19
- 'use strict';
20
- const $970bcf5a135934db$export$14834abbfce3b8cd = {
21
- style: {
22
- cursor: 'pointer'
23
- },
24
- proto: [
25
- $k0VQj$symbolsshape.Shape,
26
- $k0VQj$symbolsblock.Block,
27
- $k0VQj$symbolsdirection.Direction,
28
- $k0VQj$symbolsflex.Flex
29
- ],
30
- icon: {
31
- proto: [
32
- $k0VQj$symbolsicontext.IconText
33
- ],
34
- props: {
35
- icon: 'info'
36
- },
37
- style: {
38
- width: 'fit-content',
39
- height: 'fit-content'
40
- }
41
- },
42
- article: {
43
- proto: [
44
- $k0VQj$symbolsflex.Flex
45
- ],
46
- style: {
47
- flexDirection: 'column',
48
- alignItems: 'flex-start'
49
- },
50
- caption: {
51
- proto: $k0VQj$symbolstext.Text,
52
- text: 'Notification'
53
- },
54
- p: {
55
- proto: $k0VQj$symbolstext.Text,
56
- props: {
57
- size: 'Z',
58
- text: 'is not always a distraction'
59
- },
60
- style: {
61
- margin: 0
62
- }
63
- }
64
- }
65
- };
66
-
67
-
68
- //# sourceMappingURL=index.js.map
package/dist/index.js.map DELETED
@@ -1 +0,0 @@
1
- {"mappings":";;;;;;;;;;;;;;;;;;AAAA,CAAY;AASL,KAAK,CAAC,yCAAY,GAAG,CAAC;IAC3B,KAAK,EAAE,CAAC;QAAC,MAAM,EAAE,CAAS;IAAC,CAAC;IAC5B,KAAK,EAAE,CAAC;QAAA,yBAAK;QAAE,yBAAK;QAAE,iCAAS;QAAE,uBAAI;IAAA,CAAC;IACtC,IAAI,EAAE,CAAC;QACL,KAAK,EAAE,CAAC;YAAA,+BAAQ;QAAA,CAAC;QACjB,KAAK,EAAE,CAAC;YACN,IAAI,EAAE,CAAM;QACd,CAAC;QACD,KAAK,EAAE,CAAC;YACN,KAAK,EAAE,CAAa;YACpB,MAAM,EAAE,CAAa;QACvB,CAAC;IACH,CAAC;IACD,OAAO,EAAE,CAAC;QACR,KAAK,EAAE,CAAC;YAAA,uBAAI;QAAA,CAAC;QACb,KAAK,EAAE,CAAC;YACN,aAAa,EAAE,CAAQ;YACvB,UAAU,EAAE,CAAY;QAC1B,CAAC;QACD,OAAO,EAAE,CAAC;YACR,KAAK,EAAE,uBAAI;YACX,IAAI,EAAE,CAAc;QACtB,CAAC;QACD,CAAC,EAAE,CAAC;YACF,KAAK,EAAE,uBAAI;YACX,KAAK,EAAE,CAAC;gBACN,IAAI,EAAE,CAAG;gBACT,IAAI,EAAE,CAA6B;YACrC,CAAC;YACD,KAAK,EAAE,CAAC;gBAAC,MAAM,EAAE,CAAC;YAAC,CAAC;QACtB,CAAC;IACH,CAAC;AACH,CAAC","sources":["packages/notification/src/index.js"],"sourcesContent":["'use strict'\n\nimport { Shape } from '@symbo.ls/shape'\nimport { Block } from '@symbo.ls/block'\nimport { IconText } from '@symbo.ls/icon-text'\nimport { Direction } from '@symbo.ls/direction'\nimport { Flex } from '@symbo.ls/flex'\nimport { Text } from '@symbo.ls/text'\n\nexport const Notification = {\n style: { cursor: 'pointer' },\n proto: [Shape, Block, Direction, Flex],\n icon: {\n proto: [IconText],\n props: {\n icon: 'info'\n },\n style: {\n width: 'fit-content',\n height: 'fit-content'\n }\n },\n article: {\n proto: [Flex],\n style: {\n flexDirection: 'column',\n alignItems: 'flex-start'\n },\n caption: {\n proto: Text,\n text: 'Notification'\n },\n p: {\n proto: Text,\n props: {\n size: 'Z',\n text: 'is not always a distraction'\n },\n style: { margin: 0 }\n }\n }\n}\n"],"names":[],"version":3,"file":"index.js.map"}
@@ -1,17 +0,0 @@
1
- var $ebBnJ$domqlreacttransformer = require("@domql/react-transformer");
2
- var $ebBnJ$symbolsnotification = require("@symbo.ls/notification");
3
-
4
- function $parcel$export(e, n, v, s) {
5
- Object.defineProperty(e, n, {get: v, set: s, enumerable: true, configurable: true});
6
- }
7
-
8
- $parcel$export(module.exports, "Notification", () => $74e8c34790e86cd6$export$14834abbfce3b8cd);
9
-
10
-
11
- 'use strict';
12
- const $74e8c34790e86cd6$export$14834abbfce3b8cd = (props, state)=>{
13
- return $ebBnJ$domqlreacttransformer.reactTransformer($ebBnJ$symbolsnotification.Notification, props, state);
14
- };
15
-
16
-
17
- //# sourceMappingURL=index.js.map
@@ -1 +0,0 @@
1
- {"mappings":";;;;;;;;;;AAAA,CAAY;AAKL,KAAK,CAAC,yCAAY,IAAI,KAAK,EAAE,KAAK,GAAK,CAAC;IAC7C,MAAM,CAAC,6CAAgB,CAAC,uCAAS,EAAE,KAAK,EAAE,KAAK;AACjD,CAAC","sources":["packages/notification/packages/react/src/index.js"],"sourcesContent":["'use strict'\n\nimport { reactTransformer } from '@domql/react-transformer'\nimport { Notification as component } from '@symbo.ls/notification'\n\nexport const Notification = (props, state) => {\n return reactTransformer(component, props, state)\n}\n"],"names":[],"version":3,"file":"index.js.map"}