playbook_ui_docs 14.20.0.pre.alpha.PLAY22297981 → 14.20.0.pre.alpha.play2168firstcolumnborderbug7950

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 76821ec674d30495cfd6a88a187c8dfaf3b389fd67544bbfe64bdd6217423506
4
- data.tar.gz: 2596c60c522ba4f25ec249477fb8f0528a6db11f56ed5788044fafe6bb66d305
3
+ metadata.gz: eb52e44d330a2e50252467d317e976541cf6636ee0372a335db6d56cd5792755
4
+ data.tar.gz: ed11e6a5e9abb8ce317ad2493299bd7195b7d43a88cc49dfbebf183c04a7335c
5
5
  SHA512:
6
- metadata.gz: 8a188e51fe531731f9d852f52f35516392de7034590be59519338c00d46496c1b0e9ae0b54c027aa114bd13a937a014e1a81b3dd6428e9e6e336cc99c3a2bafa
7
- data.tar.gz: 6cd9d3268d174e033c3b428947b34649b4045c01a69a0ae2f0f93fea66aa8669167868a3eca6b8c8641b6169b8b8bc469ff16897ad522117cc183dba6cee9191
6
+ metadata.gz: 1d45a1beba450c94fd2b8c09d1d21b194b05680d1cdfcb88b654ec9b690d60e0a4c3deec01ab8c4d3b6655b492c7f617fa439e8063912d3f8aa7b32a7d5c9085
7
+ data.tar.gz: 34b97f4eee1e2080f37ace8b1b3ff752e0f671e591b8d760b28e95c7c7352a40fb49126afcd45a485911363f5e7a67a6ad4969f021ef5891921dffb0560088c4
@@ -30,4 +30,4 @@
30
30
  }
31
31
  ] %>
32
32
 
33
- <%= pb_rails("advanced_table", props: { id: "table_props_table", table_data: @table_data, column_definitions: column_definitions, table_props: { vertical_border: true, container: false }}) %>
33
+ <%= pb_rails("advanced_table", props: { id: "table_props_table", table_data: @table_data, column_definitions: column_definitions, table_props: { container: false }}) %>
@@ -6,7 +6,7 @@ const PhoneNumberInputOnlyCountries = (props) => (
6
6
  <PhoneNumberInput
7
7
  id='only'
8
8
  onlyCountries={['us', 'br']}
9
- {...props}
9
+ {...props}
10
10
  />
11
11
  </>
12
12
  )
@@ -4,8 +4,7 @@ examples:
4
4
  - phone_number_input_default: Default
5
5
  - phone_number_input_preferred_countries: Preferred Countries
6
6
  - phone_number_input_initial_country: Initial Country
7
- - phone_number_input_only_countries: Only Countries
8
- - phone_number_input_exclude_countries: Exclude Countries
7
+ - phone_number_input_only_countries: Limited Countries
9
8
  - phone_number_input_validation: Form Validation
10
9
  - phone_number_input_clear_field: Clearing the Input Field
11
10
  - phone_number_input_access_input_element: Accessing the Input Element
@@ -16,9 +15,9 @@ examples:
16
15
  - phone_number_input_default: Default
17
16
  - phone_number_input_preferred_countries: Preferred Countries
18
17
  - phone_number_input_initial_country: Initial Country
19
- - phone_number_input_only_countries: Only Countries
20
- - phone_number_input_exclude_countries: Exclude Countries
18
+ - phone_number_input_only_countries: Limited Countries
21
19
  - phone_number_input_validation: Form Validation
22
20
  - phone_number_input_format: Format as You Type
23
21
  - phone_number_input_hidden_inputs: Hidden Inputs
24
22
  - phone_number_input_country_search: Country Search
23
+
@@ -2,7 +2,6 @@ export { default as PhoneNumberInputDefault } from './_phone_number_input_defaul
2
2
  export { default as PhoneNumberInputPreferredCountries } from './_phone_number_input_preferred_countries'
3
3
  export { default as PhoneNumberInputInitialCountry } from './_phone_number_input_initial_country'
4
4
  export { default as PhoneNumberInputOnlyCountries } from './_phone_number_input_only_countries'
5
- export { default as PhoneNumberInputExcludeCountries } from './_phone_number_input_exclude_countries'
6
5
  export { default as PhoneNumberInputValidation } from './_phone_number_input_validation'
7
6
  export { default as PhoneNumberInputClearField } from './_phone_number_input_clear_field'
8
7
  export { default as PhoneNumberInputAccessInputElement } from './_phone_number_input_access_input_element'