primer_view_components 0.0.68 → 0.0.69
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +52 -1
- data/app/assets/javascripts/primer_view_components.js +1 -1
- data/app/assets/javascripts/primer_view_components.js.map +1 -1
- data/app/components/primer/alpha/tooltip.d.ts +24 -0
- data/app/components/primer/alpha/tooltip.js +381 -0
- data/app/components/primer/alpha/tooltip.rb +95 -0
- data/app/components/primer/alpha/tooltip.ts +377 -0
- data/app/components/primer/base_component.rb +2 -2
- data/app/components/primer/beta/truncate.rb +1 -0
- data/app/components/primer/details_component.rb +1 -1
- data/app/components/primer/icon_button.rb +1 -1
- data/app/components/primer/markdown.rb +1 -1
- data/app/components/primer/primer.d.ts +1 -0
- data/app/components/primer/primer.js +1 -0
- data/app/components/primer/primer.ts +1 -0
- data/app/components/primer/subhead_component.html.erb +1 -1
- data/app/components/primer/subhead_component.rb +1 -1
- data/lib/primer/classify/utilities.yml +20 -0
- data/lib/primer/view_components/linters/button_component_migration_counter.rb +1 -1
- data/lib/primer/view_components/version.rb +1 -1
- data/lib/rubocop/cop/primer/primer_octicon.rb +1 -1
- data/lib/tasks/docs.rake +7 -5
- data/lib/tasks/utilities.rake +1 -1
- data/static/arguments.yml +25 -1
- data/static/audited_at.json +1 -0
- data/static/classes.yml +1 -0
- data/static/constants.json +18 -0
- data/static/statuses.json +1 -0
- metadata +15 -11
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: primer_view_components
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.69
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- GitHub Open Source
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-03-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: actionview
|
@@ -42,16 +42,16 @@ dependencies:
|
|
42
42
|
name: octicons
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
|
-
- - "
|
45
|
+
- - ">="
|
46
46
|
- !ruby/object:Gem::Version
|
47
|
-
version:
|
47
|
+
version: 17.0.0
|
48
48
|
type: :runtime
|
49
49
|
prerelease: false
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
|
-
- - "
|
52
|
+
- - ">="
|
53
53
|
- !ruby/object:Gem::Version
|
54
|
-
version:
|
54
|
+
version: 17.0.0
|
55
55
|
- !ruby/object:Gem::Dependency
|
56
56
|
name: view_component
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
@@ -366,7 +366,7 @@ dependencies:
|
|
366
366
|
- - "~>"
|
367
367
|
- !ruby/object:Gem::Version
|
368
368
|
version: 0.9.25
|
369
|
-
description:
|
369
|
+
description:
|
370
370
|
email:
|
371
371
|
- opensource+primer_view_components@github.com
|
372
372
|
executables: []
|
@@ -387,6 +387,10 @@ files:
|
|
387
387
|
- app/components/primer/alpha/tab_nav.rb
|
388
388
|
- app/components/primer/alpha/tab_panels.html.erb
|
389
389
|
- app/components/primer/alpha/tab_panels.rb
|
390
|
+
- app/components/primer/alpha/tooltip.d.ts
|
391
|
+
- app/components/primer/alpha/tooltip.js
|
392
|
+
- app/components/primer/alpha/tooltip.rb
|
393
|
+
- app/components/primer/alpha/tooltip.ts
|
390
394
|
- app/components/primer/alpha/underline_nav.html.erb
|
391
395
|
- app/components/primer/alpha/underline_nav.rb
|
392
396
|
- app/components/primer/alpha/underline_panels.html.erb
|
@@ -573,7 +577,7 @@ licenses:
|
|
573
577
|
- MIT
|
574
578
|
metadata:
|
575
579
|
allowed_push_host: https://rubygems.org
|
576
|
-
post_install_message:
|
580
|
+
post_install_message:
|
577
581
|
rdoc_options: []
|
578
582
|
require_paths:
|
579
583
|
- lib
|
@@ -588,8 +592,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
588
592
|
- !ruby/object:Gem::Version
|
589
593
|
version: '0'
|
590
594
|
requirements: []
|
591
|
-
rubygems_version: 3.
|
592
|
-
signing_key:
|
595
|
+
rubygems_version: 3.2.22
|
596
|
+
signing_key:
|
593
597
|
specification_version: 4
|
594
598
|
summary: ViewComponents for the Primer Design System
|
595
599
|
test_files: []
|