@symbo.ls/input 2.11.261 → 2.11.267

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/Checkbox.js CHANGED
@@ -48,7 +48,7 @@ export const Checkbox = {
48
48
  }
49
49
  }
50
50
 
51
- export const CheckboxTitleParagraph = {
51
+ export const CheckboxHgroup = {
52
52
  extend: Flex,
53
53
  tag: 'label',
54
54
 
@@ -59,7 +59,7 @@ export const CheckboxTitleParagraph = {
59
59
  },
60
60
 
61
61
  Checkbox: { tag: 'div' },
62
- TitleParagraphRows: {
62
+ HgroupRows: {
63
63
  gap: 'Z1',
64
64
  margin: 'Y - - -'
65
65
  }
package/Radio.js CHANGED
@@ -1,7 +1,7 @@
1
1
  'use strict'
2
2
 
3
3
  import { Pseudo } from '@symbo.ls/atoms'
4
- import { Checkbox, CheckboxTitleParagraph } from './Checkbox'
4
+ import { Checkbox, CheckboxHgroup } from './Checkbox'
5
5
 
6
6
  export const Radio = {
7
7
  extend: Checkbox,
@@ -30,8 +30,8 @@ export const Radio = {
30
30
  }
31
31
  }
32
32
 
33
- export const RadioTitleParagraph = {
34
- extend: CheckboxTitleParagraph,
33
+ export const RadioHgroup = {
34
+ extend: CheckboxHgroup,
35
35
  Checkbox: null,
36
36
  Radio: {}
37
37
  }
package/Textarea.js CHANGED
@@ -52,7 +52,7 @@ export const TextareaWithButton = {
52
52
  round: 'Z2',
53
53
  minHeight: 'fit-content'
54
54
  },
55
- IconCommonButton: {
55
+ IconFlexButton: {
56
56
  props: {
57
57
  background: 'blue',
58
58
  Icon: { name: 'send' }
package/Toggle.js CHANGED
@@ -1,6 +1,6 @@
1
1
  'use strict'
2
2
 
3
- import { Checkbox, CheckboxTitleParagraph } from './Checkbox'
3
+ import { Checkbox, CheckboxHgroup } from './Checkbox'
4
4
 
5
5
  export const Toggle = {
6
6
  extend: Checkbox,
@@ -16,8 +16,8 @@ export const Toggle = {
16
16
 
17
17
  Flex: {
18
18
  props: {
19
- boxSize: 'A+X B+Z',
20
- padding: '- W',
19
+ boxSize: 'A1 B1',
20
+ padding: '- W_default',
21
21
  round: 'D',
22
22
  align: 'center flex-start',
23
23
  theme: 'field',
@@ -35,8 +35,8 @@ export const Toggle = {
35
35
  }
36
36
  }
37
37
 
38
- export const ToggleTitleParagraph = {
39
- extend: CheckboxTitleParagraph,
38
+ export const ToggleHgroup = {
39
+ extend: CheckboxHgroup,
40
40
  Checkbox: null,
41
41
  Toggle: {}
42
42
  }
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@symbo.ls/input",
3
- "version": "2.11.261",
3
+ "version": "2.11.267",
4
4
  "main": "index.js",
5
5
  "source": "index.js",
6
6
  "license": "MIT",
7
- "gitHead": "53e63702105d8c7baf0f136c5756383533bf3b30",
7
+ "gitHead": "8641ea0f87d8ae5c7c0266f94a38f5714cac1e34",
8
8
  "dependencies": {
9
9
  "@domql/utils": "latest",
10
10
  "@symbo.ls/atoms": "latest"