polaris_view_components 0.4.0 → 0.8.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +12 -2
- data/app/assets/javascripts/polaris_view_components/autocomplete_controller.js +136 -0
- data/app/assets/javascripts/polaris_view_components/button_controller.js +47 -0
- data/app/assets/javascripts/polaris_view_components/dropzone_controller.js +495 -0
- data/app/assets/javascripts/polaris_view_components/frame_controller.js +41 -0
- data/app/assets/javascripts/polaris_view_components/index.js +21 -1
- data/app/assets/javascripts/polaris_view_components/modal_controller.js +25 -0
- data/app/assets/javascripts/polaris_view_components/option_list_controller.js +41 -0
- data/app/assets/javascripts/polaris_view_components/polaris_controller.js +28 -0
- data/app/assets/javascripts/polaris_view_components/popover_controller.js +56 -0
- data/app/assets/javascripts/polaris_view_components/scrollable_controller.js +60 -0
- data/app/assets/javascripts/polaris_view_components/select_controller.js +6 -4
- data/app/assets/javascripts/polaris_view_components/text_field_controller.js +4 -0
- data/app/assets/javascripts/polaris_view_components/toast_controller.js +68 -0
- data/app/assets/javascripts/polaris_view_components/utils.js +23 -0
- data/app/assets/javascripts/polaris_view_components.js +2406 -5
- data/app/assets/stylesheets/polaris_view_components/custom.css +123 -0
- data/app/assets/stylesheets/polaris_view_components/shopify_navigation.css +0 -4
- data/app/assets/stylesheets/polaris_view_components.css +2162 -2019
- data/app/assets/stylesheets/polaris_view_components.postcss.css +1 -1
- data/app/components/polaris/action.rb +3 -3
- data/app/components/polaris/action_list/item_component.html.erb +35 -0
- data/app/components/polaris/action_list/item_component.rb +41 -0
- data/app/components/polaris/action_list/section_component.html.erb +16 -0
- data/app/components/polaris/action_list/section_component.rb +26 -0
- data/app/components/polaris/action_list_component.html.erb +13 -0
- data/app/components/polaris/action_list_component.rb +25 -0
- data/app/components/polaris/autocomplete/action_component.rb +7 -0
- data/app/components/polaris/autocomplete/option_component.rb +35 -0
- data/app/components/polaris/autocomplete/section_component.html.erb +9 -0
- data/app/components/polaris/autocomplete/section_component.rb +12 -0
- data/app/components/polaris/autocomplete_component.html.erb +30 -0
- data/app/components/polaris/autocomplete_component.rb +65 -0
- data/app/components/polaris/avatar_component.rb +2 -2
- data/app/components/polaris/badge_component.rb +2 -2
- data/app/components/polaris/banner_component.rb +8 -8
- data/app/components/polaris/base_button.rb +2 -2
- data/app/components/polaris/base_checkbox.rb +48 -0
- data/app/components/polaris/base_component.rb +1 -1
- data/app/components/polaris/base_radio_button.rb +38 -0
- data/app/components/polaris/button_component.html.erb +13 -0
- data/app/components/polaris/button_group_component.rb +8 -8
- data/app/components/polaris/callout_card_component.rb +6 -6
- data/app/components/polaris/caption_component.rb +3 -3
- data/app/components/polaris/card/header_component.rb +2 -2
- data/app/components/polaris/card/section_component.rb +8 -4
- data/app/components/polaris/card_component.html.erb +4 -0
- data/app/components/polaris/card_component.rb +6 -5
- data/app/components/polaris/character_count.rb +10 -10
- data/app/components/polaris/checkbox_component.html.erb +1 -5
- data/app/components/polaris/checkbox_component.rb +20 -13
- data/app/components/polaris/choice_component.rb +2 -2
- data/app/components/polaris/choice_list_component.rb +6 -6
- data/app/components/polaris/component.rb +6 -1
- data/app/components/polaris/data_table/cell_component.rb +4 -4
- data/app/components/polaris/data_table/column_component.rb +1 -1
- data/app/components/polaris/data_table_component.rb +4 -4
- data/app/components/polaris/description_list_component.rb +5 -5
- data/app/components/polaris/display_text_component.rb +3 -3
- data/app/components/polaris/dropzone_component.html.erb +156 -0
- data/app/components/polaris/dropzone_component.rb +150 -0
- data/app/components/polaris/empty_state_component.rb +4 -4
- data/app/components/polaris/exception_list/item_component.rb +3 -3
- data/app/components/polaris/exception_list_component.rb +2 -2
- data/app/components/polaris/filters_component.html.erb +35 -0
- data/app/components/polaris/filters_component.rb +91 -0
- data/app/components/polaris/footer_help_component.rb +2 -2
- data/app/components/polaris/form_layout/group_component.rb +5 -5
- data/app/components/polaris/form_layout/item_component.rb +2 -2
- data/app/components/polaris/form_layout_component.rb +4 -4
- data/app/components/polaris/frame/save_bar_component.html.erb +23 -0
- data/app/components/polaris/frame/save_bar_component.rb +31 -0
- data/app/components/polaris/frame/top_bar_component.html.erb +30 -0
- data/app/components/polaris/frame/top_bar_component.rb +18 -0
- data/app/components/polaris/frame_component.html.erb +44 -0
- data/app/components/polaris/frame_component.rb +33 -0
- data/app/components/polaris/heading_component.rb +2 -2
- data/app/components/polaris/headless_button.html.erb +13 -0
- data/app/components/polaris/headless_button.rb +18 -6
- data/app/components/polaris/icon_component.rb +3 -3
- data/app/components/polaris/index_table/cell_component.rb +22 -0
- data/app/components/polaris/index_table/column_component.rb +13 -0
- data/app/components/polaris/index_table_component.html.erb +28 -0
- data/app/components/polaris/index_table_component.rb +25 -0
- data/app/components/polaris/inline_error_component.html.erb +2 -2
- data/app/components/polaris/inline_error_component.rb +8 -2
- data/app/components/polaris/label_component.rb +3 -3
- data/app/components/polaris/labelled_component.rb +3 -3
- data/app/components/polaris/layout/annotated_section.rb +2 -2
- data/app/components/polaris/layout/section.rb +2 -2
- data/app/components/polaris/layout_component.rb +4 -4
- data/app/components/polaris/link_component.rb +4 -4
- data/app/components/polaris/list_component.rb +5 -5
- data/app/components/polaris/logo.rb +13 -0
- data/app/components/polaris/modal/section_component.rb +19 -0
- data/app/components/polaris/modal_component.html.erb +79 -0
- data/app/components/polaris/modal_component.rb +98 -0
- data/app/components/polaris/navigation/item_component.html.erb +31 -0
- data/app/components/polaris/navigation/item_component.rb +85 -0
- data/app/components/polaris/navigation/section_component.html.erb +17 -0
- data/app/components/polaris/navigation/section_component.rb +64 -0
- data/app/components/polaris/navigation_component.html.erb +29 -0
- data/app/components/polaris/navigation_component.rb +15 -0
- data/app/components/polaris/option_list/checkbox_component.html.erb +14 -0
- data/app/components/polaris/option_list/checkbox_component.rb +37 -0
- data/app/components/polaris/option_list/option_component.rb +24 -0
- data/app/components/polaris/option_list/radio_button_component.rb +54 -0
- data/app/components/polaris/option_list/section_component.html.erb +14 -0
- data/app/components/polaris/option_list/section_component.rb +53 -0
- data/app/components/polaris/option_list_component.html.erb +15 -0
- data/app/components/polaris/option_list_component.rb +67 -0
- data/app/components/polaris/page_actions_component.rb +22 -7
- data/app/components/polaris/page_component.rb +5 -5
- data/app/components/polaris/pagination_component.rb +2 -6
- data/app/components/polaris/popover/pane_component.html.erb +25 -0
- data/app/components/polaris/popover/pane_component.rb +20 -0
- data/app/components/polaris/popover/section_component.rb +19 -0
- data/app/components/polaris/popover_component.html.erb +31 -0
- data/app/components/polaris/popover_component.rb +113 -0
- data/app/components/polaris/progress_bar_component.rb +6 -6
- data/app/components/polaris/radio_button_component.html.erb +1 -6
- data/app/components/polaris/radio_button_component.rb +18 -8
- data/app/components/polaris/resource_item_component.html.erb +16 -6
- data/app/components/polaris/resource_item_component.rb +43 -10
- data/app/components/polaris/resource_list_component.html.erb +10 -0
- data/app/components/polaris/resource_list_component.rb +5 -11
- data/app/components/polaris/scrollable_component.html.erb +5 -0
- data/app/components/polaris/scrollable_component.rb +48 -0
- data/app/components/polaris/select_component.rb +11 -6
- data/app/components/polaris/setting_toggle_component.html.erb +10 -0
- data/app/components/polaris/setting_toggle_component.rb +24 -0
- data/app/components/polaris/shopify_navigation_component.rb +8 -8
- data/app/components/polaris/skeleton_body_text_component.rb +2 -2
- data/app/components/polaris/spacer_component.rb +4 -4
- data/app/components/polaris/spinner_component.rb +3 -3
- data/app/components/polaris/stack/item_component.rb +15 -0
- data/app/components/polaris/stack_component.rb +6 -22
- data/app/components/polaris/subheading_component.rb +2 -2
- data/app/components/polaris/tabs/tab_component.html.erb +10 -0
- data/app/components/polaris/tabs/tab_component.rb +34 -0
- data/app/components/polaris/tabs_component.html.erb +7 -0
- data/app/components/polaris/tabs_component.rb +37 -0
- data/app/components/polaris/tag_component.rb +3 -2
- data/app/components/polaris/text_container_component.rb +3 -3
- data/app/components/polaris/text_field_component.rb +25 -11
- data/app/components/polaris/text_style_component.rb +12 -3
- data/app/components/polaris/thumbnail_component.rb +3 -3
- data/app/components/polaris/toast_component.html.erb +21 -0
- data/app/components/polaris/toast_component.rb +40 -0
- data/app/components/polaris/top_bar/user_menu_component.html.erb +19 -0
- data/app/components/polaris/top_bar/user_menu_component.rb +9 -0
- data/app/components/polaris/visually_hidden_component.rb +1 -1
- data/app/helpers/polaris/form_builder.rb +44 -8
- data/app/helpers/polaris/url_helper.rb +3 -3
- data/app/helpers/polaris/view_helper.rb +37 -7
- data/app/validators/type_validator.rb +2 -2
- data/lib/generators/polaris_view_components/install_generator.rb +5 -5
- data/lib/polaris/view_components/engine.rb +16 -2
- data/lib/polaris/view_components/version.rb +1 -1
- data/lib/polaris_view_components.rb +1 -1
- metadata +85 -16
- data/app/components/polaris/application_component.rb +0 -35
- data/app/components/polaris/dropzone/component.html.erb +0 -72
- data/app/components/polaris/dropzone/component.rb +0 -128
- data/app/components/polaris/dropzone/controller.js +0 -226
- data/app/components/polaris/dropzone/utils.js +0 -57
- data/app/components/polaris/new_component.rb +0 -10
- data/app/helpers/polaris/conditional_helper.rb +0 -11
@@ -1,3 +1,7 @@
|
|
1
|
+
.Polaris--hidden {
|
2
|
+
display: none !important;
|
3
|
+
}
|
4
|
+
|
1
5
|
/* Add missing 1/4 section for layout */
|
2
6
|
@media (min-width: 30.625em) {
|
3
7
|
.Polaris-Layout__Section--oneFourth {
|
@@ -16,3 +20,122 @@ a.Polaris-Tag__Button {
|
|
16
20
|
.Polaris-DataTable__Cell--sortable a {
|
17
21
|
text-decoration: none;
|
18
22
|
}
|
23
|
+
|
24
|
+
/* CardSection borders */
|
25
|
+
.Polaris-Card__Section--borderTop {
|
26
|
+
border-top: 0.1rem solid var(--p-divider);
|
27
|
+
}
|
28
|
+
.Polaris-Card__Section--borderBottom {
|
29
|
+
border-bottom: 0.1rem solid var(--p-divider);
|
30
|
+
}
|
31
|
+
|
32
|
+
/* IndexTable */
|
33
|
+
|
34
|
+
/* TestStyle sizes */
|
35
|
+
.Polaris-TextStyle--sizeSmall {
|
36
|
+
font-size: 1.25rem;
|
37
|
+
}
|
38
|
+
|
39
|
+
/* Remove box-shadow from buttons and links */
|
40
|
+
.Polaris-Button::after,
|
41
|
+
.Polaris-Button:focus::after,
|
42
|
+
.Polaris-Breadcrumbs__Breadcrumb::after {
|
43
|
+
box-shadow: none !important;
|
44
|
+
}
|
45
|
+
|
46
|
+
.Polaris-Tabs__Tab:focus > .Polaris-Tabs__Title::after {
|
47
|
+
box-shadow: none !important;
|
48
|
+
}
|
49
|
+
|
50
|
+
/* ResourceItem */
|
51
|
+
.Polaris-ResourceItem__Owned--offset {
|
52
|
+
padding-left: 2rem;
|
53
|
+
}
|
54
|
+
|
55
|
+
/* Popover */
|
56
|
+
.Polaris-Popover {
|
57
|
+
margin: 0;
|
58
|
+
}
|
59
|
+
|
60
|
+
.Polaris-Popover__PopoverOverlay--closed {
|
61
|
+
visibility: hidden;
|
62
|
+
pointer-events: none;
|
63
|
+
}
|
64
|
+
|
65
|
+
/* Filters */
|
66
|
+
|
67
|
+
.Polaris-Filters-ConnectedFilterControl__RightContainer {
|
68
|
+
.Polaris-Filters-ConnectedFilterControl__Item {
|
69
|
+
& > div > div > button {
|
70
|
+
margin-right: var(--p-button-group-item-spacing);
|
71
|
+
border-radius: 0;
|
72
|
+
}
|
73
|
+
|
74
|
+
&:first-of-type > div > div > button {
|
75
|
+
border-top-left-radius: var(--p-border-radius-base);
|
76
|
+
border-bottom-left-radius: var(--p-border-radius-base);
|
77
|
+
}
|
78
|
+
}
|
79
|
+
|
80
|
+
&.Polaris-Filters-ConnectedFilterControl--queryFieldHidden {
|
81
|
+
.Polaris-Filters-ConnectedFilterControl__Item:first-of-type > div > div > button {
|
82
|
+
border-top-left-radius: var(--p-border-radius-base);
|
83
|
+
border-bottom-left-radius: var(--p-border-radius-base);
|
84
|
+
}
|
85
|
+
}
|
86
|
+
}
|
87
|
+
|
88
|
+
.Polaris-Filters-ConnectedFilterControl__RightContainerWithoutMoreFilters {
|
89
|
+
.Polaris-Filters-ConnectedFilterControl__Item:last-child > div > div > button {
|
90
|
+
border-top-right-radius: var(--p-border-radius-base);
|
91
|
+
border-bottom-right-radius: var(--p-border-radius-base);
|
92
|
+
}
|
93
|
+
}
|
94
|
+
|
95
|
+
/* Toast */
|
96
|
+
.Polaris-Frame-ToastManager {
|
97
|
+
bottom: 0;
|
98
|
+
}
|
99
|
+
|
100
|
+
/* Autocomplete */
|
101
|
+
|
102
|
+
.Polaris-Autocomplete__EmptyState {
|
103
|
+
padding: 0.8rem 1.6rem;
|
104
|
+
}
|
105
|
+
|
106
|
+
/* DropZone */
|
107
|
+
.Polaris-DropZone {
|
108
|
+
&__Preview {
|
109
|
+
padding: 1.5rem;
|
110
|
+
display: flex;
|
111
|
+
height: 100%;
|
112
|
+
|
113
|
+
&--singleFile {
|
114
|
+
align-items: center;
|
115
|
+
text-align: center;
|
116
|
+
justify-content: center;
|
117
|
+
}
|
118
|
+
|
119
|
+
&--sizeSmall {
|
120
|
+
padding: 0;
|
121
|
+
justify-content: center;
|
122
|
+
|
123
|
+
.Polaris-Thumbnail {
|
124
|
+
border: none;
|
125
|
+
|
126
|
+
img {
|
127
|
+
width: 100%;
|
128
|
+
object-fit: cover;
|
129
|
+
}
|
130
|
+
}
|
131
|
+
}
|
132
|
+
}
|
133
|
+
|
134
|
+
&__Loader {
|
135
|
+
display: flex;
|
136
|
+
height: 100%;
|
137
|
+
align-items: center;
|
138
|
+
text-align: center;
|
139
|
+
justify-content: center;
|
140
|
+
}
|
141
|
+
}
|
@@ -106,10 +106,6 @@
|
|
106
106
|
border-bottom: .3rem solid var(--p-action-primary)
|
107
107
|
}
|
108
108
|
|
109
|
-
.shp-Navigation_Link:focus {
|
110
|
-
box-shadow: inset 0 0 2px 0 rgba(92, 106, 196, .8), 0 0 2px 0 rgba(92, 106, 196, .8)
|
111
|
-
}
|
112
|
-
|
113
109
|
.shp-Navigation_Link:focus .shp-Navigation_LinkText {
|
114
110
|
font-weight: 400;
|
115
111
|
color: var(--p-text)
|