mirror of
https://github.com/pierre42100/comunic
synced 2025-07-14 13:58:15 +00:00
First commit
This commit is contained in:
4
developer/vendor/rockettheme/toolbox/Blueprints/tests/data/schema/defaults/basic.yaml
vendored
Normal file
4
developer/vendor/rockettheme/toolbox/Blueprints/tests/data/schema/defaults/basic.yaml
vendored
Normal file
@ -0,0 +1,4 @@
|
||||
enabled: true
|
||||
user:
|
||||
name: John
|
||||
country: fi
|
0
developer/vendor/rockettheme/toolbox/Blueprints/tests/data/schema/defaults/empty.yaml
vendored
Normal file
0
developer/vendor/rockettheme/toolbox/Blueprints/tests/data/schema/defaults/empty.yaml
vendored
Normal file
8
developer/vendor/rockettheme/toolbox/Blueprints/tests/data/schema/extra/basic.yaml
vendored
Normal file
8
developer/vendor/rockettheme/toolbox/Blueprints/tests/data/schema/extra/basic.yaml
vendored
Normal file
@ -0,0 +1,8 @@
|
||||
some:
|
||||
random: false
|
||||
variables:
|
||||
- true
|
||||
- false
|
||||
just: for
|
||||
fun:
|
||||
user.extra: data...
|
7
developer/vendor/rockettheme/toolbox/Blueprints/tests/data/schema/extra/empty.yaml
vendored
Normal file
7
developer/vendor/rockettheme/toolbox/Blueprints/tests/data/schema/extra/empty.yaml
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
some:
|
||||
random: false
|
||||
variables:
|
||||
- true
|
||||
- false
|
||||
just: for
|
||||
fun:
|
88
developer/vendor/rockettheme/toolbox/Blueprints/tests/data/schema/init/basic.yaml
vendored
Normal file
88
developer/vendor/rockettheme/toolbox/Blueprints/tests/data/schema/init/basic.yaml
vendored
Normal file
@ -0,0 +1,88 @@
|
||||
items:
|
||||
'':
|
||||
form:
|
||||
validation: loose
|
||||
type: _root
|
||||
form_field: false
|
||||
text:
|
||||
type: text
|
||||
label: Text
|
||||
placeholder: 'Enter your text'
|
||||
validation: loose
|
||||
name: text
|
||||
enabled:
|
||||
type: select
|
||||
label: Enabled
|
||||
default: true
|
||||
data-options@: blueprint_data_option_test
|
||||
validation: loose
|
||||
name: enabled
|
||||
options:
|
||||
'yes': 'Yes'
|
||||
'no': 'No'
|
||||
user:
|
||||
type: _parent
|
||||
name: user
|
||||
form_field: false
|
||||
user.name:
|
||||
type: name
|
||||
label: Name
|
||||
default: John
|
||||
validate:
|
||||
type: name
|
||||
validation: loose
|
||||
name: user.name
|
||||
user.country:
|
||||
type: select
|
||||
label: Enabled
|
||||
default: fi
|
||||
data-options@:
|
||||
- blueprint_data_option_test
|
||||
-
|
||||
us: 'United States'
|
||||
fi: Finland
|
||||
po: Poland
|
||||
- true
|
||||
validation: loose
|
||||
name: user.country
|
||||
options:
|
||||
fi: Finland
|
||||
po: Poland
|
||||
us: 'United States'
|
||||
undefined:
|
||||
type: select
|
||||
label: Undefined
|
||||
data-options@: undefined_function
|
||||
validation: loose
|
||||
name: undefined
|
||||
rules:
|
||||
name:
|
||||
pattern: '[A-Z][a-z]+'
|
||||
min: 3
|
||||
max: 15
|
||||
nested:
|
||||
'': ''
|
||||
text: text
|
||||
enabled: enabled
|
||||
user:
|
||||
name: user.name
|
||||
country: user.country
|
||||
undefined: undefined
|
||||
dynamic:
|
||||
enabled:
|
||||
options:
|
||||
action: data
|
||||
params: blueprint_data_option_test
|
||||
user.country:
|
||||
options:
|
||||
action: data
|
||||
params:
|
||||
- blueprint_data_option_test
|
||||
- { us: 'United States', fi: Finland, po: Poland }
|
||||
- true
|
||||
undefined:
|
||||
options:
|
||||
action: data
|
||||
params: undefined_function
|
||||
filter:
|
||||
validation: true
|
11
developer/vendor/rockettheme/toolbox/Blueprints/tests/data/schema/init/empty.yaml
vendored
Normal file
11
developer/vendor/rockettheme/toolbox/Blueprints/tests/data/schema/init/empty.yaml
vendored
Normal file
@ -0,0 +1,11 @@
|
||||
items:
|
||||
'':
|
||||
form: { }
|
||||
type: _root
|
||||
form_field: false
|
||||
rules: { }
|
||||
nested:
|
||||
'': ''
|
||||
dynamic: { }
|
||||
filter:
|
||||
validation: true
|
14
developer/vendor/rockettheme/toolbox/Blueprints/tests/data/schema/merge/basic.yaml
vendored
Normal file
14
developer/vendor/rockettheme/toolbox/Blueprints/tests/data/schema/merge/basic.yaml
vendored
Normal file
@ -0,0 +1,14 @@
|
||||
text: Testing...
|
||||
user:
|
||||
name: Igor
|
||||
country: fi
|
||||
extra: data...
|
||||
|
||||
some:
|
||||
random: false
|
||||
variables:
|
||||
- true
|
||||
- false
|
||||
just: for
|
||||
fun:
|
||||
enabled: true
|
7
developer/vendor/rockettheme/toolbox/Blueprints/tests/data/schema/merge/empty.yaml
vendored
Normal file
7
developer/vendor/rockettheme/toolbox/Blueprints/tests/data/schema/merge/empty.yaml
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
some:
|
||||
random: false
|
||||
variables:
|
||||
- true
|
||||
- false
|
||||
just: for
|
||||
fun:
|
81
developer/vendor/rockettheme/toolbox/Blueprints/tests/data/schema/state/basic.yaml
vendored
Normal file
81
developer/vendor/rockettheme/toolbox/Blueprints/tests/data/schema/state/basic.yaml
vendored
Normal file
@ -0,0 +1,81 @@
|
||||
items:
|
||||
'':
|
||||
form:
|
||||
validation: loose
|
||||
type: _root
|
||||
form_field: false
|
||||
text:
|
||||
type: text
|
||||
label: Text
|
||||
placeholder: 'Enter your text'
|
||||
validation: loose
|
||||
name: text
|
||||
enabled:
|
||||
type: select
|
||||
label: Enabled
|
||||
default: true
|
||||
data-options@: blueprint_data_option_test
|
||||
validation: loose
|
||||
name: enabled
|
||||
user:
|
||||
type: _parent
|
||||
name: user
|
||||
form_field: false
|
||||
user.name:
|
||||
type: name
|
||||
label: Name
|
||||
default: John
|
||||
validate:
|
||||
type: name
|
||||
validation: loose
|
||||
name: user.name
|
||||
user.country:
|
||||
type: select
|
||||
label: Enabled
|
||||
default: fi
|
||||
data-options@:
|
||||
- blueprint_data_option_test
|
||||
-
|
||||
us: 'United States'
|
||||
fi: Finland
|
||||
po: Poland
|
||||
- true
|
||||
validation: loose
|
||||
name: user.country
|
||||
undefined:
|
||||
type: select
|
||||
label: Undefined
|
||||
data-options@: undefined_function
|
||||
validation: loose
|
||||
name: undefined
|
||||
rules:
|
||||
name:
|
||||
pattern: '[A-Z][a-z]+'
|
||||
min: 3
|
||||
max: 15
|
||||
nested:
|
||||
'': ''
|
||||
text: text
|
||||
enabled: enabled
|
||||
user:
|
||||
name: user.name
|
||||
country: user.country
|
||||
undefined: undefined
|
||||
dynamic:
|
||||
enabled:
|
||||
options:
|
||||
action: data
|
||||
params: blueprint_data_option_test
|
||||
user.country:
|
||||
options:
|
||||
action: data
|
||||
params:
|
||||
- blueprint_data_option_test
|
||||
- { us: 'United States', fi: Finland, po: Poland }
|
||||
- true
|
||||
undefined:
|
||||
options:
|
||||
action: data
|
||||
params: undefined_function
|
||||
filter:
|
||||
validation: true
|
11
developer/vendor/rockettheme/toolbox/Blueprints/tests/data/schema/state/empty.yaml
vendored
Normal file
11
developer/vendor/rockettheme/toolbox/Blueprints/tests/data/schema/state/empty.yaml
vendored
Normal file
@ -0,0 +1,11 @@
|
||||
items:
|
||||
'':
|
||||
form: { }
|
||||
type: _root
|
||||
form_field: false
|
||||
rules: { }
|
||||
nested:
|
||||
'': ''
|
||||
dynamic: { }
|
||||
filter:
|
||||
validation: true
|
Reference in New Issue
Block a user