@texturehq/edges 1.13.0 → 1.13.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components.manifest.json +17 -6
- package/dist/index.cjs +8 -8
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +414 -12
- package/dist/index.d.ts +414 -12
- package/dist/index.js +8 -8
- package/dist/index.js.map +1 -1
- package/dist/{server-8T44SFVa.d.cts → server-BV15KAF4.d.cts} +1 -1
- package/dist/{server-8T44SFVa.d.ts → server-BV15KAF4.d.ts} +1 -1
- package/dist/server.cjs +1 -1
- package/dist/server.cjs.map +1 -1
- package/dist/server.d.cts +1 -1
- package/dist/server.d.ts +1 -1
- package/dist/server.js +1 -1
- package/dist/server.js.map +1 -1
- package/dist/styles/utilities.css +2 -2
- package/dist/styles.css +27 -3
- package/dist/utilities.manifest.json +23 -2
- package/package.json +3 -2
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "1.13.
|
|
3
|
-
"generatedAt": "2025-10-
|
|
2
|
+
"version": "1.13.1",
|
|
3
|
+
"generatedAt": "2025-10-27T18:44:56.462Z",
|
|
4
4
|
"components": [
|
|
5
5
|
{
|
|
6
6
|
"name": "ActionCell",
|
|
@@ -622,7 +622,7 @@
|
|
|
622
622
|
{
|
|
623
623
|
"name": "Checkbox",
|
|
624
624
|
"category": "Form Controls",
|
|
625
|
-
"description": "Visual variant of the checkbox @default \"
|
|
625
|
+
"description": "Visual variant of the checkbox @default \"default\"",
|
|
626
626
|
"importRoot": "@texturehq/edges",
|
|
627
627
|
"importPath": "@texturehq/edges/components/Checkbox",
|
|
628
628
|
"props": [
|
|
@@ -639,7 +639,7 @@
|
|
|
639
639
|
{
|
|
640
640
|
"name": "CheckboxGroup",
|
|
641
641
|
"category": "Form Controls",
|
|
642
|
-
"description": "Visual variant of the checkbox @default \"
|
|
642
|
+
"description": "Visual variant of the checkbox @default \"default\"",
|
|
643
643
|
"importRoot": "@texturehq/edges",
|
|
644
644
|
"importPath": "@texturehq/edges/components/CheckboxGroup",
|
|
645
645
|
"props": [
|
|
@@ -802,7 +802,7 @@
|
|
|
802
802
|
{
|
|
803
803
|
"name": "DataControls",
|
|
804
804
|
"category": "Data",
|
|
805
|
-
"description": "DataControls A unified control bar for data display components (Lists, DataTables). Provides search, filtering, sorting, results count, and action controls with responsive layout. All data operations (search, filter, sort) are handled server-side. This component is purely presentational and controlled. **Responsive Behavior:** - Narrow containers (< 640px): Two rows - Row 1: inputs (search + filter icon), Row 2: outputs (results + sort + actions) - Wide containers (≥ 640px): Single row with all controls visible Example usage: ```tsx <DataControls resultsCount={{ count: 23, label: \"sites\" }} search={{ value: searchQuery, onChange: setSearchQuery, onClear: () => setSearchQuery(''), placeholder: \"Search sites...\" }} filters={activeFilters} onRemoveFilter={removeFilter} onClearAllFilters={clearAllFilters} onManageFilters={() => setFilterDrawerOpen(true)} sort={{ value: sortBy, options: sortOptions, onChange: setSortBy }} /> ```",
|
|
805
|
+
"description": "DataControls A unified control bar for data display components (Lists, DataTables). Provides search, filtering, sorting, results count, and action controls with responsive layout. All data operations (search, filter, sort) are handled server-side. This component is purely presentational and controlled. **Features:** - Optional sticky positioning for data-heavy pages - Works with PageLayout sticky headers - Configurable z-index and offset **Responsive Behavior:** - Narrow containers (< 640px): Two rows - Row 1: inputs (search + filter icon), Row 2: outputs (results + sort + actions) - Wide containers (≥ 640px): Single row with all controls visible Example usage: ```tsx <DataControls resultsCount={{ count: 23, label: \"sites\" }} search={{ value: searchQuery, onChange: setSearchQuery, onClear: () => setSearchQuery(''), placeholder: \"Search sites...\" }} filters={activeFilters} onRemoveFilter={removeFilter} onClearAllFilters={clearAllFilters} onManageFilters={() => setFilterDrawerOpen(true)} sort={{ value: sortBy, options: sortOptions, onChange: setSortBy }} /> ```",
|
|
806
806
|
"importRoot": "@texturehq/edges",
|
|
807
807
|
"importPath": "@texturehq/edges/components/DataControls",
|
|
808
808
|
"props": [],
|
|
@@ -948,6 +948,16 @@
|
|
|
948
948
|
"relatedComponents": [],
|
|
949
949
|
"storybookPath": "Data/FilterChips"
|
|
950
950
|
},
|
|
951
|
+
{
|
|
952
|
+
"name": "FilterDialog",
|
|
953
|
+
"category": "Data",
|
|
954
|
+
"description": "",
|
|
955
|
+
"importRoot": "@texturehq/edges",
|
|
956
|
+
"importPath": "@texturehq/edges/components/FilterDialog",
|
|
957
|
+
"props": [],
|
|
958
|
+
"relatedComponents": [],
|
|
959
|
+
"storybookPath": "Data/FilterDialog"
|
|
960
|
+
},
|
|
951
961
|
{
|
|
952
962
|
"name": "Form",
|
|
953
963
|
"category": "Form Controls",
|
|
@@ -2110,7 +2120,7 @@
|
|
|
2110
2120
|
},
|
|
2111
2121
|
{
|
|
2112
2122
|
"name": "variant",
|
|
2113
|
-
"type": "\"default\" | \"primary\" | \"muted\""
|
|
2123
|
+
"type": "\"default\" | \"primary\" | \"muted\" | \"unstyled\""
|
|
2114
2124
|
},
|
|
2115
2125
|
{
|
|
2116
2126
|
"name": "onClick",
|
|
@@ -2426,6 +2436,7 @@
|
|
|
2426
2436
|
"DataControls",
|
|
2427
2437
|
"DataTable",
|
|
2428
2438
|
"FilterChips",
|
|
2439
|
+
"FilterDialog",
|
|
2429
2440
|
"Kpi",
|
|
2430
2441
|
"KpiGroup",
|
|
2431
2442
|
"ResultsCount",
|