From 6d9a2397116667a565460e94c5f361cab237a52e Mon Sep 17 00:00:00 2001 From: Denise Pena Date: Thu, 24 Jan 2019 10:49:18 -0600 Subject: [PATCH] Repeater updates (#216) * added isExpanded property * added default value * added footer * added missing properties * Doc tweaks --- skyuxconfig.json | 5 ++++ src/app/components/repeater/index.html | 35 +++++++++++++++----------- 2 files changed, 26 insertions(+), 14 deletions(-) diff --git a/skyuxconfig.json b/skyuxconfig.json index 568db2a78..28452cd40 100644 --- a/skyuxconfig.json +++ b/skyuxconfig.json @@ -5,12 +5,17 @@ "host": { "url": "https://developer.blackbaud.com" }, + "app": { + "title": "Blackbaud SKY UX" + }, "appSettings": { "stache": { "editButton": { "text": "Suggest edit", "url": "https://github.com/blackbaud/skyux2-docs" }, + "footer": { + }, "searchConfig": { "is_internal": false } diff --git a/src/app/components/repeater/index.html b/src/app/components/repeater/index.html index 597b369ae..bd3a9815c 100644 --- a/src/app/components/repeater/index.html +++ b/src/app/components/repeater/index.html @@ -5,42 +5,49 @@ > - The repeater component creates a container to display information for a list of objects. As an alternative to a grid layout, repeaters are particularly effective for mobile-intensive contexts and other scenarios that require the compact display of information. + The repeater component creates a container to display information for a list of objects. A repeater list is particularly effective as an alternative to a grid layout in mobile-intensive contexts and other scenarios that require the compact display of information. Within the sky-repeater component, the sky-repeater-item component creates individual repeater items. Within the repeater items, the sky-repeater-item-title component displays a header, the sky-repeater-item-content component displays content text when the repeater is expanded, and the sky-repeater-item-context-menu wraps and styles a sky-dropdown component. - + + - Specifies a layout for the repeater list to indicate whether users can collapse and expand repeater items. Items in a collapsed state display titles only. The valid options are none, multiple, and single. + Specifies a layout for the repeater list to indicate whether users can collapse and expand repeater items. Items in a collapsed state display titles only. The valid options are multiple, none, and single. (Default: none)
  • - none loads all repeater items in an expanded state and does not allow users to collapse them. This standard layout provides the quickest access to the details in the repeater items. It is best-suited to repeater items with concise content that users need to view frequently. + multiple loads all repeater items in a collapsed state and allows users to expand and collapse them. This layout provides a more compact view but still allows users to expand as many repeater items as necessary. It is best-suited to repeater items where the most important information is in the titles and users only occasionally need to view body content.
  • - multiple loads all repeater items in a collapsed state and allow users to expand and collapse them. This layout provides a more compact view but still allows users to expand as many repeater items as necessary. It is best-suited to repeater items where the most important information is in the titles and users only occasionally need to view body content. + none loads all repeater items in an expanded state and does not allow users to collapse them. This standard layout provides the quickest access to the details in the repeater items. It is best-suited to repeater items with concise content that users need to view frequently.
  • - single loads all repeater items in a collapsed state and allow users to expand one item at a time. This layout provides the most compact view because users can only expand one repeater item at a time. It is best-suited to repeater items where the most important information is in the titles and users only occasionally need to view body content of one repeater item at a time. + single loads all repeater items in a collapsed state and allows users to expand one item at a time. This layout provides the most compact view because users can only expand one repeater item at a time. It is best-suited to repeater items where the most important information is in the titles and users only occasionally need to view the body content of one repeater item at a time.
- +
+ - Indicates whether to display a checkbox in the left of the repeater item. + Indicates whether the repeater item is expanded. This property accepts boolean values. - + Indicates whether the repeater item's checkbox is selected. When users select the repeater item, the specified property on your model is updated accordingly. This property accepts boolean values. + + - Specifies whether the repeater item is selected (i.e. its checkbox is checked). When the user selects the repeater item the specified property on your model will be updated accordingly. + Indicates whether to display a checkbox in the left of the repeater item. This property accepts boolean values.