This repository was archived by the owner on Jul 30, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcombobox-routes.js
More file actions
22 lines (22 loc) · 2.21 KB
/
combobox-routes.js
File metadata and controls
22 lines (22 loc) · 2.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var react_router_dom_1 = require("react-router-dom");
var React = require("react");
var default_1 = require("./default");
var grouping_icon_1 = require("./grouping-icon");
var data_binding_1 = require("./data-binding");
var custom_value_1 = require("./custom-value");
var filtering_1 = require("./filtering");
var template_1 = require("./template");
var cascading_1 = require("./cascading");
var diacritics_filtering_1 = require("./diacritics-filtering");
exports.comboboxRoutes = (React.createElement("div", null,
React.createElement(react_router_dom_1.Route, { path: '/:theme/combo-box/default', component: default_1.Default }),
React.createElement(react_router_dom_1.Route, { path: '/:theme/combo-box/grouping-icon', component: grouping_icon_1.Grouping }),
React.createElement(react_router_dom_1.Route, { path: '/:theme/combo-box/data-binding', component: data_binding_1.Data }),
React.createElement(react_router_dom_1.Route, { path: '/:theme/combo-box/custom-value', component: custom_value_1.Custom }),
React.createElement(react_router_dom_1.Route, { path: '/:theme/combo-box/filtering', component: filtering_1.Filtering }),
React.createElement(react_router_dom_1.Route, { path: '/:theme/combo-box/template', component: template_1.Templates }),
React.createElement(react_router_dom_1.Route, { path: '/:theme/combo-box/cascading', component: cascading_1.Cascading }),
React.createElement(react_router_dom_1.Route, { path: '/:theme/combo-box/diacritics-filtering', component: diacritics_filtering_1.DiacriticsFiltering })));
exports.comboboxCategory = { "default": { "name": "Default Functionalities", "category": "ComboBox" }, "grouping-icon": { "name": "Grouping and Icons", "category": "ComboBox" }, "data-binding": { "name": "Data Binding", "category": "ComboBox" }, "custom-value": { "name": "Custom Value", "category": "ComboBox" }, "filtering": { "name": "Filtering", "category": "ComboBox" }, "template": { "name": "Templates", "category": "ComboBox" }, "cascading": { "name": "Cascading", "category": "ComboBox" }, "diacritics-filtering": { "name": "Diacritics Filtering", "category": "ComboBox" }, "defaultSample": "combo-box/default" };