diff --git a/karma.conf.js b/karma.conf.js index 2069777..5643816 100644 --- a/karma.conf.js +++ b/karma.conf.js @@ -1,4 +1,3 @@ - /* global module */ // Karma configuration diff --git a/package.json b/package.json index ef81c1e..6febe51 100644 --- a/package.json +++ b/package.json @@ -1,14 +1,14 @@ { "name": "digit", "description": "Touch-optimized MontageJS components for tablets and phones.", - "version": "3.0.2", + "version": "3.0.3", "license": "BSD-3-Clause", "repository": { "type": "git", "url": "https://github.com/montagejs/digit.git" }, "dependencies": { - "montage": "^17.0.7" + "montage": "^17.0.11" }, "devDependencies": { "concurrently": "^3.4.0", diff --git a/test/spec/button/button-test.html b/test/spec/button/button-test.html index b78172f..eed0a07 100644 --- a/test/spec/button/button-test.html +++ b/test/spec/button/button-test.html @@ -8,14 +8,14 @@ { "test": { "prototype": "spec/button/button-test[Test]", - "properties": { + "values": { "button": {"@": "button"} } }, "button": { "prototype": "digit/ui/button.reel", - "properties": { + "values": { "element": {"#": "button"} } } diff --git a/test/spec/checkbox/checkbox-test.html b/test/spec/checkbox/checkbox-test.html index 338c295..cd5487a 100644 --- a/test/spec/checkbox/checkbox-test.html +++ b/test/spec/checkbox/checkbox-test.html @@ -8,7 +8,7 @@ { "test": { "prototype": "spec/checkbox/checkbox-test[Test]", - "properties": { + "values": { "checkbox": {"@": "checkbox"}, "checkboxAttributeChecked": {"@": "checkboxChecked"} } @@ -16,14 +16,14 @@ "checkbox": { "prototype": "digit/ui/checkbox.reel", - "properties": { + "values": { "element": {"#": "checkbox"} } }, "checkboxChecked": { "prototype": "digit/ui/checkbox.reel", - "properties": { + "values": { "element": {"#": "checkboxChecked"} } } diff --git a/test/spec/list/list-test.html b/test/spec/list/list-test.html index 3dfc582..4eb1635 100644 --- a/test/spec/list/list-test.html +++ b/test/spec/list/list-test.html @@ -7,14 +7,14 @@ { "test": { "prototype": "spec/list/list-test", - "properties": { + "values": { "list1": {"@": "list1"} } }, "list1": { "prototype": "digit/ui/list.reel", - "properties": { + "values": { "element": {"#": "list1"}, "content": [0, 1, 2, 0, 1, 2, 0, 1, 2, 0, 1, 2, 0, 1, 2] } @@ -22,7 +22,7 @@ "listItem1": { "prototype": "digit/ui/list-item.reel", - "properties": { + "values": { "element": {"#": "listItem1"} } } diff --git a/test/spec/number-field/number-field-test.html b/test/spec/number-field/number-field-test.html index 70612af..8c97f62 100644 --- a/test/spec/number-field/number-field-test.html +++ b/test/spec/number-field/number-field-test.html @@ -8,7 +8,7 @@ { "test": { "prototype": "spec/number-field/number-field-test[Test]", - "properties": { + "values": { "numberField": {"@": "numberField"}, "numberFieldWithAttributes": {"@": "attributes"} } @@ -16,14 +16,14 @@ "numberField": { "prototype": "digit/ui/number-field.reel", - "properties": { + "values": { "element": {"#": "numberField"} } }, "attributes": { "prototype": "digit/ui/number-field.reel", - "properties": { + "values": { "element": {"#": "attributes"} } } diff --git a/test/spec/radio-button/radio-button-test.html b/test/spec/radio-button/radio-button-test.html index 2c7a391..73a33e6 100644 --- a/test/spec/radio-button/radio-button-test.html +++ b/test/spec/radio-button/radio-button-test.html @@ -12,7 +12,7 @@ "radioButton1": { "prototype": "digit/ui/radio-button.reel", - "properties": { + "values": { "element": {"#": "radioButton1"} } } diff --git a/test/spec/select/select-test.html b/test/spec/select/select-test.html index 9c1cf56..9fffe3b 100644 --- a/test/spec/select/select-test.html +++ b/test/spec/select/select-test.html @@ -8,7 +8,7 @@ { "test": { "prototype": "spec/select/select-test[Test]", - "properties": { + "values": { "select": {"@": "select"}, "selectWithContent": {"@": "selectWithContent"}, "selectWithOptions": {"@": "selectWithOptions"}, @@ -18,14 +18,14 @@ "select": { "prototype": "digit/ui/select.reel", - "properties": { + "values": { "element": {"#": "select"} } }, "selectWithContent": { "prototype": "digit/ui/select.reel", - "properties": { + "values": { "element": {"#": "selectWithContent"}, "content": [ {"label": "Arizona"}, @@ -39,14 +39,14 @@ "selectWithOptions": { "prototype": "digit/ui/select.reel", - "properties": { + "values": { "element": {"#": "selectWithOptions"} } }, "selectWithAttributes": { "prototype": "digit/ui/select.reel", - "properties": { + "values": { "element": {"#": "selectWithAttributes"} } } diff --git a/test/spec/slider/slider-test.html b/test/spec/slider/slider-test.html index 20d54ce..d5762f5 100644 --- a/test/spec/slider/slider-test.html +++ b/test/spec/slider/slider-test.html @@ -8,21 +8,21 @@ { "test": { "prototype": "spec/slider/slider-test[Test]", - "properties": { + "values": { "inputRange": {"@": "slider"} } }, "slider": { "prototype": "digit/ui/slider.reel", - "properties": { + "values": { "element": {"#": "slider"} } }, "verticalSlider": { "prototype": "digit/ui/slider.reel", - "properties": { + "values": { "element": {"#": "verticalSlider"}, "axis": "vertical" } @@ -30,7 +30,7 @@ "verticalSlider2": { "prototype": "digit/ui/slider.reel", - "properties": { + "values": { "element": {"#": "verticalSlider2"}, "axis": "vertical" } diff --git a/test/spec/text-area/text-area-test.html b/test/spec/text-area/text-area-test.html index 1296b98..4cf2eef 100644 --- a/test/spec/text-area/text-area-test.html +++ b/test/spec/text-area/text-area-test.html @@ -12,14 +12,14 @@ "textArea": { "prototype": "digit/ui/text-area.reel", - "properties": { + "values": { "element": {"#": "textArea"} } }, "textAreaWithAttributes": { "prototype": "digit/ui/text-area.reel", - "properties": { + "values": { "element": {"#": "textAreaWithAttributes"} } } diff --git a/test/spec/text-field/text-field-test.html b/test/spec/text-field/text-field-test.html index a2624f2..6a60fca 100644 --- a/test/spec/text-field/text-field-test.html +++ b/test/spec/text-field/text-field-test.html @@ -8,7 +8,7 @@ { "test": { "prototype": "spec/text-field/text-field-test[Test]", - "properties": { + "values": { "textField": {"@": "textField"}, "textFieldWithAttributes": {"@": "textFieldWithAttributes"} } @@ -16,14 +16,14 @@ "textField": { "prototype": "digit/ui/text-field.reel", - "properties": { + "values": { "element": {"#": "textField"} } }, "textFieldWithAttributes": { "prototype": "digit/ui/text-field.reel", - "properties": { + "values": { "element": {"#": "textFieldWithAttributes"} } } diff --git a/test/spec/toggle-switch/toggle-switch-test.html b/test/spec/toggle-switch/toggle-switch-test.html index c5b787f..454731e 100644 --- a/test/spec/toggle-switch/toggle-switch-test.html +++ b/test/spec/toggle-switch/toggle-switch-test.html @@ -8,14 +8,14 @@ { "test": { "prototype": "spec/toggle-switch/toggle-switch-test[Test]", - "properties": { + "values": { "toggleSwitch": {"@": "toggleSwitch"} } }, "toggleSwitch": { "prototype": "digit/ui/toggle-switch.reel", - "properties": { + "values": { "element": {"#": "toggleSwitch"} } } diff --git a/test/spec/video/video-test.html b/test/spec/video/video-test.html index cfa9153..7ef107c 100644 --- a/test/spec/video/video-test.html +++ b/test/spec/video/video-test.html @@ -8,14 +8,14 @@ { "test": { "prototype": "spec/video/video-test[Test]", - "properties": { + "values": { "video": {"@": "video"} } }, "video": { "prototype": "digit/ui/video.reel", - "properties": { + "values": { "element": {"#": "video"}, "src": "digit/ui/video.reel/video.mov", "posterSrc": "digit/ui/video.reel/poster.png" diff --git a/ui/badge.reel/README.md b/ui/badge.reel/README.md index 9fc739c..f381077 100644 --- a/ui/badge.reel/README.md +++ b/ui/badge.reel/README.md @@ -9,7 +9,7 @@ The Badge can be used as a notification counter or highlighting. ```json "badge": { "prototype": "digit/ui/badge.reel", - "properties": { + "values": { "element": {"#": "badge"} } } diff --git a/ui/badge.reel/badge.meta b/ui/badge.reel/badge.meta index bca38ce..7db51d1 100644 --- a/ui/badge.reel/badge.meta +++ b/ui/badge.reel/badge.meta @@ -1,7 +1,7 @@ { "blueprint_parent": { "prototype": "montage/core/meta/blueprint-reference", - "properties": { + "values": { "valueReference": { "blueprintName": "Text", "prototypeName": "Text", @@ -13,7 +13,7 @@ }, "root": { "prototype": "montage/core/meta/module-blueprint", - "properties": { + "values": { "name": "Badge", "parent": { "@": "blueprint_parent" diff --git a/ui/big-list.reel/big-list.html b/ui/big-list.reel/big-list.html index 47a0621..40db4bd 100644 --- a/ui/big-list.reel/big-list.html +++ b/ui/big-list.reel/big-list.html @@ -6,24 +6,22 @@