playbook_ui_docs 13.10.0.pre.alpha.PLAY1051removinghighchartsdependency1465 → 13.10.0.pre.alpha.dependabotnpmandyarnfortawesomefontawesomepro6421439

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.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: playbook_ui_docs
3
3
  version: !ruby/object:Gem::Version
4
- version: 13.10.0.pre.alpha.PLAY1051removinghighchartsdependency1465
4
+ version: 13.10.0.pre.alpha.dependabotnpmandyarnfortawesomefontawesomepro6421439
5
5
  platform: ruby
6
6
  authors:
7
7
  - Power UX
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2023-11-10 00:00:00.000000000 Z
12
+ date: 2023-11-08 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: playbook_ui
@@ -255,15 +255,11 @@ files:
255
255
  - app/pb_kits/playbook/pb_checkbox/docs/_checkbox_custom.jsx
256
256
  - app/pb_kits/playbook/pb_checkbox/docs/_checkbox_default.html.erb
257
257
  - app/pb_kits/playbook/pb_checkbox/docs/_checkbox_default.jsx
258
- - app/pb_kits/playbook/pb_checkbox/docs/_checkbox_default_swift.md
259
258
  - app/pb_kits/playbook/pb_checkbox/docs/_checkbox_error.html.erb
260
259
  - app/pb_kits/playbook/pb_checkbox/docs/_checkbox_error.jsx
261
- - app/pb_kits/playbook/pb_checkbox/docs/_checkbox_error_swift.md
262
260
  - app/pb_kits/playbook/pb_checkbox/docs/_checkbox_indeterminate.html.erb
263
261
  - app/pb_kits/playbook/pb_checkbox/docs/_checkbox_indeterminate.jsx
264
- - app/pb_kits/playbook/pb_checkbox/docs/_checkbox_indeterminate_swift.md
265
262
  - app/pb_kits/playbook/pb_checkbox/docs/_checkbox_options.html.erb
266
- - app/pb_kits/playbook/pb_checkbox/docs/_checkbox_props_swift.md
267
263
  - app/pb_kits/playbook/pb_checkbox/docs/_description.md
268
264
  - app/pb_kits/playbook/pb_checkbox/docs/example.yml
269
265
  - app/pb_kits/playbook/pb_checkbox/docs/index.js
@@ -736,9 +732,6 @@ files:
736
732
  - app/pb_kits/playbook/pb_icon_circle/docs/_icon_circle_color.html.erb
737
733
  - app/pb_kits/playbook/pb_icon_circle/docs/_icon_circle_color.jsx
738
734
  - app/pb_kits/playbook/pb_icon_circle/docs/_icon_circle_color.md
739
- - app/pb_kits/playbook/pb_icon_circle/docs/_icon_circle_color_props.md
740
- - app/pb_kits/playbook/pb_icon_circle/docs/_icon_circle_color_swift.md
741
- - app/pb_kits/playbook/pb_icon_circle/docs/_icon_circle_defaul_swift.md
742
735
  - app/pb_kits/playbook/pb_icon_circle/docs/_icon_circle_default.html.erb
743
736
  - app/pb_kits/playbook/pb_icon_circle/docs/_icon_circle_default.jsx
744
737
  - app/pb_kits/playbook/pb_icon_circle/docs/_icon_circle_emoji.html.erb
@@ -746,7 +739,6 @@ files:
746
739
  - app/pb_kits/playbook/pb_icon_circle/docs/_icon_circle_emoji.md
747
740
  - app/pb_kits/playbook/pb_icon_circle/docs/_icon_circle_sizes.html.erb
748
741
  - app/pb_kits/playbook/pb_icon_circle/docs/_icon_circle_sizes.jsx
749
- - app/pb_kits/playbook/pb_icon_circle/docs/_icon_circle_sizes_swift.md
750
742
  - app/pb_kits/playbook/pb_icon_circle/docs/example.yml
751
743
  - app/pb_kits/playbook/pb_icon_circle/docs/index.js
752
744
  - app/pb_kits/playbook/pb_icon_stat_value/docs/_icon_stat_value_color.html.erb
@@ -1,10 +0,0 @@
1
- ![checkbox-default](https://github.com/powerhome/playbook/assets/92755007/dc3af1fb-8786-4002-ac64-3111b5b8c476)
2
-
3
- ```swift
4
-
5
- PBCheckbox(checked: false, text: "Unchecked", action: {})
6
- .padding(.bottom, Spacing.small)
7
-
8
- PBCheckbox(checked: true, text: "Checked", action: {})
9
-
10
- ```
@@ -1,12 +0,0 @@
1
- ![checkbox-error](https://github.com/powerhome/playbook/assets/92755007/6466de7f-fbfb-418b-8c5a-74d07a0c4f63)
2
-
3
- ```swift
4
-
5
- PBCheckbox(
6
- checked: false,
7
- checkboxType: .error,
8
- text: "Error",
9
- action: {}
10
- )
11
-
12
- ```
@@ -1,12 +0,0 @@
1
- ![checkbox-indeterminate](https://github.com/powerhome/playbook/assets/92755007/eacd6976-bd00-41a9-aca1-75ce23b6a58c)
2
-
3
- ```swift
4
-
5
- PBCheckbox(
6
- checked: true,
7
- checkboxType: .indeterminate,
8
- text: "Indeterminate",
9
- action: {}
10
- )
11
-
12
- ```
@@ -1,7 +0,0 @@
1
- ### Props
2
- | Name | Type | Description | Default | Values |
3
- | --- | ----------- | --------- | --------- | --------- |
4
- | **Checked** | `Bool` | Adds a check to the Checkbox | `false` | `true` `false` |
5
- | **Checkbox Type** | `CheckboxType` | Changes the style of the Checkbox | `default` | `default` `error` `indeterminate` |
6
- | **Text** | `String` | Adds a text label | `nil` | |
7
- | **Action** | `(() -> Void)` | Adds an action | `{}` | |
@@ -1,6 +0,0 @@
1
- ### Props
2
- | Name | Type | Description | Default | Values |
3
- | --- | ----------- | --------- | --------- | --------- |
4
- | **Icon** | `PlaybookGenericIcon` | Sets the kit's Icon | | |
5
- | **Size** | `PBIcon.IconSize` | Changes the size of the Circle Icon | `.x1` | `xSmall` `small` `large` `x1` `x2` `x3` `x4` `x5` `x6` `x7` `x8` `x9` `x10` |
6
- | **Color** | `Color` | Changes color of the Icon and background | `.status(.neutral)` | `Color` |
@@ -1,16 +0,0 @@
1
- ![icon-circle-colors](https://github.com/powerhome/playbook/assets/92755007/d6507900-98e9-49fb-acfb-a238bef08d1b)
2
-
3
- ```swift
4
-
5
- VStack(spacing: Spacing.small) {
6
- PBIconCircle(FontAwesome.rocket, size: .small, color: Color.data(.data1))
7
- PBIconCircle(FontAwesome.rocket, size: .small, color: Color.data(.data2))
8
- PBIconCircle(FontAwesome.rocket, size: .small, color: Color.data(.data3))
9
- PBIconCircle(FontAwesome.rocket, size: .small, color: Color.data(.data4))
10
- PBIconCircle(FontAwesome.rocket, size: .small, color: Color.data(.data5))
11
- PBIconCircle(FontAwesome.rocket, size: .small, color: Color.data(.data6))
12
- PBIconCircle(FontAwesome.rocket, size: .small, color: Color.data(.data7))
13
- PBIconCircle(FontAwesome.rocket, size: .small, color: Color.data(.data8))
14
- }
15
-
16
- ```
@@ -1,7 +0,0 @@
1
- ![icon-circle-default](https://github.com/powerhome/playbook/assets/92755007/d5de652d-ff9e-4b54-b55e-a3bf58d7cb23)
2
-
3
- ```swift
4
-
5
- PBIconCircle(FontAwesome.rocket)
6
-
7
- ```
@@ -1,11 +0,0 @@
1
- ![circle-icon-sizes](https://github.com/powerhome/playbook/assets/92755007/2a474df1-5712-4c2a-9d6b-fb740ae949f2)
2
-
3
- ```swift
4
-
5
- VStack(alignment: .leading, spacing: Spacing.small) {
6
- PBIconCircle(FontAwesome.rocket, size: .small)
7
- PBIconCircle(FontAwesome.rocket, size: .x1)
8
- PBIconCircle(FontAwesome.rocket, size: .large)
9
- }
10
-
11
- ```