playbook_ui 12.30.0 → 12.30.1.pre.alpha.PLAY906multilevelselectedidsprop912

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Playbook
4
- PREVIOUS_VERSION = "12.29.0"
5
- VERSION = "12.30.0"
4
+ PREVIOUS_VERSION = "12.30.1"
5
+ VERSION = "12.30.1.pre.alpha.PLAY906multilevelselectedidsprop912"
6
6
  end
metadata CHANGED
@@ -1,15 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: playbook_ui
3
3
  version: !ruby/object:Gem::Version
4
- version: 12.30.0
4
+ version: 12.30.1.pre.alpha.PLAY906multilevelselectedidsprop912
5
5
  platform: ruby
6
6
  authors:
7
7
  - Power UX
8
8
  - Power Devs
9
- autorequire:
9
+ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2023-07-11 00:00:00.000000000 Z
12
+ date: 2023-07-12 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: actionpack
@@ -2182,9 +2182,6 @@ files:
2182
2182
  - app/pb_kits/playbook/pb_title/docs/_title_light_weight.html.erb
2183
2183
  - app/pb_kits/playbook/pb_title/docs/_title_light_weight.jsx
2184
2184
  - app/pb_kits/playbook/pb_title/docs/_title_light_weight.md
2185
- - app/pb_kits/playbook/pb_title/docs/_title_responsive.html.erb
2186
- - app/pb_kits/playbook/pb_title/docs/_title_responsive.jsx
2187
- - app/pb_kits/playbook/pb_title/docs/_title_responsive.md
2188
2185
  - app/pb_kits/playbook/pb_title/docs/example.yml
2189
2186
  - app/pb_kits/playbook/pb_title/docs/index.js
2190
2187
  - app/pb_kits/playbook/pb_title/title.html.erb
@@ -2521,7 +2518,7 @@ homepage: https://playbook.powerapp.cloud/
2521
2518
  licenses:
2522
2519
  - ISC
2523
2520
  metadata: {}
2524
- post_install_message:
2521
+ post_install_message:
2525
2522
  rdoc_options: []
2526
2523
  require_paths:
2527
2524
  - lib
@@ -2532,12 +2529,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
2532
2529
  version: '0'
2533
2530
  required_rubygems_version: !ruby/object:Gem::Requirement
2534
2531
  requirements:
2535
- - - ">="
2532
+ - - ">"
2536
2533
  - !ruby/object:Gem::Version
2537
- version: '0'
2534
+ version: 1.3.1
2538
2535
  requirements: []
2539
2536
  rubygems_version: 3.3.7
2540
- signing_key:
2537
+ signing_key:
2541
2538
  specification_version: 4
2542
2539
  summary: Playbook Design System
2543
2540
  test_files: []
@@ -1 +0,0 @@
1
- <%= pb_rails("title", props: { text: "Responsive Title", tag: "h1", size: {xs: 3, sm: 2, md: 1} }) %>
@@ -1,16 +0,0 @@
1
- import React from 'react'
2
- import Title from '../_title'
3
-
4
- const TitleResponsive = (props) => {
5
- return (
6
- <>
7
- <Title
8
- size={{xs: "3", sm: "2", md: "1"}}
9
- text="Responsive Title"
10
- {...props}
11
- />
12
- </>
13
- )
14
- }
15
-
16
- export default TitleResponsive
@@ -1 +0,0 @@
1
- The `size` prop supports responsive sizes. To use them, pass an object to the size prop containing your size values relative to responsive break points (show code below). To test this here, resize your browser window to responsively change this Title's size.