Files
wehub-resource-sync d718c5a372
CI / windows_test (push) Waiting to run
CI / compile_and_lint (push) Failing after 0s
CI / docker_build (linux/amd64, -linux-amd64-duckdb, duckdb) (push) Failing after 0s
CI / docker_build (linux/arm64, -linux-arm64, minimal) (push) Failing after 2s
CI / docker_build (linux/arm64, -linux-arm64-duckdb, duckdb) (push) Failing after 1s
CI / docker_build (linux/amd64, minimal) (push) Failing after 1s
CI / test (, sqlite, sqlite::memory:) (push) Has been skipped
CI / test (mssql, mssql, mssql://root:Password123!@127.0.0.1/sqlpage) (push) Has been skipped
CI / test (mysql, mysql, mysql://root:Password123!@127.0.0.1/sqlpage) (push) Has been skipped
CI / test (oracle, oracle, Driver=Oracle 21 ODBC driver;Dbq=//127.0.0.1:1521/FREEPDB1;Uid=root;Pwd=Password123!) (push) Has been skipped
CI / test (postgres, odbc, Driver=PostgreSQL Unicode;Server=127.0.0.1;Port=5432;Database=sqlpage;UID=root;PWD=Password123!, true) (push) Has been skipped
CI / test (postgres, postgres, postgres://root:Password123!@127.0.0.1/sqlpage) (push) Has been skipped
CI / playwright (push) Has been skipped
CI / docker_build (linux/arm/v7, -linux-arm-v7, minimal) (push) Failing after 0s
CI / hurl_examples (push) Failing after 8s
deploy website / deploy_official_site (push) Failing after 1s
CI / docker_push (duckdb) (push) Waiting to run
CI / docker_push (minimal) (push) Waiting to run
CI / hurl (${{ matrix.example }}) (push) Has been skipped
chore: import upstream snapshot with attribution
2026-07-13 12:31:57 +08:00

119 lines
5.2 KiB
SQL

-- Column Component Documentation
-- Component Definition
INSERT INTO component(name, icon, description, introduced_in_version) VALUES
('columns', 'columns', 'A component to display various items in a card layout, allowing users to choose options. Useful for showcasing different features or services, or KPIs. See also the big_number component.', '0.29.0');
-- Inserting parameter information for the column component
INSERT INTO parameter(component, name, description, type, top_level, optional) SELECT 'columns', * FROM (VALUES
('title', 'The title or label for the item.', 'TEXT', FALSE, TRUE),
('value', 'The value associated with the item.', 'TEXT', FALSE, TRUE),
('description', 'A brief description of the item.', 'TEXT', FALSE, TRUE),
('description_md', 'A brief description of the item, formatted using markdown.', 'TEXT', FALSE, TRUE),
('item', 'A list of bullet points associated with the columns, represented either as text, or as a json object with "icon", "color", and "description" or "description_md" fields.', 'JSON', FALSE, TRUE),
('link', 'A link associated with the item.', 'TEXT', FALSE, TRUE),
('button_text', 'Text for the button.', 'TEXT', FALSE, TRUE),
('button_color', 'Optional color for the button.', 'TEXT', FALSE, TRUE),
('target', 'Optional target for the button. Set to "_blank" to open links in a new tab.', 'TEXT', FALSE, TRUE),
('value_color', 'Color for the value text.', 'TEXT', FALSE, TRUE),
('small_text', 'Optional small text to display after the value.', 'TEXT', FALSE, TRUE),
('icon', 'Optional icon to display in a ribbon.', 'ICON', FALSE, TRUE),
('icon_color', 'Color for the icon in the ribbon.', 'TEXT', FALSE, TRUE),
('size', 'Size of the column, affecting layout.', 'INTEGER', FALSE, TRUE)
) x;
INSERT INTO example(component, description, properties) VALUES
('columns', 'Pricing Plans Display',
json('[
{"component":"columns"},
{
"title":"Start Plan",
"value":"€18",
"description":"Perfect for testing and small-scale projects",
"item": [
"128MB Database",
"SQLPage hosting",
"Community support"
],
"link":"https://datapage.app",
"button_text":"Start Free Trial",
"small_text":"/month"
},
{
"title":"Pro Plan",
"value":"€40",
"icon":"rocket",
"description":"For growing projects needing enhanced features",
"item": [
{"icon":"database", "color": "blue", "description":"1GB Database"},
{"icon":"headset", "color": "green", "description":"Priority Support"},
{"icon":"world", "color": "purple", "description":"Custom Domain"}
],
"link":"https://datapage.app",
"button_text":"Start Free Trial",
"button_color":"indigo",
"value_color":"indigo",
"small_text":"/month"
},
{
"title":"Enterprise Plan",
"value":"€600",
"icon":"building-skyscraper",
"description":"For large-scale operations with custom needs",
"item": [
{"icon":"database-plus", "description_md":"**Custom Database Scaling**"},
{"icon":"shield-lock", "description_md":"**Enterprise Auth** with Single Sign-On"},
{"icon":"headset", "description_md":"**Monthly** Expert Support time"},
{"icon":"file-certificate", "description_md":"**SLA** with guaranteed uptime"}
],
"link":"mailto:contact@datapage.app",
"button_text":"Contact Us",
"small_text":"/month",
"target":"_blank"
}
]')),
('columns', 'Tech Company KPIs Display',
json('[
{"component":"columns"},
{
"title":"Monthly Active Users",
"value":"10k",
"value_color":"blue",
"size": 4,
"description":"Total active users this month, showcasing user engagement.",
"item": [
{"icon": "target", "description":"Target: 12,000"}
],
"link":"#",
"button_text":"User Activity Overview",
"button_color":"info"
},
{
"title":"Revenue",
"value":"$49k",
"value_color":"blue",
"size": 4,
"description":"Total revenue generated this month, indicating financial performance.",
"item": [
{"icon":"trending-down", "color": "red", "description":"down from $51k last month" }
],
"link":"#",
"button_text":"Financial Dashboard",
"button_color":"info"
},
{
"title":"Customer Satisfaction",
"value":"94%",
"value_color":"blue",
"size": 4,
"description":"Percentage of satisfied customers, reflecting service quality.",
"item": [
{"icon":"trending-up", "color": "green", "description":"+ 2% this month" }
],
"link":"#",
"button_text": "Open Google Ratings",
"button_color":"info"
}
]'));