@ironsource/shared-ui 1.4.3-rc.2 → 1.4.3-rc.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.
Files changed (120) hide show
  1. package/AddFilterButton.vue_vue_type_style_index_0_scoped_true_lang.css +1 -1
  2. package/AppTrigger.vue_vue_type_style_index_0_scoped_true_lang.css +1 -1
  3. package/AutocompleteInput.vue_vue_type_style_index_0_scoped_true_lang.css +1 -1
  4. package/Banner.vue_vue_type_style_index_0_scoped_true_lang.css +1 -1
  5. package/Button.vue_vue_type_style_index_0_scoped_true_lang.css +1 -1
  6. package/ButtonBase.vue_vue_type_style_index_0_scoped_true_lang.css +1 -1
  7. package/ButtonBase.vue_vue_type_style_index_1_scoped_true_lang.css +1 -0
  8. package/ButtonSuper.vue_vue_type_style_index_0_scoped_true_lang.css +1 -0
  9. package/ButtonV4.vue_vue_type_style_index_0_scoped_true_lang.css +1 -0
  10. package/CalendarMonth.vue_vue_type_style_index_0_scoped_true_lang.css +1 -1
  11. package/Chip.vue_vue_type_style_index_0_scoped_true_lang.css +1 -1
  12. package/ChipV4.vue_vue_type_style_index_0_scoped_true_lang.css +1 -0
  13. package/DateRange.vue_vue_type_style_index_0_scoped_true_lang.css +1 -1
  14. package/Dialog.vue_vue_type_style_index_0_scoped_true_lang.css +1 -1
  15. package/Dropdown.vue_vue_type_style_index_0_scoped_true_lang.css +1 -1
  16. package/Dropdown.vue_vue_type_style_index_1_lang.css +1 -1
  17. package/Editable.vue_vue_type_style_index_0_scoped_true_lang.css +1 -1
  18. package/EmptyState.vue_vue_type_style_index_0_scoped_true_lang.css +1 -1
  19. package/FilterSearchInput.vue_vue_type_style_index_0_scoped_true_lang.css +1 -1
  20. package/FloatingToolbar.vue_vue_type_style_index_0_scoped_true_lang.css +1 -1
  21. package/IconButton.vue_vue_type_style_index_0_scoped_true_lang.css +1 -1
  22. package/IncludeExclude.vue_vue_type_style_index_0_scoped_true_lang.css +1 -1
  23. package/IncludeExcludeAppTrigger.vue_vue_type_style_index_0_scoped_true_lang.css +1 -1
  24. package/IncludeExcludeChipFilter.vue_vue_type_style_index_0_scoped_true_lang.css +1 -1
  25. package/Input.vue_vue_type_style_index_0_scoped_true_lang.css +1 -1
  26. package/Menu.vue_vue_type_style_index_1_lang.css +1 -1
  27. package/MenuItem.vue_vue_type_style_index_0_scoped_true_lang.css +1 -1
  28. package/Popover.vue_vue_type_style_index_0_lang.css +1 -1
  29. package/README.md +21 -36
  30. package/ScrollButton.vue_vue_type_style_index_0_scoped_true_lang.css +1 -1
  31. package/Search.vue_vue_type_style_index_0_scoped_true_lang.css +1 -1
  32. package/SearchInput.vue_vue_type_style_index_0_scoped_true_lang.css +1 -1
  33. package/Snackbar.vue_vue_type_style_index_0_scoped_true_lang.css +1 -1
  34. package/Switch.vue_vue_type_style_index_0_scoped_true_lang.css +1 -1
  35. package/SwitchV4.vue_vue_type_style_index_0_scoped_true_lang.css +1 -0
  36. package/Table.vue_vue_type_style_index_0_scoped_true_lang.css +1 -1
  37. package/Table.vue_vue_type_style_index_1_lang.css +1 -1
  38. package/Tabs.vue_vue_type_style_index_0_scoped_true_lang.css +1 -1
  39. package/TextArea.vue_vue_type_style_index_0_scoped_true_lang.css +1 -1
  40. package/Toggle.vue_vue_type_style_index_0_scoped_true_lang.css +1 -1
  41. package/components/ThemeWrapper/ThemeStrore.d.ts +4 -0
  42. package/components/ThemeWrapper/ThemeWrapper.vue.d.ts +15 -0
  43. package/components/appTrigger/AppTrigger.vue.js +3 -3
  44. package/components/autocompleteDropdown/AutocompleteDropdown.vue.js +2 -1
  45. package/components/button/{ButtonBase.vue.d.ts → common/ButtonBase.vue.d.ts} +9 -9
  46. package/components/button/{ButtonBase.vue.js → common/ButtonBase.vue.js} +8 -8
  47. package/components/button/common/ButtonSuper.vue.d.ts +42 -0
  48. package/components/button/{Button.vue.js → common/ButtonSuper.vue.js} +7 -7
  49. package/components/button/v3/Button.vue.js +40 -0
  50. package/components/button/{IconButton.vue.js → v3/IconButton.vue.js} +7 -7
  51. package/components/button/{ScrollButton.vue.js → v3/ScrollButton.vue.js} +6 -6
  52. package/components/button/v3/index.d.ts +126 -0
  53. package/components/button/v4/ButtonV4.vue.d.ts +52 -0
  54. package/components/button/v4/ButtonV4.vue.js +44 -0
  55. package/components/button/v4/index.d.ts +72 -0
  56. package/components/button/v4/index.vue.js +6 -0
  57. package/components/checkbox/Checkbox.vue.d.ts +1 -1
  58. package/components/checkbox/index.d.ts +9 -9
  59. package/components/chip/{Chip.vue.js → v3/Chip.vue.js} +5 -5
  60. package/components/chip/v4/ChipV4.vue.d.ts +48 -0
  61. package/components/chip/v4/ChipV4.vue.js +76 -0
  62. package/components/chip/v4/index.d.ts +63 -0
  63. package/components/chip/v4/index.vue.js +6 -0
  64. package/components/dateRange/CalendarMonth.vue.js +3 -3
  65. package/components/dateRange/DateRange.vue.js +4 -4
  66. package/components/dialog/Dialog.vue.d.ts +1 -1
  67. package/components/dialog/Dialog.vue.js +7 -6
  68. package/components/dialog/index.d.ts +11 -11
  69. package/components/dropdown/Dropdown.vue.d.ts +2 -2
  70. package/components/dropdown/Dropdown.vue.js +5 -5
  71. package/components/dropdown/SearchInput.vue.js +6 -5
  72. package/components/dropdown/index.d.ts +16 -16
  73. package/components/emptyState/EmptyState.vue.d.ts +1 -1
  74. package/components/emptyState/EmptyState.vue.js +4 -4
  75. package/components/emptyState/index.d.ts +14 -14
  76. package/components/filterDropdown/AddFilterButton.vue.js +2 -2
  77. package/components/filterDropdown/FilterDropdown.vue.js +2 -1
  78. package/components/filtersPanel/FilterSearchInput.vue.js +2 -2
  79. package/components/floatingToolbar/FloatingToolbar.vue.js +6 -5
  80. package/components/icon/Icon.vue.js +0 -1
  81. package/components/icon/icons/index.d.ts +0 -3
  82. package/components/icon/icons/index.vue.js +0 -3
  83. package/components/icon/index.d.ts +0 -3
  84. package/components/includeExclude/IncludeExclude.vue.js +4 -4
  85. package/components/includeExclude/IncludeExcludeAppHeader.vue.js +1 -1
  86. package/components/includeExclude/IncludeExcludeAppTrigger.vue.js +3 -3
  87. package/components/includeExclude/IncludeExcludeChipFilter.vue.js +4 -4
  88. package/components/input/Input.vue.d.ts +2 -2
  89. package/components/input/Input.vue.js +3 -3
  90. package/components/input/index.d.ts +16 -16
  91. package/components/menu/Menu.vue.d.ts +1 -1
  92. package/components/menu/index.d.ts +5 -5
  93. package/components/snackbar/Snackbar.vue.d.ts +1 -1
  94. package/components/snackbar/Snackbar.vue.js +6 -5
  95. package/components/switch/{Switch.vue.js → v3/Switch.vue.js} +5 -5
  96. package/components/switch/v4/SwitchV4.vue.d.ts +37 -0
  97. package/components/switch/v4/SwitchV4.vue.js +87 -0
  98. package/components/switch/v4/index.d.ts +46 -0
  99. package/components/switch/v4/index.vue.js +6 -0
  100. package/components/table/Table.vue.js +3 -3
  101. package/components/tooltip/Tooltip.vue.d.ts +1 -1
  102. package/components/tooltip/index.d.ts +5 -5
  103. package/components/typography/index.d.ts +9 -9
  104. package/index.d.ts +429 -3
  105. package/index.vue.js +18 -9
  106. package/package.json +20 -11
  107. package/styleguide.scss +77 -78
  108. package/components/button/index.d.ts +0 -126
  109. package/components/icon/icons/Hammer.vue.d.ts +0 -2
  110. package/components/icon/icons/Hammer.vue.js +0 -26
  111. /package/components/button/{Button.vue.d.ts → v3/Button.vue.d.ts} +0 -0
  112. /package/components/button/{IconButton.vue.d.ts → v3/IconButton.vue.d.ts} +0 -0
  113. /package/components/button/{ScrollButton.vue.d.ts → v3/ScrollButton.vue.d.ts} +0 -0
  114. /package/components/button/{index.vue.js → v3/index.vue.js} +0 -0
  115. /package/components/chip/{Chip.vue.d.ts → v3/Chip.vue.d.ts} +0 -0
  116. /package/components/chip/{index.d.ts → v3/index.d.ts} +0 -0
  117. /package/components/chip/{index.vue.js → v3/index.vue.js} +0 -0
  118. /package/components/switch/{Switch.vue.d.ts → v3/Switch.vue.d.ts} +0 -0
  119. /package/components/switch/{index.d.ts → v3/index.d.ts} +0 -0
  120. /package/components/switch/{index.vue.js → v3/index.vue.js} +0 -0
package/index.vue.js CHANGED
@@ -1,10 +1,9 @@
1
- import './AppTrigger.vue_vue_type_style_index_0_scoped_true_lang.css';
1
+ import './IncludeExcludeAppTrigger.vue_vue_type_style_index_0_scoped_true_lang.css';
2
2
  export { AppTriggerTypes } from './components/appTrigger/index.vue.js';
3
3
  export { AutocompleteDropdownTypes } from './components/autocompleteDropdown/index.vue.js';
4
4
  export { MenuItemTypes } from './components/menuItem/index.vue.js';
5
5
  export { MenuTypes } from './components/menu/index.vue.js';
6
6
  export { AppIconTypes } from './components/appIcon/index.vue.js';
7
- export { SwitchTypes } from './components/switch/index.vue.js';
8
7
  export { RadioButtonTypes } from './components/radioButton/index.vue.js';
9
8
  export { Snackbar } from './components/snackbar/index.vue.js';
10
9
  export { FloatingToolbarTypes } from './components/floatingToolbar/index.vue.js';
@@ -18,14 +17,18 @@ export { FilterPanelTypes } from './components/filtersPanel/index.vue.js';
18
17
  export { FilterDropdownTypes } from './components/filterDropdown/index.vue.js';
19
18
  export { DropdownTypes } from './components/dropdown/index.vue.js';
20
19
  export { TabsTypes } from './components/tabs/index.vue.js';
21
- export { ButtonTypes } from './components/button/index.vue.js';
22
20
  export { CheckboxTypes } from './components/checkbox/index.vue.js';
23
21
  export { IconTypes } from './components/icon/index.vue.js';
24
22
  export { SearchTypes } from './components/search/index.vue.js';
25
23
  export { SkeletonTypes } from './components/skeleton/index.vue.js';
26
24
  export { TypographyTypes } from './components/typography/index.vue.js';
27
25
  export { PopoverTypes } from './components/popover/index.vue.js';
28
- export { ChipTypes } from './components/chip/index.vue.js';
26
+ import * as index$5 from './components/button/v3/index.vue.js';
27
+ import * as index$6 from './components/button/v4/index.vue.js';
28
+ import * as index$1 from './components/chip/v3/index.vue.js';
29
+ import * as index$2 from './components/chip/v4/index.vue.js';
30
+ import * as index$3 from './components/switch/v3/index.vue.js';
31
+ import * as index$4 from './components/switch/v4/index.vue.js';
29
32
  export { ToggleTypes } from './components/toggle/index.vue.js';
30
33
  export { TooltipTypes } from './components/tooltip/index.vue.js';
31
34
  export { InputTypes } from './components/input/index.vue.js';
@@ -43,7 +46,6 @@ export { default as AutocompleteDropdown } from './components/autocompleteDropdo
43
46
  export { default as MenuItem } from './components/menuItem/MenuItem.vue.js';
44
47
  export { default as Menu } from './components/menu/Menu.vue.js';
45
48
  export { default as AppIcon } from './components/appIcon/AppIcon.vue.js';
46
- export { default as Switch } from './components/switch/Switch.vue.js';
47
49
  export { default as RadioButton } from './components/radioButton/RadioButton.vue.js';
48
50
  export { default as RadioGroup } from './components/radioButton/RadioGroup.vue.js';
49
51
  export { snackbarEmits, snackbarTypes } from './components/snackbar/snackbar.types.vue.js';
@@ -69,9 +71,6 @@ export { default as Option } from './components/dropdown/Option.vue.js';
69
71
  export { default as Label } from './components/dropdown/Label.vue.js';
70
72
  export { default as SearchInput } from './components/dropdown/SearchInput.vue.js';
71
73
  export { default as Tabs } from './components/tabs/Tabs.vue.js';
72
- export { default as Button } from './components/button/Button.vue.js';
73
- export { default as IconButton } from './components/button/IconButton.vue.js';
74
- export { default as ScrollButton } from './components/button/ScrollButton.vue.js';
75
74
  export { default as Checkbox } from './components/checkbox/Checkbox.vue.js';
76
75
  export { default as Icon } from './components/icon/Icon.vue.js';
77
76
  export { icons } from './components/icon/icons/index.vue.js';
@@ -79,7 +78,6 @@ export { default as Search } from './components/search/Search.vue.js';
79
78
  export { default as Skeleton } from './components/skeleton/Skeleton.vue.js';
80
79
  export { default as Heading } from './components/typography/Heading.vue.js';
81
80
  export { default as Text } from './components/typography/Text.vue.js';
82
- export { default as Chip } from './components/chip/Chip.vue.js';
83
81
  export { default as Toggle } from './components/toggle/Toggle.vue.js';
84
82
  export { default as Input } from './components/input/Input.vue.js';
85
83
  export { default as DollarInput } from './components/input/DollarInput.vue.js';
@@ -91,3 +89,14 @@ export { EditableContext, useEditableContext } from './components/table-cells/Ed
91
89
  export { default as DateRange } from './components/dateRange/DateRange.vue.js';
92
90
  export { default as DatePicker } from './components/datePicker/DatePicker.vue.js';
93
91
  export { default as Banner } from './components/banner/Banner.vue.js';
92
+
93
+ var index = {
94
+ ...index$1,
95
+ ...index$2,
96
+ ...index$3,
97
+ ...index$4,
98
+ ...index$5,
99
+ ...index$6
100
+ };
101
+
102
+ export { index as default };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ironsource/shared-ui",
3
- "version": "1.4.3-rc.2",
3
+ "version": "1.4.3-rc.4",
4
4
  "engines": {
5
5
  "npm": ">=7.0.0",
6
6
  "node": ">=16.0.0"
@@ -13,7 +13,6 @@
13
13
  "storybook:dist": "StoryBookEnv=prod start-storybook -p 6006",
14
14
  "build-storybook": "build-storybook -o docs",
15
15
  "serve-storybook": "RemoveAddons=true npm run build-storybook && http-server ./docs --port 6007",
16
- "serve-storybook-ci": "npx concurrently -s first -n 'SB,TEST' -c 'magenta,blue' 'npm run storybook:dist --silent' 'npx wait-on tcp:6006' ",
17
16
  "test-storybook": "test-storybook --maxWorkers=2",
18
17
  "test-storybook-ci": "npx concurrently -k -s first -n 'SB,TEST' -c 'magenta,blue' 'npm run storybook:dist --silent' 'npx wait-on tcp:6006 && npm run test-storybook' ",
19
18
  "jest:integration:update": "jest --updateSnapshot",
@@ -44,6 +43,7 @@
44
43
  "release": "commit-and-tag-version"
45
44
  },
46
45
  "dependencies": {
46
+ "@storybook/addon-cssresources": "^6.2.9",
47
47
  "@vueuse/core": "^8.7.5",
48
48
  "@vueuse/integrations": "^8.9.1",
49
49
  "date-fns": "^2.29.1",
@@ -139,7 +139,8 @@
139
139
  "import": "./index.js"
140
140
  },
141
141
  "./appIcon": "./components/appIcon/AppIcon.vue.js",
142
- "./switch": "./components/switch/Switch.vue.js",
142
+ "./switch/v3": "./components/switch/v3/Switch.vue.js",
143
+ "./switch/v4": "./components/switch/v4/SwitchV4.vue.js",
143
144
  "./editable": "./components/table-cells/Editable.vue.js",
144
145
  "./radioButton": "./components/radioButton/RadioButton.vue.js",
145
146
  "./radioGroup": "./components/radioButton/RadioGroup.vue.js",
@@ -156,10 +157,12 @@
156
157
  "./filterDropdown": "./components/filterDropdown/FilterDropdown.vue.js",
157
158
  "./filtersPanel": "./components/filtersPanel/index.vue.js",
158
159
  "./tabs": "./components/tabs/Tabs.vue.js",
159
- "./chip": "./components/chip/Chip.vue.js",
160
- "./button": "./components/button/Button.vue.js",
161
- "./iconButton": "./components/button/IconButton.vue.js",
162
- "./scrollButton": "./components/button/ScrollButton.vue.js",
160
+ "./chip/v3": "./components/chip/v3/Chip.vue.js",
161
+ "./chip/v4": "./components/chip/v4/ChipV4.vue.js",
162
+ "./button": "./components/button/v3/Button.vue.js",
163
+ "./button/v4": "./components/button/v4/ButtonV4.vue.js",
164
+ "./iconButton": "./components/button/v3/IconButton.vue.js",
165
+ "./scrollButton": "./components/button/v3/ScrollButton.vue.js",
163
166
  "./checkbox": "./components/checkbox/Checkbox.vue.js",
164
167
  "./icon": "./components/icon/Icon.vue.js",
165
168
  "./toggle": "./components/toggle/Toggle.vue.js",
@@ -213,8 +216,11 @@
213
216
  "includeExclude": [
214
217
  "./components/includeExclude/index.d.ts"
215
218
  ],
216
- "switch": [
217
- "./components/switch/Switch.vue.d.ts"
219
+ "switch/v3": [
220
+ "./components/switch/v3/Switch.vue.d.ts"
221
+ ],
222
+ "switch/v4": [
223
+ "./components/switch/v4/SwitchV4.vue.d.ts"
218
224
  ],
219
225
  "cssBaseline": [
220
226
  "./components/cssBaseline/CssBaseline.vue.d.ts"
@@ -246,8 +252,11 @@
246
252
  "./datePicker": [
247
253
  "./components/datePicker/DatePicker.vue.d.ts"
248
254
  ],
249
- "chip": [
250
- "./components/chip/Chip.vue.d.ts"
255
+ "chip/v3": [
256
+ "./components/chip/v3/Chip.vue.d.ts"
257
+ ],
258
+ "chip/v4": [
259
+ "./components/chip/v4/ChipV4.vue.d.ts"
251
260
  ],
252
261
  "button": [
253
262
  "./components/button/Button.vue.d.ts"
package/styleguide.scss CHANGED
@@ -1,32 +1,32 @@
1
1
  /* #region Colors */
2
- $white: #FFFFFF;
2
+ $white: #ffffff;
3
3
  $black: #000000;
4
4
 
5
- $black-200: #696A6b;
6
- $black-300: #565C62;
5
+ $black-200: #696a6b;
6
+ $black-300: #565c62;
7
7
  $black-500: #53575b;
8
8
  $black-900: #41454d;
9
9
 
10
- $primary-100: #E2EEFF;
11
- $primary-200: #C9DFFF;
12
- $primary-300: #96C0FF;
13
- $primary-400: #68A5FF;
14
- $primary-500: #3083FF;
15
- $primary-600: #2B76E6;
16
- $primary-700: #005BE2;
17
- $primary-800: #0051C9;
18
- $primary-900: #0046AF;
19
-
20
- $light-50: #F7F8F9;
21
- $light-100: #F1F3F4;
22
- $light-200: #EDEFF0;
23
- $light-300: #E5E7E9;
24
- $light-400: #DDDFE1;
25
- $light-500: #D2D5D8;
26
- $light-600: #B7BBC0;
27
- $light-700: #A9AFB4;
28
- $light-800: #8E959D;
29
- $light-900: #7B838C;
10
+ $primary-100: #e2eeff;
11
+ $primary-200: #c9dfff;
12
+ $primary-300: #96c0ff;
13
+ $primary-400: #68a5ff;
14
+ $primary-500: #3083ff;
15
+ $primary-600: #2b76e6;
16
+ $primary-700: #005be2;
17
+ $primary-800: #0051c9;
18
+ $primary-900: #0046af;
19
+
20
+ $light-50: #f7f8f9;
21
+ $light-100: #f1f3f4;
22
+ $light-200: #edeff0;
23
+ $light-300: #e5e7e9;
24
+ $light-400: #dddfe1;
25
+ $light-500: #d2d5d8;
26
+ $light-600: #b7bbc0;
27
+ $light-700: #a9afb4;
28
+ $light-800: #8e959d;
29
+ $light-900: #7b838c;
30
30
  $light-1000: #626970;
31
31
 
32
32
  $secondary-100: #e1fbfc;
@@ -56,14 +56,14 @@ $negative-500: #ff6a63;
56
56
  $negative-600: #ec5d56;
57
57
  $negative-700: #da564f;
58
58
 
59
- $dark-100: #CFD0E8;
60
- $dark-200: #B6B9DD;
59
+ $dark-100: #cfd0e8;
60
+ $dark-200: #b6b9dd;
61
61
  $dark-300: #313d91;
62
62
  $dark-400: #212791;
63
63
  $dark-500: #0d148c;
64
64
  $dark-600: #021074;
65
65
  $dark-700: #1d1c64;
66
- $dark-800: #070A46;
66
+ $dark-800: #070a46;
67
67
 
68
68
  $alpha-30: 4D;
69
69
  $input-shadow-color: unquote($primary-500 + '' + $alpha-30);
@@ -105,20 +105,20 @@ $breakpoint-xl: 1920px;
105
105
  /* #endregion Breakpoints */
106
106
 
107
107
  /* #region Media */
108
- $mobile: "only screen and (max-width:#{$breakpoint-xxs-end})";
109
- $tablet: "only screen and (min-width:#{$breakpoint-sm-start}) and (max-width:#{$breakpoint-sm-end})";
110
- $smallLaptop: "only screen and (min-width:#{$breakpoint-md-start}) and (max-width:#{$breakpoint-md-end})";
111
- $largeLaptop: "only screen and (min-width:#{$breakpoint-lg-start}) and (max-width:#{$breakpoint-lg-end})";
112
- $desktop: "only screen and (min-width:#{$breakpoint-xl})";
108
+ $mobile: 'only screen and (max-width:#{$breakpoint-xxs-end})';
109
+ $tablet: 'only screen and (min-width:#{$breakpoint-sm-start}) and (max-width:#{$breakpoint-sm-end})';
110
+ $smallLaptop: 'only screen and (min-width:#{$breakpoint-md-start}) and (max-width:#{$breakpoint-md-end})';
111
+ $largeLaptop: 'only screen and (min-width:#{$breakpoint-lg-start}) and (max-width:#{$breakpoint-lg-end})';
112
+ $desktop: 'only screen and (min-width:#{$breakpoint-xl})';
113
113
  // inclusive - mobile and below: use mobile, huge and below: everything, no need for media query
114
- $tabletAndBelow: "only screen and (max-width:#{$breakpoint-sm-end})";
115
- $tabletAndAbove: "only screen and (min-width:#{$breakpoint-sm-start})";
116
- $smallLaptopAndBelow: "only screen and (max-width:#{$breakpoint-md-end})";
117
- $largeLaptopAndBelow: "only screen and (max-width:#{$breakpoint-lg-end})";
118
- $desktopAndAbove: "only screen and (min-width:#{$breakpoint-xl})";
119
- $largeLaptopAndAbove: "only screen and (min-width:#{$breakpoint-lg-start})";
114
+ $tabletAndBelow: 'only screen and (max-width:#{$breakpoint-sm-end})';
115
+ $tabletAndAbove: 'only screen and (min-width:#{$breakpoint-sm-start})';
116
+ $smallLaptopAndBelow: 'only screen and (max-width:#{$breakpoint-md-end})';
117
+ $largeLaptopAndBelow: 'only screen and (max-width:#{$breakpoint-lg-end})';
118
+ $desktopAndAbove: 'only screen and (min-width:#{$breakpoint-xl})';
119
+ $largeLaptopAndAbove: 'only screen and (min-width:#{$breakpoint-lg-start})';
120
120
  // combinations
121
- $laptop: "only screen and (min-width:#{$breakpoint-md-start}) and (max-width:#{$breakpoint-lg-end})";
121
+ $laptop: 'only screen and (min-width:#{$breakpoint-md-start}) and (max-width:#{$breakpoint-lg-end})';
122
122
  /* #endregion Media */
123
123
 
124
124
  /* #region Grid */
@@ -127,8 +127,8 @@ $grid-gap: 1rem;
127
127
  /* #endregion Grid */
128
128
 
129
129
  /* #region Fonts */
130
- $heading-font-family: "NHaasGroteskDSPro-75Bd", sans-serif;
131
- $heading-font-family-label: "NHaasGroteskDSPro-65Md", sans-serif;
130
+ $heading-font-family: 'NHaasGroteskDSPro-75Bd', sans-serif;
131
+ $heading-font-family-label: 'NHaasGroteskDSPro-65Md', sans-serif;
132
132
  $heading-font-size-1: 3.75rem;
133
133
  $heading-font-size-2: 2rem;
134
134
  $heading-font-size-3: 1.375rem;
@@ -149,7 +149,7 @@ $body-font-weight-strong: 500;
149
149
  $font-smoothing: antialiased;
150
150
  $heading-line-height: 1.1rem;
151
151
  $body-line-height: 1.5rem;
152
- .label{
152
+ .label {
153
153
  color: $black-900;
154
154
  }
155
155
  /* #endregion Fonts */
@@ -159,52 +159,51 @@ $border: 1px solid $light-400;
159
159
  $shape-border-radius: $spacing-1;
160
160
 
161
161
  $popover-shadow: 0 8px 24px -6px rgba(0, 0, 0, 0.16),
162
- 0px 0px 1px rgba(0, 0, 0, 0.4);
163
- $modal-shadow: 0px 32px 32px -8px rgba(0, 0, 0, 0.08), 0px 0px 32px -8px rgba(0, 0, 0, 0.12);
164
-
162
+ 0px 0px 1px rgba(0, 0, 0, 0.4);
163
+ $modal-shadow: 0px 32px 32px -8px rgba(0, 0, 0, 0.08),
164
+ 0px 0px 32px -8px rgba(0, 0, 0, 0.12);
165
165
 
166
166
  $focus-line: linear-gradient(
167
- 0deg,
168
- $primary-500 0,
169
- $primary-500 2px,
170
- $light-100 0
167
+ 0deg,
168
+ $primary-500 0,
169
+ $primary-500 2px,
170
+ $light-100 0
171
171
  );
172
172
  $focus-line-white: linear-gradient(
173
- 0deg,
174
- $primary-500 0,
175
- $primary-500 2px,
176
- $white 0
173
+ 0deg,
174
+ $primary-500 0,
175
+ $primary-500 2px,
176
+ $white 0
177
177
  );
178
178
  $error-focus-line: linear-gradient(
179
- 0deg,
180
- $negative-500 0,
181
- $negative-500 2px,
182
- $light-100 0
179
+ 0deg,
180
+ $negative-500 0,
181
+ $negative-500 2px,
182
+ $light-100 0
183
183
  );
184
184
  $error-focus-line-white: linear-gradient(
185
- 0deg,
186
- $negative-500 0,
187
- $negative-500 2px,
188
- $white 0
185
+ 0deg,
186
+ $negative-500 0,
187
+ $negative-500 2px,
188
+ $white 0
189
189
  );
190
190
 
191
-
192
191
  @mixin scrollbar {
193
- ::-webkit-scrollbar {
194
- width: 0.625rem;
195
- opacity: 0.7;
196
- background-color: transparent;
197
- }
198
-
199
- ::-webkit-scrollbar-thumb {
200
- border: 3px solid transparent;
201
- background-clip: padding-box;
202
- border-radius: 0.625rem;
203
- background-color: $light-500 !important;
204
- }
205
-
206
- ::-webkit-scrollbar-track {
207
- border-radius: 0.625rem;
208
- background-color: transparent;
209
- }
192
+ ::-webkit-scrollbar {
193
+ width: 0.625rem;
194
+ opacity: 0.7;
195
+ background-color: transparent;
196
+ }
197
+
198
+ ::-webkit-scrollbar-thumb {
199
+ border: 3px solid transparent;
200
+ background-clip: padding-box;
201
+ border-radius: 0.625rem;
202
+ background-color: $light-500 !important;
203
+ }
204
+
205
+ ::-webkit-scrollbar-track {
206
+ border-radius: 0.625rem;
207
+ background-color: transparent;
208
+ }
210
209
  }
@@ -1,126 +0,0 @@
1
- import Button from './Button.vue';
2
- import IconButton from './IconButton.vue';
3
- import ScrollButton from './ScrollButton.vue';
4
- declare const ButtonTypes: () => (import("vue").DefineComponent<{
5
- size: {
6
- type: import("vue").PropType<"md" | "sm" | "lg">;
7
- } & {
8
- default: string;
9
- };
10
- testId: {
11
- type: import("vue").PropType<string>;
12
- } & {
13
- default: string;
14
- };
15
- leftIconName: {
16
- type: import("vue").PropType<"search" | "link" | "filter" | "a" | "b" | "style" | "image" | "switch" | "a-2" | "ab-test" | "ab-test-2" | "a-circle" | "account-balance-wallet" | "account-circle" | "account-circle-outline" | "add" | "analytics" | "android" | "angle-down" | "angle-left" | "angle-right" | "angle-up" | "app-store" | "area-chart" | "arrow-back" | "arrow-downward" | "arrow-forward" | "arrow-left" | "arrow-right" | "arrow-sort-down" | "arrow-sort-up" | "arrow-upward" | "auto-awesome" | "auto-mode" | "hammer" | "autorenew" | "b-2" | "b-circle" | "banner" | "bidding" | "bidding-2" | "block" | "border-color" | "bug" | "bullhorn" | "bullseye-arrow" | "cached" | "calendar" | "calendar-today" | "cancel" | "chart-bar" | "chart-line" | "chart-mixed" | "check" | "check-bold" | "close" | "close-bold" | "computer-mouse" | "copy-to-clipboard" | "widgets-flat-squares" | "adjust" | "copy-to-clipboard-filled" | "cube" | "cube-background" | "marketing" | "create" | "creative" | "cross" | "crown-fill" | "cup" | "cup-a" | "cup-b" | "delete" | "diamond" | "dots" | "download" | "download-2" | "download-done" | "drag-indicator" | "ecpi" | "email" | "email-envelope" | "error" | "eye" | "favorite-border" | "filter-list" | "frame" | "fullscreen" | "fullscreen-exit" | "functions" | "gamepad-alt" | "games" | "gavel" | "gift" | "git-hub" | "globe-stand" | "google-play" | "group" | "hand-pointer" | "hands" | "heartbeat" | "help" | "help-outline" | "history" | "ios" | "image-not-supported" | "image-slash" | "import-export" | "import-export-2" | "importent" | "info" | "info-outline" | "insights" | "interstitial" | "ios-14" | "js" | "landscape" | "launch" | "levelplay" | "limit-circle" | "limit-octagon" | "loading-clean" | "lock" | "lock-open" | "login" | "logout" | "military-tech" | "mix" | "mix-2" | "mobile-landscape" | "mobile-portrait" | "money-check" | "more-horiz" | "more-vert" | "mouse" | "mouse-pointer" | "moving-up" | "notifications-none" | "offerwall" | "palyable" | "paper-plane-off" | "paper-plane" | "pause" | "pause-circle-filled" | "pause-circle-outline" | "phone-iphone" | "photo" | "photo-2" | "play-arrow" | "play-circle-filled-white" | "play-circle-outline" | "qrcode" | "quick-ab" | "quick-ab-2" | "react" | "redo" | "refresh" | "remove" | "replay" | "rewarded-video" | "rocket-launch" | "rotate" | "route" | "sack-dollar" | "schedule" | "search-bold" | "share" | "slack" | "sports-esports" | "star" | "star-fill" | "status-banner" | "status-interstitial" | "status-offerwall" | "status-rewarded-video" | "stop-circle-filled" | "stop-circle-outline" | "success" | "success-full" | "tablet-landscape" | "tablet-mac" | "tablet-portrait" | "texture" | "theme-dark" | "theme-light" | "timelapse" | "timeline" | "trending-down" | "trending-flat" | "trending-up" | "tune" | "two-tone-banner" | "two-tone-interstitial" | "two-tone-offerwall" | "two-tone-rewarded-video" | "undo" | "unfold-less" | "unfold-more" | "vertical-align-top" | "vertical-align-top-2" | "vibration" | "video-round" | "view-carousel" | "visibility" | "visibility-off" | "visibility-off-strok" | "visibility-strok" | "volume-off" | "volume-up" | "warning" | "warning-2" | "web-app" | "widgets" | "widgets-fill" | "widgetsz" | "wifi-protected-setup" | "native-ad" | "status-native-ad" | "two-tone-native-ad">;
17
- } & {
18
- default: any;
19
- };
20
- rightIconName: {
21
- type: import("vue").PropType<"search" | "link" | "filter" | "a" | "b" | "style" | "image" | "switch" | "a-2" | "ab-test" | "ab-test-2" | "a-circle" | "account-balance-wallet" | "account-circle" | "account-circle-outline" | "add" | "analytics" | "android" | "angle-down" | "angle-left" | "angle-right" | "angle-up" | "app-store" | "area-chart" | "arrow-back" | "arrow-downward" | "arrow-forward" | "arrow-left" | "arrow-right" | "arrow-sort-down" | "arrow-sort-up" | "arrow-upward" | "auto-awesome" | "auto-mode" | "hammer" | "autorenew" | "b-2" | "b-circle" | "banner" | "bidding" | "bidding-2" | "block" | "border-color" | "bug" | "bullhorn" | "bullseye-arrow" | "cached" | "calendar" | "calendar-today" | "cancel" | "chart-bar" | "chart-line" | "chart-mixed" | "check" | "check-bold" | "close" | "close-bold" | "computer-mouse" | "copy-to-clipboard" | "widgets-flat-squares" | "adjust" | "copy-to-clipboard-filled" | "cube" | "cube-background" | "marketing" | "create" | "creative" | "cross" | "crown-fill" | "cup" | "cup-a" | "cup-b" | "delete" | "diamond" | "dots" | "download" | "download-2" | "download-done" | "drag-indicator" | "ecpi" | "email" | "email-envelope" | "error" | "eye" | "favorite-border" | "filter-list" | "frame" | "fullscreen" | "fullscreen-exit" | "functions" | "gamepad-alt" | "games" | "gavel" | "gift" | "git-hub" | "globe-stand" | "google-play" | "group" | "hand-pointer" | "hands" | "heartbeat" | "help" | "help-outline" | "history" | "ios" | "image-not-supported" | "image-slash" | "import-export" | "import-export-2" | "importent" | "info" | "info-outline" | "insights" | "interstitial" | "ios-14" | "js" | "landscape" | "launch" | "levelplay" | "limit-circle" | "limit-octagon" | "loading-clean" | "lock" | "lock-open" | "login" | "logout" | "military-tech" | "mix" | "mix-2" | "mobile-landscape" | "mobile-portrait" | "money-check" | "more-horiz" | "more-vert" | "mouse" | "mouse-pointer" | "moving-up" | "notifications-none" | "offerwall" | "palyable" | "paper-plane-off" | "paper-plane" | "pause" | "pause-circle-filled" | "pause-circle-outline" | "phone-iphone" | "photo" | "photo-2" | "play-arrow" | "play-circle-filled-white" | "play-circle-outline" | "qrcode" | "quick-ab" | "quick-ab-2" | "react" | "redo" | "refresh" | "remove" | "replay" | "rewarded-video" | "rocket-launch" | "rotate" | "route" | "sack-dollar" | "schedule" | "search-bold" | "share" | "slack" | "sports-esports" | "star" | "star-fill" | "status-banner" | "status-interstitial" | "status-offerwall" | "status-rewarded-video" | "stop-circle-filled" | "stop-circle-outline" | "success" | "success-full" | "tablet-landscape" | "tablet-mac" | "tablet-portrait" | "texture" | "theme-dark" | "theme-light" | "timelapse" | "timeline" | "trending-down" | "trending-flat" | "trending-up" | "tune" | "two-tone-banner" | "two-tone-interstitial" | "two-tone-offerwall" | "two-tone-rewarded-video" | "undo" | "unfold-less" | "unfold-more" | "vertical-align-top" | "vertical-align-top-2" | "vibration" | "video-round" | "view-carousel" | "visibility" | "visibility-off" | "visibility-off-strok" | "visibility-strok" | "volume-off" | "volume-up" | "warning" | "warning-2" | "web-app" | "widgets" | "widgets-fill" | "widgetsz" | "wifi-protected-setup" | "native-ad" | "status-native-ad" | "two-tone-native-ad">;
22
- } & {
23
- default: any;
24
- };
25
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
26
- size: {
27
- type: import("vue").PropType<"md" | "sm" | "lg">;
28
- } & {
29
- default: string;
30
- };
31
- testId: {
32
- type: import("vue").PropType<string>;
33
- } & {
34
- default: string;
35
- };
36
- leftIconName: {
37
- type: import("vue").PropType<"search" | "link" | "filter" | "a" | "b" | "style" | "image" | "switch" | "a-2" | "ab-test" | "ab-test-2" | "a-circle" | "account-balance-wallet" | "account-circle" | "account-circle-outline" | "add" | "analytics" | "android" | "angle-down" | "angle-left" | "angle-right" | "angle-up" | "app-store" | "area-chart" | "arrow-back" | "arrow-downward" | "arrow-forward" | "arrow-left" | "arrow-right" | "arrow-sort-down" | "arrow-sort-up" | "arrow-upward" | "auto-awesome" | "auto-mode" | "hammer" | "autorenew" | "b-2" | "b-circle" | "banner" | "bidding" | "bidding-2" | "block" | "border-color" | "bug" | "bullhorn" | "bullseye-arrow" | "cached" | "calendar" | "calendar-today" | "cancel" | "chart-bar" | "chart-line" | "chart-mixed" | "check" | "check-bold" | "close" | "close-bold" | "computer-mouse" | "copy-to-clipboard" | "widgets-flat-squares" | "adjust" | "copy-to-clipboard-filled" | "cube" | "cube-background" | "marketing" | "create" | "creative" | "cross" | "crown-fill" | "cup" | "cup-a" | "cup-b" | "delete" | "diamond" | "dots" | "download" | "download-2" | "download-done" | "drag-indicator" | "ecpi" | "email" | "email-envelope" | "error" | "eye" | "favorite-border" | "filter-list" | "frame" | "fullscreen" | "fullscreen-exit" | "functions" | "gamepad-alt" | "games" | "gavel" | "gift" | "git-hub" | "globe-stand" | "google-play" | "group" | "hand-pointer" | "hands" | "heartbeat" | "help" | "help-outline" | "history" | "ios" | "image-not-supported" | "image-slash" | "import-export" | "import-export-2" | "importent" | "info" | "info-outline" | "insights" | "interstitial" | "ios-14" | "js" | "landscape" | "launch" | "levelplay" | "limit-circle" | "limit-octagon" | "loading-clean" | "lock" | "lock-open" | "login" | "logout" | "military-tech" | "mix" | "mix-2" | "mobile-landscape" | "mobile-portrait" | "money-check" | "more-horiz" | "more-vert" | "mouse" | "mouse-pointer" | "moving-up" | "notifications-none" | "offerwall" | "palyable" | "paper-plane-off" | "paper-plane" | "pause" | "pause-circle-filled" | "pause-circle-outline" | "phone-iphone" | "photo" | "photo-2" | "play-arrow" | "play-circle-filled-white" | "play-circle-outline" | "qrcode" | "quick-ab" | "quick-ab-2" | "react" | "redo" | "refresh" | "remove" | "replay" | "rewarded-video" | "rocket-launch" | "rotate" | "route" | "sack-dollar" | "schedule" | "search-bold" | "share" | "slack" | "sports-esports" | "star" | "star-fill" | "status-banner" | "status-interstitial" | "status-offerwall" | "status-rewarded-video" | "stop-circle-filled" | "stop-circle-outline" | "success" | "success-full" | "tablet-landscape" | "tablet-mac" | "tablet-portrait" | "texture" | "theme-dark" | "theme-light" | "timelapse" | "timeline" | "trending-down" | "trending-flat" | "trending-up" | "tune" | "two-tone-banner" | "two-tone-interstitial" | "two-tone-offerwall" | "two-tone-rewarded-video" | "undo" | "unfold-less" | "unfold-more" | "vertical-align-top" | "vertical-align-top-2" | "vibration" | "video-round" | "view-carousel" | "visibility" | "visibility-off" | "visibility-off-strok" | "visibility-strok" | "volume-off" | "volume-up" | "warning" | "warning-2" | "web-app" | "widgets" | "widgets-fill" | "widgetsz" | "wifi-protected-setup" | "native-ad" | "status-native-ad" | "two-tone-native-ad">;
38
- } & {
39
- default: any;
40
- };
41
- rightIconName: {
42
- type: import("vue").PropType<"search" | "link" | "filter" | "a" | "b" | "style" | "image" | "switch" | "a-2" | "ab-test" | "ab-test-2" | "a-circle" | "account-balance-wallet" | "account-circle" | "account-circle-outline" | "add" | "analytics" | "android" | "angle-down" | "angle-left" | "angle-right" | "angle-up" | "app-store" | "area-chart" | "arrow-back" | "arrow-downward" | "arrow-forward" | "arrow-left" | "arrow-right" | "arrow-sort-down" | "arrow-sort-up" | "arrow-upward" | "auto-awesome" | "auto-mode" | "hammer" | "autorenew" | "b-2" | "b-circle" | "banner" | "bidding" | "bidding-2" | "block" | "border-color" | "bug" | "bullhorn" | "bullseye-arrow" | "cached" | "calendar" | "calendar-today" | "cancel" | "chart-bar" | "chart-line" | "chart-mixed" | "check" | "check-bold" | "close" | "close-bold" | "computer-mouse" | "copy-to-clipboard" | "widgets-flat-squares" | "adjust" | "copy-to-clipboard-filled" | "cube" | "cube-background" | "marketing" | "create" | "creative" | "cross" | "crown-fill" | "cup" | "cup-a" | "cup-b" | "delete" | "diamond" | "dots" | "download" | "download-2" | "download-done" | "drag-indicator" | "ecpi" | "email" | "email-envelope" | "error" | "eye" | "favorite-border" | "filter-list" | "frame" | "fullscreen" | "fullscreen-exit" | "functions" | "gamepad-alt" | "games" | "gavel" | "gift" | "git-hub" | "globe-stand" | "google-play" | "group" | "hand-pointer" | "hands" | "heartbeat" | "help" | "help-outline" | "history" | "ios" | "image-not-supported" | "image-slash" | "import-export" | "import-export-2" | "importent" | "info" | "info-outline" | "insights" | "interstitial" | "ios-14" | "js" | "landscape" | "launch" | "levelplay" | "limit-circle" | "limit-octagon" | "loading-clean" | "lock" | "lock-open" | "login" | "logout" | "military-tech" | "mix" | "mix-2" | "mobile-landscape" | "mobile-portrait" | "money-check" | "more-horiz" | "more-vert" | "mouse" | "mouse-pointer" | "moving-up" | "notifications-none" | "offerwall" | "palyable" | "paper-plane-off" | "paper-plane" | "pause" | "pause-circle-filled" | "pause-circle-outline" | "phone-iphone" | "photo" | "photo-2" | "play-arrow" | "play-circle-filled-white" | "play-circle-outline" | "qrcode" | "quick-ab" | "quick-ab-2" | "react" | "redo" | "refresh" | "remove" | "replay" | "rewarded-video" | "rocket-launch" | "rotate" | "route" | "sack-dollar" | "schedule" | "search-bold" | "share" | "slack" | "sports-esports" | "star" | "star-fill" | "status-banner" | "status-interstitial" | "status-offerwall" | "status-rewarded-video" | "stop-circle-filled" | "stop-circle-outline" | "success" | "success-full" | "tablet-landscape" | "tablet-mac" | "tablet-portrait" | "texture" | "theme-dark" | "theme-light" | "timelapse" | "timeline" | "trending-down" | "trending-flat" | "trending-up" | "tune" | "two-tone-banner" | "two-tone-interstitial" | "two-tone-offerwall" | "two-tone-rewarded-video" | "undo" | "unfold-less" | "unfold-more" | "vertical-align-top" | "vertical-align-top-2" | "vibration" | "video-round" | "view-carousel" | "visibility" | "visibility-off" | "visibility-off-strok" | "visibility-strok" | "volume-off" | "volume-up" | "warning" | "warning-2" | "web-app" | "widgets" | "widgets-fill" | "widgetsz" | "wifi-protected-setup" | "native-ad" | "status-native-ad" | "two-tone-native-ad">;
43
- } & {
44
- default: any;
45
- };
46
- }>>, {
47
- size: "md" | "sm" | "lg";
48
- testId: string;
49
- leftIconName: "search" | "link" | "filter" | "a" | "b" | "style" | "image" | "switch" | "a-2" | "ab-test" | "ab-test-2" | "a-circle" | "account-balance-wallet" | "account-circle" | "account-circle-outline" | "add" | "analytics" | "android" | "angle-down" | "angle-left" | "angle-right" | "angle-up" | "app-store" | "area-chart" | "arrow-back" | "arrow-downward" | "arrow-forward" | "arrow-left" | "arrow-right" | "arrow-sort-down" | "arrow-sort-up" | "arrow-upward" | "auto-awesome" | "auto-mode" | "hammer" | "autorenew" | "b-2" | "b-circle" | "banner" | "bidding" | "bidding-2" | "block" | "border-color" | "bug" | "bullhorn" | "bullseye-arrow" | "cached" | "calendar" | "calendar-today" | "cancel" | "chart-bar" | "chart-line" | "chart-mixed" | "check" | "check-bold" | "close" | "close-bold" | "computer-mouse" | "copy-to-clipboard" | "widgets-flat-squares" | "adjust" | "copy-to-clipboard-filled" | "cube" | "cube-background" | "marketing" | "create" | "creative" | "cross" | "crown-fill" | "cup" | "cup-a" | "cup-b" | "delete" | "diamond" | "dots" | "download" | "download-2" | "download-done" | "drag-indicator" | "ecpi" | "email" | "email-envelope" | "error" | "eye" | "favorite-border" | "filter-list" | "frame" | "fullscreen" | "fullscreen-exit" | "functions" | "gamepad-alt" | "games" | "gavel" | "gift" | "git-hub" | "globe-stand" | "google-play" | "group" | "hand-pointer" | "hands" | "heartbeat" | "help" | "help-outline" | "history" | "ios" | "image-not-supported" | "image-slash" | "import-export" | "import-export-2" | "importent" | "info" | "info-outline" | "insights" | "interstitial" | "ios-14" | "js" | "landscape" | "launch" | "levelplay" | "limit-circle" | "limit-octagon" | "loading-clean" | "lock" | "lock-open" | "login" | "logout" | "military-tech" | "mix" | "mix-2" | "mobile-landscape" | "mobile-portrait" | "money-check" | "more-horiz" | "more-vert" | "mouse" | "mouse-pointer" | "moving-up" | "notifications-none" | "offerwall" | "palyable" | "paper-plane-off" | "paper-plane" | "pause" | "pause-circle-filled" | "pause-circle-outline" | "phone-iphone" | "photo" | "photo-2" | "play-arrow" | "play-circle-filled-white" | "play-circle-outline" | "qrcode" | "quick-ab" | "quick-ab-2" | "react" | "redo" | "refresh" | "remove" | "replay" | "rewarded-video" | "rocket-launch" | "rotate" | "route" | "sack-dollar" | "schedule" | "search-bold" | "share" | "slack" | "sports-esports" | "star" | "star-fill" | "status-banner" | "status-interstitial" | "status-offerwall" | "status-rewarded-video" | "stop-circle-filled" | "stop-circle-outline" | "success" | "success-full" | "tablet-landscape" | "tablet-mac" | "tablet-portrait" | "texture" | "theme-dark" | "theme-light" | "timelapse" | "timeline" | "trending-down" | "trending-flat" | "trending-up" | "tune" | "two-tone-banner" | "two-tone-interstitial" | "two-tone-offerwall" | "two-tone-rewarded-video" | "undo" | "unfold-less" | "unfold-more" | "vertical-align-top" | "vertical-align-top-2" | "vibration" | "video-round" | "view-carousel" | "visibility" | "visibility-off" | "visibility-off-strok" | "visibility-strok" | "volume-off" | "volume-up" | "warning" | "warning-2" | "web-app" | "widgets" | "widgets-fill" | "widgetsz" | "wifi-protected-setup" | "native-ad" | "status-native-ad" | "two-tone-native-ad";
50
- rightIconName: "search" | "link" | "filter" | "a" | "b" | "style" | "image" | "switch" | "a-2" | "ab-test" | "ab-test-2" | "a-circle" | "account-balance-wallet" | "account-circle" | "account-circle-outline" | "add" | "analytics" | "android" | "angle-down" | "angle-left" | "angle-right" | "angle-up" | "app-store" | "area-chart" | "arrow-back" | "arrow-downward" | "arrow-forward" | "arrow-left" | "arrow-right" | "arrow-sort-down" | "arrow-sort-up" | "arrow-upward" | "auto-awesome" | "auto-mode" | "hammer" | "autorenew" | "b-2" | "b-circle" | "banner" | "bidding" | "bidding-2" | "block" | "border-color" | "bug" | "bullhorn" | "bullseye-arrow" | "cached" | "calendar" | "calendar-today" | "cancel" | "chart-bar" | "chart-line" | "chart-mixed" | "check" | "check-bold" | "close" | "close-bold" | "computer-mouse" | "copy-to-clipboard" | "widgets-flat-squares" | "adjust" | "copy-to-clipboard-filled" | "cube" | "cube-background" | "marketing" | "create" | "creative" | "cross" | "crown-fill" | "cup" | "cup-a" | "cup-b" | "delete" | "diamond" | "dots" | "download" | "download-2" | "download-done" | "drag-indicator" | "ecpi" | "email" | "email-envelope" | "error" | "eye" | "favorite-border" | "filter-list" | "frame" | "fullscreen" | "fullscreen-exit" | "functions" | "gamepad-alt" | "games" | "gavel" | "gift" | "git-hub" | "globe-stand" | "google-play" | "group" | "hand-pointer" | "hands" | "heartbeat" | "help" | "help-outline" | "history" | "ios" | "image-not-supported" | "image-slash" | "import-export" | "import-export-2" | "importent" | "info" | "info-outline" | "insights" | "interstitial" | "ios-14" | "js" | "landscape" | "launch" | "levelplay" | "limit-circle" | "limit-octagon" | "loading-clean" | "lock" | "lock-open" | "login" | "logout" | "military-tech" | "mix" | "mix-2" | "mobile-landscape" | "mobile-portrait" | "money-check" | "more-horiz" | "more-vert" | "mouse" | "mouse-pointer" | "moving-up" | "notifications-none" | "offerwall" | "palyable" | "paper-plane-off" | "paper-plane" | "pause" | "pause-circle-filled" | "pause-circle-outline" | "phone-iphone" | "photo" | "photo-2" | "play-arrow" | "play-circle-filled-white" | "play-circle-outline" | "qrcode" | "quick-ab" | "quick-ab-2" | "react" | "redo" | "refresh" | "remove" | "replay" | "rewarded-video" | "rocket-launch" | "rotate" | "route" | "sack-dollar" | "schedule" | "search-bold" | "share" | "slack" | "sports-esports" | "star" | "star-fill" | "status-banner" | "status-interstitial" | "status-offerwall" | "status-rewarded-video" | "stop-circle-filled" | "stop-circle-outline" | "success" | "success-full" | "tablet-landscape" | "tablet-mac" | "tablet-portrait" | "texture" | "theme-dark" | "theme-light" | "timelapse" | "timeline" | "trending-down" | "trending-flat" | "trending-up" | "tune" | "two-tone-banner" | "two-tone-interstitial" | "two-tone-offerwall" | "two-tone-rewarded-video" | "undo" | "unfold-less" | "unfold-more" | "vertical-align-top" | "vertical-align-top-2" | "vibration" | "video-round" | "view-carousel" | "visibility" | "visibility-off" | "visibility-off-strok" | "visibility-strok" | "volume-off" | "volume-up" | "warning" | "warning-2" | "web-app" | "widgets" | "widgets-fill" | "widgetsz" | "wifi-protected-setup" | "native-ad" | "status-native-ad" | "two-tone-native-ad";
51
- }> | import("vue").DefineComponent<{
52
- size: {
53
- type: import("vue").PropType<"md" | "sm" | "lg">;
54
- } & {
55
- default: string;
56
- };
57
- variant: {
58
- type: import("vue").PropType<"link" | "solid" | "border" | "borderless" | "ghost" | "colorized">;
59
- } & {
60
- default: string;
61
- };
62
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
63
- size: {
64
- type: import("vue").PropType<"md" | "sm" | "lg">;
65
- } & {
66
- default: string;
67
- };
68
- variant: {
69
- type: import("vue").PropType<"link" | "solid" | "border" | "borderless" | "ghost" | "colorized">;
70
- } & {
71
- default: string;
72
- };
73
- }>>, {
74
- size: "md" | "sm" | "lg";
75
- variant: "link" | "solid" | "border" | "borderless" | "ghost" | "colorized";
76
- }> | import("vue").DefineComponent<{
77
- show: {
78
- type: import("vue").PropType<boolean>;
79
- } & {
80
- default: boolean;
81
- };
82
- iconName: {
83
- type: import("vue").PropType<string>;
84
- } & {
85
- default: string;
86
- };
87
- tooltipText: {
88
- type: import("vue").PropType<string>;
89
- } & {
90
- default: string;
91
- };
92
- position: {
93
- type: import("vue").PropType<"bottom-right" | "bottom-left" | "top-right" | "top-left">;
94
- } & {
95
- default: string;
96
- };
97
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "scrolled"[], "scrolled", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
98
- show: {
99
- type: import("vue").PropType<boolean>;
100
- } & {
101
- default: boolean;
102
- };
103
- iconName: {
104
- type: import("vue").PropType<string>;
105
- } & {
106
- default: string;
107
- };
108
- tooltipText: {
109
- type: import("vue").PropType<string>;
110
- } & {
111
- default: string;
112
- };
113
- position: {
114
- type: import("vue").PropType<"bottom-right" | "bottom-left" | "top-right" | "top-left">;
115
- } & {
116
- default: string;
117
- };
118
- }>> & {
119
- onScrolled?: (...args: any[]) => any;
120
- }, {
121
- show: boolean;
122
- iconName: string;
123
- tooltipText: string;
124
- position: "bottom-right" | "bottom-left" | "top-right" | "top-left";
125
- }>)[];
126
- export { Button, IconButton, ScrollButton, ButtonTypes };
@@ -1,2 +0,0 @@
1
- declare const _default: any;
2
- export default _default;
@@ -1,26 +0,0 @@
1
- import { openBlock, createElementBlock, createElementVNode } from 'vue';
2
- import _export_sfc from '../../../_virtual/plugin-vue_export-helper.vue.js';
3
-
4
- ////import "../../Hammer.vue_vue_type_style_index_0_scoped_true_lang.css";
5
- const _sfc_main = {};
6
-
7
- const _hoisted_1 = {
8
- viewBox: "0 0 17.249 17",
9
- xmlns: "http://www.w3.org/2000/svg",
10
- fill: "currentColor"
11
- };
12
- const _hoisted_2 = /*#__PURE__*/createElementVNode("path", {
13
- d: "M6.496 1.66c.168-.168.36-.31.57-.423L8.842.29a2.443 2.443 0 0 1 2.875.422l1.118 1.115c.76.758.933 1.922.425 2.866l-.871 1.617 4.111 4.098c1 .997 1 2.612 0 3.609-1 .997-2.621.997-3.62 0L8.766 9.918l-1.623.868a2.443 2.443 0 0 1-2.875-.422L3.15 9.248a2.423 2.423 0 0 1-.424-2.865l.952-1.768a2.43 2.43 0 0 1 .424-.57L6.496 1.66zM4.09 7.317a.808.808 0 0 0 .209.787l1.119 1.115a.814.814 0 0 0 .958.14l1.191-.636-2.77-2.762-.64 1.187a.808.808 0 0 0-.067.17zm7.805-3.56a.808.808 0 0 0-.21-.786l-1.118-1.115a.814.814 0 0 0-.958-.14l-1.191.636 2.77 2.762.64-1.188a.81.81 0 0 0 .067-.168zm-4.22 8.993H2.558v1.74l5.117-.04v-1.7zM0 15.3V17h10.199v-1.7H0zM5.786 4.657l1.323-1.319 3.09 3.08-1.324 1.319-3.09-3.08zm4.238 4.225 4.003 3.99a.938.938 0 0 0 1.323 0 .93.93 0 0 0 0-1.32l-4.002-3.99-1.324 1.32z",
14
- fill: "currentColor",
15
- "fill-rule": "evenodd"
16
- }, null, -1);
17
- const _hoisted_3 = [
18
- _hoisted_2
19
- ];
20
-
21
- function _sfc_render(_ctx, _cache) {
22
- return (openBlock(), createElementBlock("svg", _hoisted_1, _hoisted_3))
23
- }
24
- var Hammer = /*#__PURE__*/_export_sfc(_sfc_main, [['render',_sfc_render]]);
25
-
26
- export { Hammer as default };
File without changes
File without changes