@fluid-topics/ft-search-quick-filters 2.1.4
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/README.md +26 -0
- package/build/SearchQuickFiltersMessages.d.ts +7 -0
- package/build/SearchQuickFiltersMessages.js +6 -0
- package/build/define.d.ts +1 -0
- package/build/define.js +3 -0
- package/build/definitions.d.ts +5 -0
- package/build/definitions.js +4 -0
- package/build/ft-search-quick-filters.d.ts +24 -0
- package/build/ft-search-quick-filters.js +73 -0
- package/build/ft-search-quick-filters.light.js +66 -0
- package/build/ft-search-quick-filters.min.js +198 -0
- package/build/ft-search-quick-filters.properties.d.ts +8 -0
- package/build/ft-search-quick-filters.properties.js +3 -0
- package/build/ft-search-quick-filters.styles.d.ts +5 -0
- package/build/ft-search-quick-filters.styles.js +14 -0
- package/build/index.d.ts +3 -0
- package/build/index.js +3 -0
- package/package.json +29 -0
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { ParametrizedLabels } from "@fluid-topics/ft-wc-utils";
|
|
2
|
+
export interface FtSearchQuickFiltersLabels extends ParametrizedLabels {
|
|
3
|
+
presetsSelector?: string;
|
|
4
|
+
}
|
|
5
|
+
export declare const DEFAULT_LABELS: FtSearchQuickFiltersLabels;
|
|
6
|
+
export interface FtSearchQuickFiltersProperties {
|
|
7
|
+
selectedPresetId?: string;
|
|
8
|
+
}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
export declare const FtSearchQuickFiltersCssVariables: {
|
|
2
|
+
textColor: import("@fluid-topics/design-system-variables").FtCssVariable;
|
|
3
|
+
colorSurface: import("@fluid-topics/design-system-variables").FtCssVariable;
|
|
4
|
+
};
|
|
5
|
+
export declare const styles: import("lit").CSSResult;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { css } from "lit";
|
|
2
|
+
import { designSystemVariables } from "@fluid-topics/ft-wc-utils";
|
|
3
|
+
export const FtSearchQuickFiltersCssVariables = {
|
|
4
|
+
textColor: designSystemVariables.colorOnSurface,
|
|
5
|
+
colorSurface: designSystemVariables.colorSurface,
|
|
6
|
+
};
|
|
7
|
+
// language=CSS
|
|
8
|
+
export const styles = css `
|
|
9
|
+
.ft-search-quick-filters {
|
|
10
|
+
box-sizing: border-box;
|
|
11
|
+
color: ${FtSearchQuickFiltersCssVariables.textColor};
|
|
12
|
+
background-color: ${FtSearchQuickFiltersCssVariables.colorSurface};
|
|
13
|
+
}
|
|
14
|
+
`;
|
package/build/index.d.ts
ADDED
package/build/index.js
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@fluid-topics/ft-search-quick-filters",
|
|
3
|
+
"version": "2.1.4",
|
|
4
|
+
"description": "Quick filters component for integrated fluid-topics search pages",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"Lit"
|
|
7
|
+
],
|
|
8
|
+
"author": "Fluid Topics <devtopics@antidot.net>",
|
|
9
|
+
"license": "ISC",
|
|
10
|
+
"main": "build/index.js",
|
|
11
|
+
"web": "build/ft-search-quick-filters.min.js",
|
|
12
|
+
"typings": "build/index",
|
|
13
|
+
"files": [
|
|
14
|
+
"build/**/*.js",
|
|
15
|
+
"build/**/*.ts"
|
|
16
|
+
],
|
|
17
|
+
"repository": {
|
|
18
|
+
"type": "git",
|
|
19
|
+
"url": "ssh://git@scm.mrs.antidot.net:2222/fluidtopics/ft-web-components.git"
|
|
20
|
+
},
|
|
21
|
+
"dependencies": {
|
|
22
|
+
"@fluid-topics/ft-wc-utils": "2.1.4",
|
|
23
|
+
"lit": "3.1.0"
|
|
24
|
+
},
|
|
25
|
+
"devDependencies": {
|
|
26
|
+
"@fluid-topics/ft-wc-test-utils": "2.1.4"
|
|
27
|
+
},
|
|
28
|
+
"gitHead": "ae3c3a818dc16962d6026a12b9f45060e8833184"
|
|
29
|
+
}
|