Skip to content

Commit

Permalink
SidebarPopup Interactivity Setting (#679)
Browse files Browse the repository at this point in the history
Not all my goals are complete on this but it's a good enough start.
  • Loading branch information
underbluewaters authored Jan 2, 2024
1 parent 225ba56 commit bcf9c3c
Show file tree
Hide file tree
Showing 22 changed files with 1,378 additions and 499 deletions.
38 changes: 28 additions & 10 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions packages/api/generated-schema-clean.gql
Original file line number Diff line number Diff line change
Expand Up @@ -6535,6 +6535,7 @@ type InteractivitySetting implements Node {
"""
nodeId: ID!
shortTemplate: String
title: String!
type: InteractivityType!
}

Expand All @@ -6550,6 +6551,7 @@ input InteractivitySettingInput {
layers: [String]
longTemplate: String
shortTemplate: String
title: String
type: InteractivityType
}

Expand All @@ -6567,6 +6569,7 @@ input InteractivitySettingPatch {
layers: [String]
longTemplate: String
shortTemplate: String
title: String
type: InteractivityType
}

Expand All @@ -6576,6 +6579,7 @@ enum InteractivityType {
FIXED_BLOCK
NONE
POPUP
SIDEBAR_OVERLAY
TOOLTIP
}

Expand Down
4 changes: 4 additions & 0 deletions packages/api/generated-schema.gql
Original file line number Diff line number Diff line change
Expand Up @@ -6535,6 +6535,7 @@ type InteractivitySetting implements Node {
"""
nodeId: ID!
shortTemplate: String
title: String!
type: InteractivityType!
}

Expand All @@ -6550,6 +6551,7 @@ input InteractivitySettingInput {
layers: [String]
longTemplate: String
shortTemplate: String
title: String
type: InteractivityType
}

Expand All @@ -6567,6 +6569,7 @@ input InteractivitySettingPatch {
layers: [String]
longTemplate: String
shortTemplate: String
title: String
type: InteractivityType
}

Expand All @@ -6576,6 +6579,7 @@ enum InteractivityType {
FIXED_BLOCK
NONE
POPUP
SIDEBAR_OVERLAY
TOOLTIP
}

Expand Down
7 changes: 7 additions & 0 deletions packages/api/migrations/committed/000286.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
--! Previous: sha1:ce627d322f59b0d212d699b84f86719b0a480cc8
--! Hash: sha1:e6c5fc331e8c572d3e8b7f38f6049415b3e7a7f3

-- Enter migration here
ALTER TYPE interactivity_type ADD VALUE IF NOT EXISTS 'SIDEBAR_OVERLAY';

alter table interactivity_settings add column if not exists title text not null default '';
Loading

0 comments on commit bcf9c3c

Please sign in to comment.