@piying-lib/angular-daisyui 1.0.0

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.
Files changed (95) hide show
  1. package/README.md +64 -0
  2. package/extension/index.d.ts +449 -0
  3. package/fesm2022/piying-lib-angular-daisyui-extension.mjs +1356 -0
  4. package/fesm2022/piying-lib-angular-daisyui-extension.mjs.map +1 -0
  5. package/fesm2022/piying-lib-angular-daisyui-field-control-props.directive-C5mF89PX.mjs +27 -0
  6. package/fesm2022/piying-lib-angular-daisyui-field-control-props.directive-C5mF89PX.mjs.map +1 -0
  7. package/fesm2022/piying-lib-angular-daisyui-field-control.mjs +616 -0
  8. package/fesm2022/piying-lib-angular-daisyui-field-control.mjs.map +1 -0
  9. package/fesm2022/piying-lib-angular-daisyui-field-group.mjs +345 -0
  10. package/fesm2022/piying-lib-angular-daisyui-field-group.mjs.map +1 -0
  11. package/fesm2022/piying-lib-angular-daisyui-non-field-control.mjs +452 -0
  12. package/fesm2022/piying-lib-angular-daisyui-non-field-control.mjs.map +1 -0
  13. package/fesm2022/piying-lib-angular-daisyui-pipe.mjs +55 -0
  14. package/fesm2022/piying-lib-angular-daisyui-pipe.mjs.map +1 -0
  15. package/fesm2022/piying-lib-angular-daisyui-service.mjs +115 -0
  16. package/fesm2022/piying-lib-angular-daisyui-service.mjs.map +1 -0
  17. package/fesm2022/piying-lib-angular-daisyui-wrapper.mjs +75 -0
  18. package/fesm2022/piying-lib-angular-daisyui-wrapper.mjs.map +1 -0
  19. package/fesm2022/piying-lib-angular-daisyui.mjs +4 -0
  20. package/fesm2022/piying-lib-angular-daisyui.mjs.map +1 -0
  21. package/field-control/index.d.ts +204 -0
  22. package/field-group/index.d.ts +162 -0
  23. package/index.d.ts +2 -0
  24. package/non-field-control/index.d.ts +255 -0
  25. package/package.json +54 -0
  26. package/pipe/index.d.ts +25 -0
  27. package/preset-css/css/style.css +1 -0
  28. package/preset-css/css/style.split.css +126 -0
  29. package/preset-css/json/manifest.json +739 -0
  30. package/preset-css/ts/accordion.ts +9 -0
  31. package/preset-css/ts/alert.ts +12 -0
  32. package/preset-css/ts/avatar.ts +7 -0
  33. package/preset-css/ts/badge.ts +20 -0
  34. package/preset-css/ts/breadcrumbs.ts +1 -0
  35. package/preset-css/ts/browser-mockup.ts +1 -0
  36. package/preset-css/ts/button.ts +27 -0
  37. package/preset-css/ts/calendar.ts +1 -0
  38. package/preset-css/ts/card.ts +15 -0
  39. package/preset-css/ts/carousel.ts +9 -0
  40. package/preset-css/ts/chat-bubble.ts +17 -0
  41. package/preset-css/ts/checkbox.ts +16 -0
  42. package/preset-css/ts/code-mockup.ts +1 -0
  43. package/preset-css/ts/collapse.ts +9 -0
  44. package/preset-css/ts/countdown.ts +1 -0
  45. package/preset-css/ts/diff.ts +1 -0
  46. package/preset-css/ts/divider.ts +15 -0
  47. package/preset-css/ts/dock.ts +10 -0
  48. package/preset-css/ts/drawer-sidebar.ts +11 -0
  49. package/preset-css/ts/dropdown.ts +13 -0
  50. package/preset-css/ts/fab-speed-dial.ts +1 -0
  51. package/preset-css/ts/fieldset.ts +1 -0
  52. package/preset-css/ts/file-input.ts +17 -0
  53. package/preset-css/ts/filter.ts +1 -0
  54. package/preset-css/ts/footer.ts +7 -0
  55. package/preset-css/ts/hero.ts +1 -0
  56. package/preset-css/ts/hover-gallery.ts +1 -0
  57. package/preset-css/ts/index.ts +63 -0
  58. package/preset-css/ts/indicator.ts +10 -0
  59. package/preset-css/ts/join.ts +1 -0
  60. package/preset-css/ts/kbd.ts +1 -0
  61. package/preset-css/ts/label.ts +1 -0
  62. package/preset-css/ts/link.ts +12 -0
  63. package/preset-css/ts/list.ts +1 -0
  64. package/preset-css/ts/loading.ts +14 -0
  65. package/preset-css/ts/mask.ts +20 -0
  66. package/preset-css/ts/menu.ts +17 -0
  67. package/preset-css/ts/modal.ts +13 -0
  68. package/preset-css/ts/navbar.ts +1 -0
  69. package/preset-css/ts/pagination.ts +1 -0
  70. package/preset-css/ts/phone-mockup.ts +5 -0
  71. package/preset-css/ts/progress.ts +11 -0
  72. package/preset-css/ts/radial-progress.ts +1 -0
  73. package/preset-css/ts/radio.ts +16 -0
  74. package/preset-css/ts/range-slider.ts +16 -0
  75. package/preset-css/ts/rating.ts +10 -0
  76. package/preset-css/ts/select.ts +17 -0
  77. package/preset-css/ts/skeleton.ts +1 -0
  78. package/preset-css/ts/stack.ts +1 -0
  79. package/preset-css/ts/stat.ts +11 -0
  80. package/preset-css/ts/status.ts +16 -0
  81. package/preset-css/ts/steps.ts +15 -0
  82. package/preset-css/ts/swap.ts +9 -0
  83. package/preset-css/ts/table.ts +11 -0
  84. package/preset-css/ts/tabs.ts +17 -0
  85. package/preset-css/ts/text-input.ts +17 -0
  86. package/preset-css/ts/textarea.ts +17 -0
  87. package/preset-css/ts/theme-controller.ts +1 -0
  88. package/preset-css/ts/timeline.ts +11 -0
  89. package/preset-css/ts/toast.ts +9 -0
  90. package/preset-css/ts/toggle.ts +16 -0
  91. package/preset-css/ts/tooltip.ts +17 -0
  92. package/preset-css/ts/validator.ts +1 -0
  93. package/preset-css/ts/window-mockup.ts +1 -0
  94. package/service/index.d.ts +42 -0
  95. package/wrapper/index.d.ts +27 -0
@@ -0,0 +1,9 @@
1
+ export const ACCORDION_PREFIX_LIST = [
2
+ 'collapse',
3
+ 'collapse-title',
4
+ 'collapse-content',
5
+ 'collapse-arrow',
6
+ 'collapse-plus',
7
+ 'collapse-open',
8
+ 'collapse-close',
9
+ ];
@@ -0,0 +1,12 @@
1
+ export const ALERT_PREFIX_LIST = [
2
+ 'alert',
3
+ 'alert-outline',
4
+ 'alert-dash',
5
+ 'alert-soft',
6
+ 'alert-info',
7
+ 'alert-success',
8
+ 'alert-warning',
9
+ 'alert-error',
10
+ 'alert-vertical',
11
+ 'alert-horizontal',
12
+ ];
@@ -0,0 +1,7 @@
1
+ export const AVATAR_PREFIX_LIST = [
2
+ 'avatar',
3
+ 'avatar-group',
4
+ 'avatar-online',
5
+ 'avatar-offline',
6
+ 'avatar-placeholder',
7
+ ];
@@ -0,0 +1,20 @@
1
+ export const BADGE_PREFIX_LIST = [
2
+ 'badge',
3
+ 'badge-outline',
4
+ 'badge-dash',
5
+ 'badge-soft',
6
+ 'badge-ghost',
7
+ 'badge-neutral',
8
+ 'badge-primary',
9
+ 'badge-secondary',
10
+ 'badge-accent',
11
+ 'badge-info',
12
+ 'badge-success',
13
+ 'badge-warning',
14
+ 'badge-error',
15
+ 'badge-xs',
16
+ 'badge-sm',
17
+ 'badge-md',
18
+ 'badge-lg',
19
+ 'badge-xl',
20
+ ];
@@ -0,0 +1 @@
1
+ export const BREADCRUMBS_PREFIX_LIST = ['breadcrumbs'];
@@ -0,0 +1 @@
1
+ export const BROWSER_MOCKUP_PREFIX_LIST = ['mockup-browser', 'mockup-browser-toolbar'];
@@ -0,0 +1,27 @@
1
+ export const BUTTON_PREFIX_LIST = [
2
+ 'btn',
3
+ 'btn-neutral',
4
+ 'btn-primary',
5
+ 'btn-secondary',
6
+ 'btn-accent',
7
+ 'btn-info',
8
+ 'btn-success',
9
+ 'btn-warning',
10
+ 'btn-error',
11
+ 'btn-outline',
12
+ 'btn-dash',
13
+ 'btn-soft',
14
+ 'btn-ghost',
15
+ 'btn-link',
16
+ 'btn-active',
17
+ 'btn-disabled',
18
+ 'btn-xs',
19
+ 'btn-sm',
20
+ 'btn-md',
21
+ 'btn-lg',
22
+ 'btn-xl',
23
+ 'btn-wide',
24
+ 'btn-block',
25
+ 'btn-square',
26
+ 'btn-circle',
27
+ ];
@@ -0,0 +1 @@
1
+ export const CALENDAR_PREFIX_LIST = ['cally', 'pika-single', 'react-day-picker'];
@@ -0,0 +1,15 @@
1
+ export const CARD_PREFIX_LIST = [
2
+ 'card',
3
+ 'card-title',
4
+ 'card-body',
5
+ 'card-actions',
6
+ 'card-border',
7
+ 'card-dash',
8
+ 'card-side',
9
+ 'image-full',
10
+ 'card-xs',
11
+ 'card-sm',
12
+ 'card-md',
13
+ 'card-lg',
14
+ 'card-xl',
15
+ ];
@@ -0,0 +1,9 @@
1
+ export const CAROUSEL_PREFIX_LIST = [
2
+ 'carousel',
3
+ 'carousel-item',
4
+ 'carousel-start',
5
+ 'carousel-center',
6
+ 'carousel-end',
7
+ 'carousel-horizontal',
8
+ 'carousel-vertical',
9
+ ];
@@ -0,0 +1,17 @@
1
+ export const CHAT_BUBBLE_PREFIX_LIST = [
2
+ 'chat',
3
+ 'chat-image',
4
+ 'chat-header',
5
+ 'chat-footer',
6
+ 'chat-bubble',
7
+ 'chat-start',
8
+ 'chat-end',
9
+ 'chat-bubble-neutral',
10
+ 'chat-bubble-primary',
11
+ 'chat-bubble-secondary',
12
+ 'chat-bubble-accent',
13
+ 'chat-bubble-info',
14
+ 'chat-bubble-success',
15
+ 'chat-bubble-warning',
16
+ 'chat-bubble-error',
17
+ ];
@@ -0,0 +1,16 @@
1
+ export const CHECKBOX_PREFIX_LIST = [
2
+ 'checkbox',
3
+ 'checkbox-primary',
4
+ 'checkbox-secondary',
5
+ 'checkbox-accent',
6
+ 'checkbox-neutral',
7
+ 'checkbox-success',
8
+ 'checkbox-warning',
9
+ 'checkbox-info',
10
+ 'checkbox-error',
11
+ 'checkbox-xs',
12
+ 'checkbox-sm',
13
+ 'checkbox-md',
14
+ 'checkbox-lg',
15
+ 'checkbox-xl',
16
+ ];
@@ -0,0 +1 @@
1
+ export const CODE_MOCKUP_PREFIX_LIST = ['mockup-code'];
@@ -0,0 +1,9 @@
1
+ export const COLLAPSE_PREFIX_LIST = [
2
+ 'collapse',
3
+ 'collapse-title',
4
+ 'collapse-content',
5
+ 'collapse-arrow',
6
+ 'collapse-plus',
7
+ 'collapse-open',
8
+ 'collapse-close',
9
+ ];
@@ -0,0 +1 @@
1
+ export const COUNTDOWN_PREFIX_LIST = ['countdown'];
@@ -0,0 +1 @@
1
+ export const DIFF_PREFIX_LIST = ['diff', 'diff-item-1', 'diff-item-2', 'diff-resizer'];
@@ -0,0 +1,15 @@
1
+ export const DIVIDER_PREFIX_LIST = [
2
+ 'divider',
3
+ 'divider-neutral',
4
+ 'divider-primary',
5
+ 'divider-secondary',
6
+ 'divider-accent',
7
+ 'divider-success',
8
+ 'divider-warning',
9
+ 'divider-info',
10
+ 'divider-error',
11
+ 'divider-vertical',
12
+ 'divider-horizontal',
13
+ 'divider-start',
14
+ 'divider-end',
15
+ ];
@@ -0,0 +1,10 @@
1
+ export const DOCK_PREFIX_LIST = [
2
+ 'dock',
3
+ 'dock-label',
4
+ 'dock-active',
5
+ 'dock-xs',
6
+ 'dock-sm',
7
+ 'dock-md',
8
+ 'dock-lg',
9
+ 'dock-xl',
10
+ ];
@@ -0,0 +1,11 @@
1
+ export const DRAWER_SIDEBAR_PREFIX_LIST = [
2
+ 'drawer',
3
+ 'drawer-toggle',
4
+ 'drawer-content',
5
+ 'drawer-side',
6
+ 'drawer-overlay',
7
+ 'drawer-end',
8
+ 'drawer-open',
9
+ 'is-drawer-open:',
10
+ 'is-drawer-close:',
11
+ ];
@@ -0,0 +1,13 @@
1
+ export const DROPDOWN_PREFIX_LIST = [
2
+ 'dropdown',
3
+ 'dropdown-content',
4
+ 'dropdown-start',
5
+ 'dropdown-center',
6
+ 'dropdown-end',
7
+ 'dropdown-top',
8
+ 'dropdown-bottom',
9
+ 'dropdown-left',
10
+ 'dropdown-right',
11
+ 'dropdown-hover',
12
+ 'dropdown-open',
13
+ ];
@@ -0,0 +1 @@
1
+ export const FAB_SPEED_DIAL_PREFIX_LIST = ['fab', 'fab-close', 'fab-main-action', 'fab-flower'];
@@ -0,0 +1 @@
1
+ export const FIELDSET_PREFIX_LIST = ['fieldset', 'label', 'fieldset-legend'];
@@ -0,0 +1,17 @@
1
+ export const FILE_INPUT_PREFIX_LIST = [
2
+ 'file-input',
3
+ 'file-input-ghost',
4
+ 'file-input-neutral',
5
+ 'file-input-primary',
6
+ 'file-input-secondary',
7
+ 'file-input-accent',
8
+ 'file-input-info',
9
+ 'file-input-success',
10
+ 'file-input-warning',
11
+ 'file-input-error',
12
+ 'file-input-xs',
13
+ 'file-input-sm',
14
+ 'file-input-md',
15
+ 'file-input-lg',
16
+ 'file-input-xl',
17
+ ];
@@ -0,0 +1 @@
1
+ export const FILTER_PREFIX_LIST = ['filter', 'filter-reset'];
@@ -0,0 +1,7 @@
1
+ export const FOOTER_PREFIX_LIST = [
2
+ 'footer',
3
+ 'footer-title',
4
+ 'footer-center',
5
+ 'footer-horizontal',
6
+ 'footer-vertical',
7
+ ];
@@ -0,0 +1 @@
1
+ export const HERO_PREFIX_LIST = ['hero', 'hero-content', 'hero-overlay'];
@@ -0,0 +1 @@
1
+ export const HOVER_GALLERY_PREFIX_LIST = ['hover-gallery'];
@@ -0,0 +1,63 @@
1
+ export * from './accordion';
2
+ export * from './alert';
3
+ export * from './avatar';
4
+ export * from './badge';
5
+ export * from './breadcrumbs';
6
+ export * from './button';
7
+ export * from './calendar';
8
+ export * from './card';
9
+ export * from './carousel';
10
+ export * from './chat-bubble';
11
+ export * from './checkbox';
12
+ export * from './collapse';
13
+ export * from './countdown';
14
+ export * from './diff';
15
+ export * from './divider';
16
+ export * from './dock';
17
+ export * from './drawer-sidebar';
18
+ export * from './dropdown';
19
+ export * from './fab-speed-dial';
20
+ export * from './fieldset';
21
+ export * from './file-input';
22
+ export * from './filter';
23
+ export * from './footer';
24
+ export * from './hero';
25
+ export * from './hover-gallery';
26
+ export * from './indicator';
27
+ export * from './text-input';
28
+ export * from './join';
29
+ export * from './kbd';
30
+ export * from './label';
31
+ export * from './link';
32
+ export * from './list';
33
+ export * from './loading';
34
+ export * from './mask';
35
+ export * from './menu';
36
+ export * from './browser-mockup';
37
+ export * from './code-mockup';
38
+ export * from './phone-mockup';
39
+ export * from './window-mockup';
40
+ export * from './modal';
41
+ export * from './navbar';
42
+ export * from './pagination';
43
+ export * from './progress';
44
+ export * from './radial-progress';
45
+ export * from './radio';
46
+ export * from './range-slider';
47
+ export * from './rating';
48
+ export * from './select';
49
+ export * from './skeleton';
50
+ export * from './stack';
51
+ export * from './stat';
52
+ export * from './status';
53
+ export * from './steps';
54
+ export * from './swap';
55
+ export * from './tabs';
56
+ export * from './table';
57
+ export * from './textarea';
58
+ export * from './theme-controller';
59
+ export * from './timeline';
60
+ export * from './toast';
61
+ export * from './toggle';
62
+ export * from './tooltip';
63
+ export * from './validator';
@@ -0,0 +1,10 @@
1
+ export const INDICATOR_PREFIX_LIST = [
2
+ 'indicator',
3
+ 'indicator-item',
4
+ 'indicator-start',
5
+ 'indicator-center',
6
+ 'indicator-end',
7
+ 'indicator-top',
8
+ 'indicator-middle',
9
+ 'indicator-bottom',
10
+ ];
@@ -0,0 +1 @@
1
+ export const JOIN_PREFIX_LIST = ['join', 'join-item', 'join-vertical', 'join-horizontal'];
@@ -0,0 +1 @@
1
+ export const KBD_PREFIX_LIST = ['kbd', 'kbd-xs', 'kbd-sm', 'kbd-md', 'kbd-lg', 'kbd-xl'];
@@ -0,0 +1 @@
1
+ export const LABEL_PREFIX_LIST = ['label', 'floating-label'];
@@ -0,0 +1,12 @@
1
+ export const LINK_PREFIX_LIST = [
2
+ 'link',
3
+ 'link-hover',
4
+ 'link-neutral',
5
+ 'link-primary',
6
+ 'link-secondary',
7
+ 'link-accent',
8
+ 'link-success',
9
+ 'link-info',
10
+ 'link-warning',
11
+ 'link-error',
12
+ ];
@@ -0,0 +1 @@
1
+ export const LIST_PREFIX_LIST = ['list', 'list-row', 'list-col-wrap', 'list-col-grow'];
@@ -0,0 +1,14 @@
1
+ export const LOADING_PREFIX_LIST = [
2
+ 'loading',
3
+ 'loading-spinner',
4
+ 'loading-dots',
5
+ 'loading-ring',
6
+ 'loading-ball',
7
+ 'loading-bars',
8
+ 'loading-infinity',
9
+ 'loading-xs',
10
+ 'loading-sm',
11
+ 'loading-md',
12
+ 'loading-lg',
13
+ 'loading-xl',
14
+ ];
@@ -0,0 +1,20 @@
1
+ export const MASK_PREFIX_LIST = [
2
+ 'mask',
3
+ 'mask-squircle',
4
+ 'mask-heart',
5
+ 'mask-hexagon',
6
+ 'mask-hexagon-2',
7
+ 'mask-decagon',
8
+ 'mask-pentagon',
9
+ 'mask-diamond',
10
+ 'mask-square',
11
+ 'mask-circle',
12
+ 'mask-star',
13
+ 'mask-star-2',
14
+ 'mask-triangle',
15
+ 'mask-triangle-2',
16
+ 'mask-triangle-3',
17
+ 'mask-triangle-4',
18
+ 'mask-half-1',
19
+ 'mask-half-2',
20
+ ];
@@ -0,0 +1,17 @@
1
+ export const MENU_PREFIX_LIST = [
2
+ 'menu',
3
+ 'menu-title',
4
+ 'menu-dropdown',
5
+ 'menu-dropdown-toggle',
6
+ 'menu-disabled',
7
+ 'menu-active',
8
+ 'menu-focus',
9
+ 'menu-dropdown-show',
10
+ 'menu-xs',
11
+ 'menu-sm',
12
+ 'menu-md',
13
+ 'menu-lg',
14
+ 'menu-xl',
15
+ 'menu-vertical',
16
+ 'menu-horizontal',
17
+ ];
@@ -0,0 +1,13 @@
1
+ export const MODAL_PREFIX_LIST = [
2
+ 'modal',
3
+ 'modal-box',
4
+ 'modal-action',
5
+ 'modal-backdrop',
6
+ 'modal-toggle',
7
+ 'modal-open',
8
+ 'modal-top',
9
+ 'modal-middle',
10
+ 'modal-bottom',
11
+ 'modal-start',
12
+ 'modal-end',
13
+ ];
@@ -0,0 +1 @@
1
+ export const NAVBAR_PREFIX_LIST = ['navbar', 'navbar-start', 'navbar-center', 'navbar-end'];
@@ -0,0 +1 @@
1
+ export const PAGINATION_PREFIX_LIST = ['join', 'join-item', 'join-vertical', 'join-horizontal'];
@@ -0,0 +1,5 @@
1
+ export const PHONE_MOCKUP_PREFIX_LIST = [
2
+ 'mockup-phone',
3
+ 'mockup-phone-camera',
4
+ 'mockup-phone-display',
5
+ ];
@@ -0,0 +1,11 @@
1
+ export const PROGRESS_PREFIX_LIST = [
2
+ 'progress',
3
+ 'progress-neutral',
4
+ 'progress-primary',
5
+ 'progress-secondary',
6
+ 'progress-accent',
7
+ 'progress-info',
8
+ 'progress-success',
9
+ 'progress-warning',
10
+ 'progress-error',
11
+ ];
@@ -0,0 +1 @@
1
+ export const RADIAL_PROGRESS_PREFIX_LIST = ['radial-progress'];
@@ -0,0 +1,16 @@
1
+ export const RADIO_PREFIX_LIST = [
2
+ 'radio',
3
+ 'radio-neutral',
4
+ 'radio-primary',
5
+ 'radio-secondary',
6
+ 'radio-accent',
7
+ 'radio-success',
8
+ 'radio-warning',
9
+ 'radio-info',
10
+ 'radio-error',
11
+ 'radio-xs',
12
+ 'radio-sm',
13
+ 'radio-md',
14
+ 'radio-lg',
15
+ 'radio-xl',
16
+ ];
@@ -0,0 +1,16 @@
1
+ export const RANGE_SLIDER_PREFIX_LIST = [
2
+ 'range',
3
+ 'range-neutral',
4
+ 'range-primary',
5
+ 'range-secondary',
6
+ 'range-accent',
7
+ 'range-success',
8
+ 'range-warning',
9
+ 'range-info',
10
+ 'range-error',
11
+ 'range-xs',
12
+ 'range-sm',
13
+ 'range-md',
14
+ 'range-lg',
15
+ 'range-xl',
16
+ ];
@@ -0,0 +1,10 @@
1
+ export const RATING_PREFIX_LIST = [
2
+ 'rating',
3
+ 'rating-half',
4
+ 'rating-hidden',
5
+ 'rating-xs',
6
+ 'rating-sm',
7
+ 'rating-md',
8
+ 'rating-lg',
9
+ 'rating-xl',
10
+ ];
@@ -0,0 +1,17 @@
1
+ export const SELECT_PREFIX_LIST = [
2
+ 'select',
3
+ 'select-ghost',
4
+ 'select-neutral',
5
+ 'select-primary',
6
+ 'select-secondary',
7
+ 'select-accent',
8
+ 'select-info',
9
+ 'select-success',
10
+ 'select-warning',
11
+ 'select-error',
12
+ 'select-xs',
13
+ 'select-sm',
14
+ 'select-md',
15
+ 'select-lg',
16
+ 'select-xl',
17
+ ];
@@ -0,0 +1 @@
1
+ export const SKELETON_PREFIX_LIST = ['skeleton'];
@@ -0,0 +1 @@
1
+ export const STACK_PREFIX_LIST = ['stack', 'stack-top', 'stack-bottom', 'stack-start', 'stack-end'];
@@ -0,0 +1,11 @@
1
+ export const STAT_PREFIX_LIST = [
2
+ 'stats',
3
+ 'stat',
4
+ 'stat-title',
5
+ 'stat-value',
6
+ 'stat-desc',
7
+ 'stat-figure',
8
+ 'stat-actions',
9
+ 'stats-horizontal',
10
+ 'stats-vertical',
11
+ ];
@@ -0,0 +1,16 @@
1
+ export const STATUS_PREFIX_LIST = [
2
+ 'status',
3
+ 'status-neutral',
4
+ 'status-primary',
5
+ 'status-secondary',
6
+ 'status-accent',
7
+ 'status-info',
8
+ 'status-success',
9
+ 'status-warning',
10
+ 'status-error',
11
+ 'status-xs',
12
+ 'status-sm',
13
+ 'status-md',
14
+ 'status-lg',
15
+ 'status-xl',
16
+ ];
@@ -0,0 +1,15 @@
1
+ export const STEPS_PREFIX_LIST = [
2
+ 'steps',
3
+ 'step',
4
+ 'step-icon',
5
+ 'step-neutral',
6
+ 'step-primary',
7
+ 'step-secondary',
8
+ 'step-accent',
9
+ 'step-info',
10
+ 'step-success',
11
+ 'step-warning',
12
+ 'step-error',
13
+ 'steps-vertical',
14
+ 'steps-horizontal',
15
+ ];
@@ -0,0 +1,9 @@
1
+ export const SWAP_PREFIX_LIST = [
2
+ 'swap',
3
+ 'swap-on',
4
+ 'swap-off',
5
+ 'swap-indeterminate',
6
+ 'swap-active',
7
+ 'swap-rotate',
8
+ 'swap-flip',
9
+ ];
@@ -0,0 +1,11 @@
1
+ export const TABLE_PREFIX_LIST = [
2
+ 'table',
3
+ 'table-zebra',
4
+ 'table-pin-rows',
5
+ 'table-pin-cols',
6
+ 'table-xs',
7
+ 'table-sm',
8
+ 'table-md',
9
+ 'table-lg',
10
+ 'table-xl',
11
+ ];
@@ -0,0 +1,17 @@
1
+ export const TABS_PREFIX_LIST = [
2
+ 'tabs',
3
+ 'tab',
4
+ 'tab-content',
5
+ 'tabs-box',
6
+ 'tabs-border',
7
+ 'tabs-lift',
8
+ 'tab-active',
9
+ 'tab-disabled',
10
+ 'tabs-top',
11
+ 'tabs-bottom',
12
+ 'tabs-xs',
13
+ 'tabs-sm',
14
+ 'tabs-md',
15
+ 'tabs-lg',
16
+ 'tabs-xl',
17
+ ];
@@ -0,0 +1,17 @@
1
+ export const TEXT_INPUT_PREFIX_LIST = [
2
+ 'input',
3
+ 'input-ghost',
4
+ 'input-neutral',
5
+ 'input-primary',
6
+ 'input-secondary',
7
+ 'input-accent',
8
+ 'input-info',
9
+ 'input-success',
10
+ 'input-warning',
11
+ 'input-error',
12
+ 'input-xs',
13
+ 'input-sm',
14
+ 'input-md',
15
+ 'input-lg',
16
+ 'input-xl',
17
+ ];