-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdatastar-manifest.json
More file actions
132 lines (132 loc) · 3.16 KB
/
Copy pathdatastar-manifest.json
File metadata and controls
132 lines (132 loc) · 3.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"$schema": "./schemas/datastar-manifest.schema.json",
"version": "1.0.0",
"description": "Datastar window exports manifest for css-ref project",
"generated": "2026-03-05",
"sources": ["src/main.ts"],
"exports": {
"data": {
"P": {
"type": "value",
"description": "All CSS properties data"
},
"CATS": {
"type": "value",
"description": "Available categories"
},
"INTEROPS": {
"type": "value",
"description": "Interop status keys"
},
"CC": {
"type": "value",
"description": "Category colors map"
},
"IL": {
"type": "value",
"description": "Interop labels map"
},
"IC": {
"type": "value",
"description": "Interop colors map"
}
},
"utilities": {
"bIcon": {
"type": "function",
"description": "Generate browser icon HTML",
"signature": "() => void"
}
},
"filters": {
"filtered": {
"type": "value",
"description": "Filter properties by query, categories, and interop status"
}
},
"helpers": {
"toggleInArray": {
"type": "function",
"description": "Toggle item in array (returns new array)",
"signature": "(arr: string[], item: string) => void"
}
},
"misc": {
"renderBrowserSupport": {
"type": "value",
"description": "renderBrowserSupport export"
},
"initListTable": {
"type": "value",
"description": "initListTable export"
},
"tableRowCount": {
"type": "function",
"description": "tableRowCount export",
"signature": "() => void"
},
"tableTotalCount": {
"type": "value",
"description": "tableTotalCount export"
}
},
"ui": {
"renderGrid": {
"type": "function",
"description": "Render grid view with property cards",
"signature": "(items: CSSProperty[], selectedProp: CSSProperty | null) => void"
}
},
"table": {
"loadMoreTableRows": {
"type": "function",
"description": "Load next batch of table rows (infinite scroll)",
"signature": "() => void"
}
}
},
"signals": {
"query": {
"type": "string",
"default": "",
"description": "Search query"
},
"activeCats": {
"type": "string[]",
"default": [],
"description": "Active category filters"
},
"activeInterops": {
"type": "string[]",
"default": [],
"description": "Active interop filters"
},
"viewMode": {
"type": "'grid' | 'table'",
"default": "'grid'",
"description": "Current view mode"
},
"popoverOpen": {
"type": "boolean",
"default": false,
"description": "Filter popover state"
},
"theme": {
"type": "'dark' | 'light'",
"default": "'dark'",
"description": "Current theme"
}
},
"allowedDatastarAttributes": [
"data-signals",
"data-bind:*",
"data-on:*",
"data-on:*__*",
"data-show",
"data-class:*",
"data-text",
"data-effect",
"data-init",
"data-computed"
]
}