codecalm
e1931f8c37
Refactor accordion component styles and markup, remove preview dependency
2025-02-26 18:55:53 +01:00
Paweł Kuna
c240b5ad21
Refactor accordion component styles and markup, remove Bootstrap styles ( #2139 )
2025-02-26 18:53:01 +01:00
codecalm
cba487f5b7
build fix
2025-02-19 03:19:27 +01:00
Paweł Kuna
edbaa1eddd
Add selectable table functionality with active background color ( #2171 )
2025-02-19 03:16:53 +01:00
Paweł Kuna
378fba89f5
Refactor badge styles, remove Bootstrap styles ( #2169 )
2025-02-19 02:20:25 +01:00
Paweł Kuna
a2640e2147
Add Playwright configuration and visual regression tests ( #2170 )
2025-02-19 00:58:10 +01:00
Paweł Kuna
9cd532745a
Update border radius variables for consistency across components ( #2167 )
2025-02-15 13:33:39 +01:00
Paweł Kuna
063bdc28ab
Update and simplify main menu ( #2166 )
2025-02-15 13:20:29 +01:00
Luca Sabato
5d8392366c
Fixed missing images in the README and getting started page + minor formatting changes ( #2161 )
...
Co-authored-by: Paweł Kuna <1282324+codecalm@users.noreply.github.com >
2025-02-14 14:14:28 +01:00
Paweł Kuna
ca4ba14718
Enhance navbar styles with new hover effects and color variables ( #2159 )
2025-02-14 00:01:41 +01:00
codecalm
954e42f9c0
Update changelog texts
2025-02-13 23:06:57 +01:00
BG-Software
b47815d530
Fix instruction for CDN icons version ( #2157 )
2025-02-13 23:00:18 +01:00
oksuzgil
1edaff454b
New payment provider (TROY) ( #2146 )
...
Co-authored-by: Paweł Kuna <1282324+codecalm@users.noreply.github.com >
Co-authored-by: codecalm <codecalm@gmail.com >
2025-02-13 22:59:45 +01:00
Paweł Kuna
b47725dcc2
New text features page ( #2152 )
2025-02-13 22:49:42 +01:00
Paweł Kuna
eff95dc033
Add section comments and format HTML for improved readability ( #2158 )
2025-02-13 22:41:46 +01:00
ethancrawford
846c48d140
Add various spelling fixes and grammar improvements ( #2153 )
...
Co-authored-by: BG-Software <73077398+BG-Software-BG@users.noreply.github.com >
2025-02-13 22:29:45 +01:00
codecalm
ee5e25a52b
Bump @tabler/core version to minor
2025-02-12 21:14:35 +01:00
Paweł Kuna
bd3d959cea
Refactor SCSS files to replace divide function with calc ( #2150 )
2025-02-12 21:12:52 +01:00
BG-Software
afd070012d
Fix apexcharts heatmap example in docs ( #2147 )
2025-02-12 21:12:25 +01:00
ethancrawford
d6a10938e3
Fix broken 'top pages' table ( #2144 )
...
Co-authored-by: BG-Software <73077398+BG-Software-BG@users.noreply.github.com >
Co-authored-by: Paweł Kuna <1282324+codecalm@users.noreply.github.com >
2025-02-12 21:09:14 +01:00
Paweł Kuna
f95f2509c7
Update color utility classes and fix colors in pricing page ( #2122 )
2025-02-12 21:01:04 +01:00
codecalm
3dea9de29c
Add "preview" to ignore list in changeset configuration
2025-02-12 19:48:41 +01:00
codecalm
3b0623fc42
build fix
2025-02-12 19:44:43 +01:00
Paweł Kuna
b4b4d1a816
Add Scroll Spy page ( #2142 )
2025-02-12 19:21:31 +01:00
Paweł Kuna
76f5de44e7
Update timeline card layout and profile header styles ( #2140 )
...
* Update timeline card layout and profile header styles
* Create large-walls-wave.md
2025-02-08 14:14:38 +01:00
Paweł Kuna
24b944cbdc
Remove box-shadow from avatar styles for a cleaner appearance ( #2137 )
...
* Remove box-shadow from avatar styles for a cleaner appearance
* Create ten-houses-punch.md
2025-02-08 13:58:39 +01:00
BG-Software
687267de38
Fix overflow of label in a floating-input ( #2072 )
...
* Fix overflow of label in a floating-input
Temporary fix for the bug in twbs/bootstrap v5.3.3.
* Create dry-rice-march.md
---------
Co-authored-by: codecalm <codecalm@gmail.com >
2025-02-08 13:57:11 +01:00
Paweł Kuna
ea144622a1
Add documentation for segmented control component ( #2134 )
...
* Add documentation for segmented control component
* Enhance documentation for segmented control component with additional examples and usage guidelines
* Create stale-pianos-crash.md
* Add changeset for @tabler/core minor update
2025-02-06 21:59:04 +01:00
codecalm
6b7a761fd4
Update robots.txt handling and improve sitemap URL generation
2025-02-06 18:24:17 +01:00
codecalm
3b85669999
Merge branch 'dev' of https://github.com/tabler/tabler into dev
2025-02-06 18:24:00 +01:00
codecalm
ffaf92b67b
Update changeset for segmented control component
2025-02-06 18:23:58 +01:00
falsulaiman
78383ef568
Update _nav.scss ( #2133 )
...
* Update _nav.scss
### Issue: Dash (`-`) causing W3C validator error and CSS issues
**Problem**:
The use of a dash (`-`) in certain areas is triggering errors in the W3C validator and affecting the proper functioning of CSS.
1. **HTML Issue**: The dash might be incorrectly placed in attribute names or element IDs, causing validation errors.
- Example: `data-name` is fine, but ensure it's used correctly and within the valid context.
2. **CSS Issue**: If the dash is used improperly in class or ID names, it can cause selector issues in CSS.
- Example: `.my-class-name` is correct, but make sure that the class is correctly applied to the element and styled properly in CSS.
**Proposed Fix**:
- Ensure that any attribute or class names are formatted correctly. For example, `data-name` is valid, but check for any spelling mistakes or misplaced dashes.
- In CSS, ensure proper selector syntax like:
```css
.my-class-name {
/* Styles here */
}
* Fix margin calculation for nav links in _nav.scss
* Create red-pens-punch.md
---------
Co-authored-by: codecalm <codecalm@gmail.com >
Co-authored-by: Paweł Kuna <1282324+codecalm@users.noreply.github.com >
2025-02-06 18:23:13 +01:00
Paweł Kuna
cb278c762d
Add segmented control component ( #2087 )
...
* Add segmented control component and update related files
* Implement segmented navigation component and update related styles
* Create grumpy-flowers-act.md
* Refactor .gitignore and move playground pages to preview directory
* Enhance segmented navigation with hover state and class support
* Refactor segmented control layout for improved responsiveness and alignment
2025-02-06 18:02:46 +01:00
codecalm
54f0802f72
Merge branch 'dev' of https://github.com/tabler/tabler into dev
2025-02-05 22:52:38 +01:00
codecalm
c2afa77258
update changesets
2025-02-05 22:52:37 +01:00
BG-Software
c079e646ef
Improve documentation for buttons ( #2129 )
...
* Fix background-image of buttons with avatars
* Remove duplicated code blocks in buttons docs
+ Fix links to tabler.io/icons.
+ Replace Twitter with X on icon button.
* Create silly-lobsters-move.md
2025-02-05 22:51:34 +01:00
codecalm
1394c3420c
Merge branch 'main' of https://github.com/tabler/tabler into dev
2025-02-05 22:51:16 +01:00
BG-Software
11f4487286
Use the full license agreement for illustrations in docs ( #2128 )
...
* Use the full license agreement for illustrations in docs
* Create short-wombats-rhyme.md
2025-02-05 22:07:27 +01:00
Paweł Kuna
8dffb4e345
Update robots.txt handling and improve sitemap URL generation ( #2130 )
...
* Update robots.txt handling and improve sitemap URL generation
* Add dynamic page data handling and update sitemap generation
* Remove debug output from sitemap generation
* Create thin-clouds-glow.md
2025-02-05 22:04:57 +01:00
carlosmintfan
b28ce9f2e8
Fix vertical alignment in single page and error layouts ( #2114 )
...
Co-authored-by: Paweł Kuna <1282324+codecalm@users.noreply.github.com >
Co-authored-by: codecalm <codecalm@gmail.com >
2025-02-03 02:56:29 +01:00
Paweł Kuna
a370919ebe
Refactor bundlewatch workflow to use Turbo ( #2119 )
2025-02-03 02:54:15 +01:00
Paweł Kuna
eaa7f81604
Monorepo structure, remove Gulp, new build process ( #2116 )
2025-02-01 21:05:00 +01:00
carlosmintfan
d3ae77cf8b
Enable scrollSpy in countup module ( #2113 )
...
Co-authored-by: Paweł Kuna <1282324+codecalm@users.noreply.github.com >
2025-02-01 21:01:29 +01:00
BG-Software
06b1dec645
Fix size of apexcharts tooltip marker ( #2115 )
2025-02-01 11:40:48 +01:00
github-actions[bot]
1d73dc92b0
chore: update versions ( #2105 )
...
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2025-01-28 22:14:40 +01:00
Paweł Kuna
71c68ce40a
Update changelog configuration and release scripts ( #2095 )
2025-01-28 21:13:15 +01:00
Paweł Kuna
ba65fc3694
Update devDependencies ( #2094 )
2025-01-28 19:07:38 +01:00
ethancrawford
e798eb623d
Fix small typo in tables docs ( #2090 )
...
Co-authored-by: Paweł Kuna <1282324+codecalm@users.noreply.github.com >
2025-01-28 18:59:37 +01:00
Prashant Rijal
38504e578a
Added 3 new payments from Nepal ( #2085 )
...
Co-authored-by: Paweł Kuna <1282324+codecalm@users.noreply.github.com >
Co-authored-by: codecalm <codecalm@gmail.com >
2025-01-28 18:58:44 +01:00
BG-Software
90cc74487b
Fix colors of disabled tom-select ( #2084 )
2025-01-27 22:34:05 +01:00