@symbo.ls/input 2.11.175 → 2.11.178

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.
@@ -2,7 +2,7 @@
2
2
 
3
3
  import { Flex } from '@symbo.ls/atoms'
4
4
 
5
- export const CheckBox = {
5
+ export const Checkbox = {
6
6
  tag: 'label',
7
7
 
8
8
  props: {
@@ -40,7 +40,7 @@ export const CheckBox = {
40
40
  }
41
41
  }
42
42
 
43
- export const CheckBoxTitleParagraph = {
43
+ export const CheckboxTitleParagraph = {
44
44
  extend: Flex,
45
45
  props: {
46
46
  boxSize: 'fit-content',
@@ -48,7 +48,7 @@ export const CheckBoxTitleParagraph = {
48
48
  gap: 'A'
49
49
  },
50
50
 
51
- CheckBox: {},
51
+ Checkbox: {},
52
52
  TitleParagraph: {
53
53
  gap: 'Z1',
54
54
  margin: 'Y - - -'
package/Radio.js CHANGED
@@ -1,9 +1,9 @@
1
1
  'use strict'
2
2
 
3
- import { CheckBox, CheckBoxTitleParagraph } from './CheckBox'
3
+ import { Checkbox, CheckboxTitleParagraph } from './Checkbox'
4
4
 
5
5
  export const Radio = {
6
- extend: CheckBox,
6
+ extend: Checkbox,
7
7
 
8
8
  Input: {
9
9
  type: 'radio',
@@ -29,7 +29,7 @@ export const Radio = {
29
29
  }
30
30
 
31
31
  export const RadioTitleParagraph = {
32
- extend: CheckBoxTitleParagraph,
33
- CheckBox: null,
32
+ extend: CheckboxTitleParagraph,
33
+ Checkbox: null,
34
34
  Radio: {}
35
35
  }
package/Toggle.js CHANGED
@@ -1,9 +1,9 @@
1
1
  'use strict'
2
2
 
3
- import { CheckBox, CheckBoxTitleParagraph } from './CheckBox'
3
+ import { Checkbox, CheckboxTitleParagraph } from './Checkbox'
4
4
 
5
5
  export const Toggle = {
6
- extend: CheckBox,
6
+ extend: Checkbox,
7
7
 
8
8
  Input: {
9
9
  ':checked ~ div': {
@@ -34,7 +34,7 @@ export const Toggle = {
34
34
  }
35
35
 
36
36
  export const ToggleTitleParagraph = {
37
- extend: CheckBoxTitleParagraph,
38
- CheckBox: null,
37
+ extend: CheckboxTitleParagraph,
38
+ Checkbox: null,
39
39
  Toggle: {}
40
40
  }
package/index.js CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  export * from './Input'
4
4
  export * from './Number'
5
- export * from './CheckBox'
5
+ export * from './Checkbox'
6
6
  export * from './Radio'
7
7
  export * from './Toggle'
8
8
  export * from './TextArea'
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@symbo.ls/input",
3
- "version": "2.11.175",
3
+ "version": "2.11.178",
4
4
  "main": "index.js",
5
5
  "source": "index.js",
6
6
  "license": "MIT",
7
- "gitHead": "11724dc404a724c59ddcfe9e6b54a78329ee7c10",
7
+ "gitHead": "32da4c933b075401d1ed8a8c56b6e6b190bb9424",
8
8
  "dependencies": {
9
9
  "@domql/utils": "latest",
10
10
  "@symbo.ls/atoms": "latest",