smoothly 0.3.33 → 1.0.0-alpha.2
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/cjs/loader.cjs.js +1 -1
- package/dist/cjs/{smoothly-accordion_53.cjs.entry.js → smoothly-accordion_57.cjs.entry.js} +4840 -227
- package/dist/cjs/smoothly.cjs.js +1 -1
- package/dist/collection/collection-manifest.json +4 -0
- package/dist/collection/components/filter/advanced-filter/index.js +18 -0
- package/dist/collection/components/filter/advanced-filter/style.css +3 -0
- package/dist/collection/components/filter/index.js +88 -0
- package/dist/collection/components/filter/input/index.js +350 -0
- package/dist/collection/components/filter/input/style.css +3 -0
- package/dist/collection/components/filter/style.css +3 -0
- package/dist/collection/components/input/index.js +1 -1
- package/dist/collection/components/table/demo/filtered/File.js +1 -0
- package/dist/collection/components/table/demo/filtered/Metadata.js +1 -0
- package/dist/collection/components/table/demo/filtered/Review.js +1 -0
- package/dist/collection/components/table/demo/filtered/Root.js +1 -0
- package/dist/collection/components/table/demo/filtered/index.js +40 -0
- package/dist/collection/components/table/demo/filtered/style.css +3 -0
- package/dist/collection/components/table/demo/index.js +1 -0
- package/dist/custom-elements/index.d.ts +24 -0
- package/dist/custom-elements/index.js +5174 -553
- package/dist/esm/loader.js +1 -1
- package/dist/esm/{smoothly-accordion_53.entry.js → smoothly-accordion_57.entry.js} +4837 -228
- package/dist/esm/smoothly.js +1 -1
- package/dist/smoothly/{p-4a78c705.entry.js → p-6e3d559e.entry.js} +1 -1
- package/dist/smoothly/smoothly.esm.js +1 -1
- package/dist/types/components/filter/advanced-filter/index.d.ts +3 -0
- package/dist/types/components/filter/index.d.ts +8 -0
- package/dist/types/components/filter/input/index.d.ts +23 -0
- package/dist/types/components/table/demo/filtered/File.d.ts +14 -0
- package/dist/types/components/table/demo/filtered/Metadata.d.ts +23 -0
- package/dist/types/components/table/demo/filtered/Review.d.ts +9 -0
- package/dist/types/components/table/demo/filtered/Root.d.ts +17 -0
- package/dist/types/components/table/demo/filtered/index.d.ts +9 -0
- package/dist/types/components.d.ts +93 -0
- package/package.json +3 -1
|
@@ -92,6 +92,24 @@ export const SmoothlyDisplayDemo: {
|
|
|
92
92
|
new (): SmoothlyDisplayDemo;
|
|
93
93
|
};
|
|
94
94
|
|
|
95
|
+
interface SmoothlyFilter extends Components.SmoothlyFilter, HTMLElement {}
|
|
96
|
+
export const SmoothlyFilter: {
|
|
97
|
+
prototype: SmoothlyFilter;
|
|
98
|
+
new (): SmoothlyFilter;
|
|
99
|
+
};
|
|
100
|
+
|
|
101
|
+
interface SmoothlyFilterAdvanced extends Components.SmoothlyFilterAdvanced, HTMLElement {}
|
|
102
|
+
export const SmoothlyFilterAdvanced: {
|
|
103
|
+
prototype: SmoothlyFilterAdvanced;
|
|
104
|
+
new (): SmoothlyFilterAdvanced;
|
|
105
|
+
};
|
|
106
|
+
|
|
107
|
+
interface SmoothlyFilterInput extends Components.SmoothlyFilterInput, HTMLElement {}
|
|
108
|
+
export const SmoothlyFilterInput: {
|
|
109
|
+
prototype: SmoothlyFilterInput;
|
|
110
|
+
new (): SmoothlyFilterInput;
|
|
111
|
+
};
|
|
112
|
+
|
|
95
113
|
interface SmoothlyFrame extends Components.SmoothlyFrame, HTMLElement {}
|
|
96
114
|
export const SmoothlyFrame: {
|
|
97
115
|
prototype: SmoothlyFrame;
|
|
@@ -302,6 +320,12 @@ export const SmoothlyTableDemo: {
|
|
|
302
320
|
new (): SmoothlyTableDemo;
|
|
303
321
|
};
|
|
304
322
|
|
|
323
|
+
interface SmoothlyTableDemoFiltered extends Components.SmoothlyTableDemoFiltered, HTMLElement {}
|
|
324
|
+
export const SmoothlyTableDemoFiltered: {
|
|
325
|
+
prototype: SmoothlyTableDemoFiltered;
|
|
326
|
+
new (): SmoothlyTableDemoFiltered;
|
|
327
|
+
};
|
|
328
|
+
|
|
305
329
|
interface SmoothlyTableExpandableCell extends Components.SmoothlyTableExpandableCell, HTMLElement {}
|
|
306
330
|
export const SmoothlyTableExpandableCell: {
|
|
307
331
|
prototype: SmoothlyTableExpandableCell;
|