{"id":18435901,"url":"https://github.com/darekf77/static-columns","last_synced_at":"2025-04-14T10:43:02.598Z","repository":{"id":57370053,"uuid":"64921759","full_name":"darekf77/static-columns","owner":"darekf77","description":"Define columns with static width with Angular2 and FlexBox ","archived":false,"fork":false,"pushed_at":"2025-04-09T23:17:02.000Z","size":17970,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-10T00:19:33.889Z","etag":null,"topics":["angular-library","pwa-demo"],"latest_commit_sha":null,"homepage":"https://darekf77.github.io/static-columns","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/darekf77.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2016-08-04T09:29:24.000Z","updated_at":"2025-04-09T23:17:05.000Z","dependencies_parsed_at":"2023-12-26T04:22:58.294Z","dependency_job_id":"ba0b8ead-bd3d-4e42-935d-92d707bd3254","html_url":"https://github.com/darekf77/static-columns","commit_stats":{"total_commits":264,"total_committers":3,"mean_commits":88.0,"dds":0.2727272727272727,"last_synced_commit":"43f3cd68a52856296f53d31a422ec11951266d25"},"previous_names":[],"tags_count":103,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/darekf77%2Fstatic-columns","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/darekf77%2Fstatic-columns/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/darekf77%2Fstatic-columns/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/darekf77%2Fstatic-columns/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/darekf77","download_url":"https://codeload.github.com/darekf77/static-columns/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248867536,"owners_count":21174748,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["angular-library","pwa-demo"],"created_at":"2024-11-06T06:09:37.379Z","updated_at":"2025-04-14T10:43:02.575Z","avatar_url":"https://github.com/darekf77.png","language":"TypeScript","readme":"\n# STATIC-COLUMNS - effortless Angular2+ layouts\n\n# forget about flex box complicated rules !\n\nWith this simple library \n\n**angular / html columns with static width**\n\nmixed with\n \n**columns with responsive width**\n \nare not a problem anymore!\n\n\n---\n### How to install:\n```\n    npm install static-columns --save\n```\n\n\n### Import it:\n```ts\nimport { StaticColumnsModule } form \"static-columns/browser\"\n```\n\n### Put module inside angular imports:\n```ts\n\n@NgModule(\n // ... \n  imports: [StaticColumnsModule]\n  // ... \n)\nclass MyExampleModule {\n // ... \n}\n```\n\n# Examples\n\t\n ## Basic usage:\n```html\n\u003ccolumns-container\u003e\n  \u003ccolumn grow \u003e \u003c!-- this column will grow/shring based on screen width --\u003e\n    something\n  \u003c/column\u003e\n  \u003ccolumn width=\"190\"\u003e                        \n      \u003cbutton\u003eZAKRES\u003c/button\u003e\n  \u003c/column\u003e\n  \u003ccolumn width=\"190\"\u003e                        \n      \u003cbutton-magnifier\u003e\u003c/button-magnifier\u003e\n      \u003cbutton-bell\u003e\u003c/button-bell\u003e\n      \u003cbutton-gears\u003e\u003c/button-gears\u003e\n  \u003c/column\u003e\n\u003c/columns-container\u003e\n```\n\n![Modules marked](screen.png)\n\n\n## Hide/show column in mobile view:\n```html\n\u003ccolumns-container\u003e\n  \u003ccolumn hideMobile \u003e\n      I am not visible when screen \u003c 600px\n  \u003c/column\u003e\n  \u003ccolumn  showMobile\u003e                        \n      I am visible only when screen \u003c 600px\n  \u003c/column\u003e\n\u003c/columns-container\u003e\n```\n\n## Hide/show column in tablet view:\n```html\n\u003ccolumns-container\u003e\n  \u003ccolumn hideTablet \u003e\n      I am not visible when screen \u003e 600px and \u003c 840 px\n  \u003c/column\u003e\n  \u003ccolumn  showTablet\u003e                        \n      I am visible only when screen \u003e 600px and \u003c 840 px\n  \u003c/column\u003e\n\u003c/columns-container\u003e\n```\n\n\n## Hide/show column in desktop view:\n```html\n\u003ccolumns-container\u003e\n  \u003ccolumn hideDesktop \u003e\n      I am not visible when screen \u003e 840 px\n  \u003c/column\u003e\n  \u003ccolumn  showDesktop\u003e                        \n      I am visible only when screen \u003e 840 px\n  \u003c/column\u003e\n\u003c/columns-container\u003e\n```\n","funding_links":[],"categories":["Recently Updated","Third Party Components"],"sub_categories":["[Apr 12, 2025](/content/2025/04/12/README.md)","Layout"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdarekf77%2Fstatic-columns","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdarekf77%2Fstatic-columns","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdarekf77%2Fstatic-columns/lists"}