ariadne_view_components 0.0.55-x86_64-darwin → 0.0.58-x86_64-darwin
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/app/assets/builds/ariadne_view_components.css +16 -13
- data/app/assets/javascripts/ariadne_view_components.js +8 -0
- data/app/assets/javascripts/ariadne_view_components.js.map +1 -0
- data/app/assets/javascripts/components/ariadne/accumulator_controller/accumulator_controller.d.ts +22 -0
- data/app/assets/javascripts/components/ariadne/ariadne-form.d.ts +22 -0
- data/app/assets/javascripts/components/ariadne/ariadne.d.ts +2 -0
- data/app/assets/javascripts/components/ariadne/clipboard_copy_component/clipboard-copy-component.d.ts +4 -0
- data/app/assets/javascripts/components/ariadne/dropdown/menu_component.d.ts +1 -0
- data/app/assets/javascripts/components/ariadne/events_controller/events_controller.d.ts +4 -0
- data/app/assets/javascripts/components/ariadne/options_controller/options_controller.d.ts +39 -0
- data/app/assets/javascripts/components/ariadne/outlet_manager_controller/outlet_manager_controller.d.ts +42 -0
- data/app/assets/javascripts/components/ariadne/slideover_component/slideover-component.d.ts +9 -0
- data/app/assets/javascripts/components/ariadne/string_match_controller/string_match_controller.d.ts +27 -0
- data/app/assets/javascripts/components/ariadne/synced_boolean_attributes_controller/synced_boolean_attributes_controller.d.ts +48 -0
- data/app/assets/javascripts/components/ariadne/tab_container_component/tab-container-component.d.ts +1 -0
- data/app/assets/javascripts/components/ariadne/tab_nav_component/tab-nav-component.d.ts +9 -0
- data/app/assets/javascripts/components/ariadne/time_ago_component/time-ago-component.d.ts +1 -0
- data/app/assets/javascripts/components/ariadne/toggleable_controller/toggleable_controller.d.ts +34 -0
- data/app/assets/javascripts/components/ariadne/tooltip_component/tooltip-component.d.ts +24 -0
- data/app/components/ariadne/ariadne.js +0 -2
- data/app/components/ariadne/ariadne.ts +0 -2
- data/app/components/ariadne/options_controller/options_controller.js +6 -3
- data/app/components/ariadne/options_controller/options_controller.ts +9 -4
- data/app/components/ariadne/outlet_manager_controller/outlet_manager_controller.js +1 -1
- data/app/components/ariadne/outlet_manager_controller/outlet_manager_controller.ts +1 -1
- data/lib/ariadne/view_components/version.rb +1 -1
- data/static/audited_at.json +0 -2
- data/static/constants.json +0 -11
- data/static/statuses.json +0 -2
- metadata +21 -10
- data/app/components/ariadne/comment_component/comment_component.html.erb +0 -37
- data/app/components/ariadne/comment_component.rb +0 -71
- data/app/components/ariadne/rich_text_area_component/rich-text-area-component.d.ts +0 -6
- data/app/components/ariadne/rich_text_area_component/rich-text-area-component.js +0 -38
- data/app/components/ariadne/rich_text_area_component/rich-text-area-component.ts +0 -47
- data/app/components/ariadne/rich_text_area_component/rich_text_area_component.html.erb +0 -6
- data/app/components/ariadne/rich_text_area_component.rb +0 -35
data/app/assets/javascripts/components/ariadne/accumulator_controller/accumulator_controller.d.ts
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
import { Controller } from '@hotwired/stimulus';
|
2
|
+
export default class AccumulatorController extends Controller {
|
3
|
+
static targets: string[];
|
4
|
+
static values: {
|
5
|
+
syncAttrs: {
|
6
|
+
type: ArrayConstructor;
|
7
|
+
default: string[];
|
8
|
+
};
|
9
|
+
sumAttr: {
|
10
|
+
type: string;
|
11
|
+
default: string;
|
12
|
+
};
|
13
|
+
};
|
14
|
+
sumTargets: Array<HTMLElement>;
|
15
|
+
accumulatorTarget?: HTMLElement;
|
16
|
+
syncAttrsValue: Array<string>;
|
17
|
+
sumAttrValue: string;
|
18
|
+
connect(): void;
|
19
|
+
accumulate(): void;
|
20
|
+
setAttributesTo(sum: number): void;
|
21
|
+
get accumulator(): Element;
|
22
|
+
}
|
@@ -0,0 +1,22 @@
|
|
1
|
+
import { Controller } from '@hotwired/stimulus';
|
2
|
+
import type { TemplateResult } from 'lit-html';
|
3
|
+
type HTMLFormField = HTMLInputElement | HTMLSelectElement | HTMLTextAreaElement;
|
4
|
+
export default class AriadneFormWith extends Controller {
|
5
|
+
static targets: string[];
|
6
|
+
readonly formFieldTargets: [HTMLFormField];
|
7
|
+
connect(): void;
|
8
|
+
disconnect(): void;
|
9
|
+
onBlur: (event: Event) => void;
|
10
|
+
onSubmit: (event: Event) => void;
|
11
|
+
validateForm(): boolean;
|
12
|
+
validateField(field: HTMLFormField): boolean;
|
13
|
+
shouldValidateField(field: HTMLFormField): boolean;
|
14
|
+
refreshErrorForInvalidField(field: HTMLFormField, isValid: boolean): void;
|
15
|
+
removeExistingErrorMessage(field: HTMLFormField): void;
|
16
|
+
showErrorForInvalidField(field: HTMLFormField): void;
|
17
|
+
buildFieldErrorHtml(field: HTMLFormField): string;
|
18
|
+
get formFields(): HTMLFormField[];
|
19
|
+
get firstInvalidField(): HTMLFormField | undefined;
|
20
|
+
getRenderString: (data: TemplateResult) => string;
|
21
|
+
}
|
22
|
+
export {};
|
@@ -0,0 +1 @@
|
|
1
|
+
import '@github/details-menu-element';
|
@@ -0,0 +1,39 @@
|
|
1
|
+
import { TOutletChangeData } from '../outlet_manager_controller/outlet_manager_controller';
|
2
|
+
import SyncedBooleanAttributesController from '../synced_boolean_attributes_controller/synced_boolean_attributes_controller';
|
3
|
+
type TOptionKey = string | number;
|
4
|
+
type TActiveOptions = {
|
5
|
+
[k: TOptionKey]: boolean;
|
6
|
+
};
|
7
|
+
export interface OptionsOutlet extends SyncedBooleanAttributesController<TActiveOptions> {
|
8
|
+
select: (e: Event, updateTo?: TOutletChangeData<TActiveOptions>) => void;
|
9
|
+
}
|
10
|
+
export default class OptionsController extends SyncedBooleanAttributesController<TActiveOptions> implements OptionsOutlet {
|
11
|
+
#private;
|
12
|
+
static outlets: string[];
|
13
|
+
static targets: string[];
|
14
|
+
static values: {
|
15
|
+
activeOptions: ObjectConstructor;
|
16
|
+
isMulti: {
|
17
|
+
type: BooleanConstructor;
|
18
|
+
default: boolean;
|
19
|
+
};
|
20
|
+
toggleable: {
|
21
|
+
type: BooleanConstructor;
|
22
|
+
default: boolean;
|
23
|
+
};
|
24
|
+
syncedAttrs: ArrayConstructor;
|
25
|
+
antiAttrs: ArrayConstructor;
|
26
|
+
protectAttrs: BooleanConstructor;
|
27
|
+
outletEvents: ArrayConstructor;
|
28
|
+
};
|
29
|
+
readonly optionTargets: Array<Element>;
|
30
|
+
activeOptionsValue: TActiveOptions;
|
31
|
+
readonly isMultiValue: boolean;
|
32
|
+
readonly toggleableValue: boolean;
|
33
|
+
select(event: Event, updateTo?: TOutletChangeData<TActiveOptions>): void;
|
34
|
+
optionTargetConnected(element: Element): void;
|
35
|
+
getValueForElement(element: Element): boolean;
|
36
|
+
getState(): TActiveOptions;
|
37
|
+
outletUpdate: (event: Event, updateTo?: TOutletChangeData<TActiveOptions>) => void;
|
38
|
+
}
|
39
|
+
export {};
|
@@ -0,0 +1,42 @@
|
|
1
|
+
import { Controller } from '@hotwired/stimulus';
|
2
|
+
type TOutletEventLookup = boolean | {
|
3
|
+
[k: string]: TOutletEventLookup;
|
4
|
+
};
|
5
|
+
export type TOutletChangeData<T> = {
|
6
|
+
eventKey?: string;
|
7
|
+
data?: T;
|
8
|
+
} | undefined;
|
9
|
+
export default class OutletManagerController<T> extends Controller {
|
10
|
+
#private;
|
11
|
+
static values: {
|
12
|
+
outletEvents: ArrayConstructor;
|
13
|
+
};
|
14
|
+
readonly outletEventsValue: Array<string>;
|
15
|
+
readonly hasOutletEventsValue: boolean;
|
16
|
+
static outlets: string[];
|
17
|
+
readonly toggleableOutlets: Array<OutletManagerController<T>>;
|
18
|
+
readonly hasToggleableOutlet: boolean;
|
19
|
+
readonly optionsOutlets: Array<OutletManagerController<T>>;
|
20
|
+
readonly hasOptionsOutlet: boolean;
|
21
|
+
readonly stringMatchOutlets: Array<OutletManagerController<T>>;
|
22
|
+
readonly hasStringMatchOutlet: boolean;
|
23
|
+
outletEventsLookup: TOutletEventLookup | null;
|
24
|
+
static domEvents: {
|
25
|
+
[k: string]: boolean;
|
26
|
+
};
|
27
|
+
eventRecords: Map<Event, boolean>;
|
28
|
+
getOutlets(): Array<OutletManagerController<T>> | null | void;
|
29
|
+
outletUpdate(event: Event, data: TOutletChangeData<T>): void;
|
30
|
+
getState(): T;
|
31
|
+
connect(): void;
|
32
|
+
syncOutlets(): void;
|
33
|
+
sendToOutlets(event: Event, updateTo?: TOutletChangeData<T>): void;
|
34
|
+
isListeningForOutletEvent(eventTypes: string): boolean;
|
35
|
+
isDOMEventName(eventName: string): boolean;
|
36
|
+
getEventKey(event: Event): string;
|
37
|
+
hasHeardEvent(event: Event): boolean;
|
38
|
+
get event_key_prefix(): string;
|
39
|
+
get event_key_postfix(): string;
|
40
|
+
get outletEvents(): TOutletEventLookup;
|
41
|
+
}
|
42
|
+
export {};
|
@@ -0,0 +1,9 @@
|
|
1
|
+
import { Controller } from '@hotwired/stimulus';
|
2
|
+
export default class SlideoverComponent extends Controller {
|
3
|
+
static targets: string[];
|
4
|
+
readonly expandableTarget: HTMLDivElement;
|
5
|
+
readonly expandWrapperTarget: HTMLDivElement;
|
6
|
+
readonly slidePanelTargets: [HTMLDivElement];
|
7
|
+
readonly buttonWrapperTarget: HTMLDivElement;
|
8
|
+
toggle(): void;
|
9
|
+
}
|
data/app/assets/javascripts/components/ariadne/string_match_controller/string_match_controller.d.ts
ADDED
@@ -0,0 +1,27 @@
|
|
1
|
+
import { TOutletChangeData } from '../outlet_manager_controller/outlet_manager_controller';
|
2
|
+
import SyncedBooleanAttributesController from '../synced_boolean_attributes_controller/synced_boolean_attributes_controller';
|
3
|
+
export interface StringMatchOutlet extends SyncedBooleanAttributesController<string> {
|
4
|
+
change: (event: Event, updateTo?: TOutletChangeData<string>) => void;
|
5
|
+
}
|
6
|
+
export default class StringMatchController extends SyncedBooleanAttributesController<string> implements StringMatchOutlet {
|
7
|
+
#private;
|
8
|
+
static outlets: string[];
|
9
|
+
static targets: string[];
|
10
|
+
static values: {
|
11
|
+
keyword: StringConstructor;
|
12
|
+
syncedAttrs: ArrayConstructor;
|
13
|
+
antiAttrs: ArrayConstructor;
|
14
|
+
protectAttrs: BooleanConstructor;
|
15
|
+
outletEvents: ArrayConstructor;
|
16
|
+
};
|
17
|
+
readonly matchTargets: Array<HTMLElement>;
|
18
|
+
readonly hasMatchTarget: boolean;
|
19
|
+
readonly emptyTarget: Element;
|
20
|
+
readonly hasEmptyTarget: boolean;
|
21
|
+
keywordValue: string;
|
22
|
+
change(event: Event, updateTo?: TOutletChangeData<string>): void;
|
23
|
+
getElementsToSync(): Element[] | null | undefined;
|
24
|
+
getValueForElement(element: Element): boolean;
|
25
|
+
getState(): string;
|
26
|
+
outletUpdate: (event: Event, updateTo?: TOutletChangeData<string>) => void;
|
27
|
+
}
|
@@ -0,0 +1,48 @@
|
|
1
|
+
import OutletManagerController from '../outlet_manager_controller/outlet_manager_controller';
|
2
|
+
export type TStimulusDispatchEvent<TDetails> = {
|
3
|
+
target?: Element | undefined;
|
4
|
+
detail?: TDetails | undefined;
|
5
|
+
prefix?: string | undefined;
|
6
|
+
bubbles?: boolean | undefined;
|
7
|
+
cancelable?: boolean | undefined;
|
8
|
+
preventDefault: () => void;
|
9
|
+
};
|
10
|
+
export type TBooleanValueDetail = {
|
11
|
+
value: boolean;
|
12
|
+
};
|
13
|
+
export interface TSyncAttrDetail extends TBooleanValueDetail {
|
14
|
+
attr: string;
|
15
|
+
}
|
16
|
+
export default class SyncedBooleanAttributesController<T> extends OutletManagerController<T> {
|
17
|
+
#private;
|
18
|
+
static values: {
|
19
|
+
syncedAttrs: ArrayConstructor;
|
20
|
+
antiAttrs: ArrayConstructor;
|
21
|
+
protectAttrs: BooleanConstructor;
|
22
|
+
outletEvents: ArrayConstructor;
|
23
|
+
};
|
24
|
+
readonly syncedAttrsValue: string[];
|
25
|
+
readonly hasSyncedAttrsValue: boolean;
|
26
|
+
readonly antiAttrsValue: string[];
|
27
|
+
readonly hasAntiAttrsValue: boolean;
|
28
|
+
readonly protectAttrsValue: boolean;
|
29
|
+
static removeOnFalseAttrs: {
|
30
|
+
[k: string]: boolean;
|
31
|
+
};
|
32
|
+
syncedAttrsLookup: {
|
33
|
+
[k: string]: boolean;
|
34
|
+
} | null;
|
35
|
+
antiAttrsLookup: {
|
36
|
+
[k: string]: boolean;
|
37
|
+
} | null;
|
38
|
+
getValueForElement(element: Element): boolean | null;
|
39
|
+
getElementsToSync(): Array<Element> | null | undefined;
|
40
|
+
connect(): void;
|
41
|
+
updateAttributesForElement(element: Element, value: boolean): void;
|
42
|
+
getSyncedAttrsForElement(element: Element): string[] | null;
|
43
|
+
getAntiAttrsForElement(element: Element): string[] | null;
|
44
|
+
getParsedAttributeForElement<T>(element: Element, attribute: string): T | null;
|
45
|
+
syncElementAttributes(): void;
|
46
|
+
validateAttrChange(dispatchEvent: TStimulusDispatchEvent<TSyncAttrDetail>): void;
|
47
|
+
doesElementHaveOnAttrs(element: Element): boolean;
|
48
|
+
}
|
data/app/assets/javascripts/components/ariadne/tab_container_component/tab-container-component.d.ts
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
import '@github/tab-container-element';
|
@@ -0,0 +1,9 @@
|
|
1
|
+
import { Controller } from '@hotwired/stimulus';
|
2
|
+
export default class TabNavComponent extends Controller {
|
3
|
+
static targets: string[];
|
4
|
+
readonly tabTargets: [HTMLAnchorElement];
|
5
|
+
SELECTED_CLASSES: string[];
|
6
|
+
UNSELECTED_CLASSES: string[];
|
7
|
+
connect(): void;
|
8
|
+
toggle(event: Event): void;
|
9
|
+
}
|
@@ -0,0 +1 @@
|
|
1
|
+
import '@github/time-elements';
|
data/app/assets/javascripts/components/ariadne/toggleable_controller/toggleable_controller.d.ts
ADDED
@@ -0,0 +1,34 @@
|
|
1
|
+
import type { TOutletChangeData } from '../outlet_manager_controller/outlet_manager_controller';
|
2
|
+
import SyncedBooleanAttributesController from '../synced_boolean_attributes_controller/synced_boolean_attributes_controller';
|
3
|
+
export interface ToggleableOutlet extends SyncedBooleanAttributesController<boolean> {
|
4
|
+
toggle: (event: Event, updateTo?: TOutletChangeData<boolean>) => void;
|
5
|
+
}
|
6
|
+
export default class ToggleableController extends SyncedBooleanAttributesController<boolean> implements ToggleableOutlet {
|
7
|
+
static outlets: string[];
|
8
|
+
static values: {
|
9
|
+
state: {
|
10
|
+
type: BooleanConstructor;
|
11
|
+
default: boolean;
|
12
|
+
};
|
13
|
+
closeOnOutsideClick: {
|
14
|
+
type: BooleanConstructor;
|
15
|
+
default: boolean;
|
16
|
+
};
|
17
|
+
syncedAttrs: ArrayConstructor;
|
18
|
+
antiAttrs: ArrayConstructor;
|
19
|
+
protectAttrs: BooleanConstructor;
|
20
|
+
outletEvents: ArrayConstructor;
|
21
|
+
};
|
22
|
+
stateValue: boolean;
|
23
|
+
readonly closeOnOutsideClickValue: boolean;
|
24
|
+
connect(): void;
|
25
|
+
toggle(event: Event, updateTo?: TOutletChangeData<boolean>): void;
|
26
|
+
on(event: Event): void;
|
27
|
+
off(event: Event): void;
|
28
|
+
clickOutside(event: Event): void;
|
29
|
+
getValueForElement(element: Element): boolean | null;
|
30
|
+
getElementsToSync(): Element[] | null | undefined;
|
31
|
+
getState(): boolean;
|
32
|
+
get event_key_postfix(): "on" | "off";
|
33
|
+
outletUpdate: (event: Event, updateTo?: TOutletChangeData<boolean>) => void;
|
34
|
+
}
|
@@ -0,0 +1,24 @@
|
|
1
|
+
import { Controller } from '@hotwired/stimulus';
|
2
|
+
import type { Instance, Placement } from '@popperjs/core';
|
3
|
+
export default class TooltipComponent extends Controller {
|
4
|
+
static targets: string[];
|
5
|
+
readonly triggerTarget: HTMLElement;
|
6
|
+
readonly tooltipTarget: HTMLElement;
|
7
|
+
static values: {
|
8
|
+
placement: {
|
9
|
+
type: StringConstructor;
|
10
|
+
default: string;
|
11
|
+
};
|
12
|
+
offset: {
|
13
|
+
type: ArrayConstructor;
|
14
|
+
default: number[];
|
15
|
+
};
|
16
|
+
};
|
17
|
+
readonly placementValue: Placement;
|
18
|
+
readonly offsetValue: Array<number>;
|
19
|
+
popperInstance: Instance;
|
20
|
+
connect(): void;
|
21
|
+
disconnect(): void;
|
22
|
+
show(): void;
|
23
|
+
hide(): void;
|
24
|
+
}
|
@@ -6,7 +6,6 @@ import OptionsController from './options_controller/options_controller';
|
|
6
6
|
import AccumulatorController from './accumulator_controller/accumulator_controller';
|
7
7
|
import ToggleableController from './toggleable_controller/toggleable_controller';
|
8
8
|
import ClipboardCopyComponent from './clipboard_copy_component/clipboard-copy-component';
|
9
|
-
import RichTextAreaComponent from './rich_text_area_component/rich-text-area-component';
|
10
9
|
import SlideoverComponent from './slideover_component/slideover-component';
|
11
10
|
import TabNavComponent from './tab_nav_component/tab-nav-component';
|
12
11
|
import TooltipComponent from './tooltip_component/tooltip-component';
|
@@ -15,7 +14,6 @@ import './time_ago_component/time-ago-component';
|
|
15
14
|
const application = Application.start();
|
16
15
|
application.register('clipboard-copy-component', ClipboardCopyComponent);
|
17
16
|
application.register('ariadne-form', AriadneForm);
|
18
|
-
application.register('rich-text-area-component', RichTextAreaComponent);
|
19
17
|
application.register('slideover-component', SlideoverComponent);
|
20
18
|
application.register('tab-nav-component', TabNavComponent);
|
21
19
|
application.register('tooltip-component', TooltipComponent);
|
@@ -8,7 +8,6 @@ import OptionsController from './options_controller/options_controller'
|
|
8
8
|
import AccumulatorController from './accumulator_controller/accumulator_controller'
|
9
9
|
import ToggleableController from './toggleable_controller/toggleable_controller'
|
10
10
|
import ClipboardCopyComponent from './clipboard_copy_component/clipboard-copy-component'
|
11
|
-
import RichTextAreaComponent from './rich_text_area_component/rich-text-area-component'
|
12
11
|
import SlideoverComponent from './slideover_component/slideover-component'
|
13
12
|
import TabNavComponent from './tab_nav_component/tab-nav-component'
|
14
13
|
import TooltipComponent from './tooltip_component/tooltip-component'
|
@@ -20,7 +19,6 @@ const application = Application.start()
|
|
20
19
|
|
21
20
|
application.register('clipboard-copy-component', ClipboardCopyComponent)
|
22
21
|
application.register('ariadne-form', AriadneForm)
|
23
|
-
application.register('rich-text-area-component', RichTextAreaComponent)
|
24
22
|
application.register('slideover-component', SlideoverComponent)
|
25
23
|
application.register('tab-nav-component', TabNavComponent)
|
26
24
|
application.register('tooltip-component', TooltipComponent)
|
@@ -74,11 +74,14 @@ _OptionsController_instances = new WeakSet(), _OptionsController_shouldChangeSta
|
|
74
74
|
delete copy[key];
|
75
75
|
this.activeOptionsValue = copy;
|
76
76
|
}, _OptionsController_getElementKey = function _OptionsController_getElementKey(element) {
|
77
|
-
const elementValue = element.getAttribute('data-option-value');
|
78
|
-
if (elementValue)
|
77
|
+
const elementValue = element === null || element === void 0 ? void 0 : element.getAttribute('data-option-value');
|
78
|
+
if (elementValue)
|
79
79
|
return elementValue;
|
80
|
+
const content = element === null || element === void 0 ? void 0 : element.textContent;
|
81
|
+
if (content === null) {
|
82
|
+
throw new Error(`${element.tagName} was given as an options target without a data-option-value or textContent. One must be provided to identify the target.`);
|
80
83
|
}
|
81
|
-
return
|
84
|
+
return content.trim();
|
82
85
|
};
|
83
86
|
OptionsController.outlets = SyncedBooleanAttributesController.outlets;
|
84
87
|
OptionsController.targets = ['option'];
|
@@ -96,12 +96,17 @@ export default class OptionsController
|
|
96
96
|
}
|
97
97
|
|
98
98
|
#getElementKey(element: Element) {
|
99
|
-
const elementValue = element
|
100
|
-
if (elementValue)
|
101
|
-
|
99
|
+
const elementValue = element?.getAttribute('data-option-value')
|
100
|
+
if (elementValue) return elementValue
|
101
|
+
|
102
|
+
const content = (element as HTMLElement)?.textContent
|
103
|
+
if (content === null) {
|
104
|
+
throw new Error(
|
105
|
+
`${element.tagName} was given as an options target without a data-option-value or textContent. One must be provided to identify the target.`,
|
106
|
+
)
|
102
107
|
}
|
103
108
|
|
104
|
-
return
|
109
|
+
return content.trim()
|
105
110
|
}
|
106
111
|
|
107
112
|
getValueForElement(element: Element) {
|
@@ -121,7 +121,7 @@ export default class OutletManagerController<T> extends Controller {
|
|
121
121
|
return null
|
122
122
|
}
|
123
123
|
|
124
|
-
outletUpdate(event: Event, data: TOutletChangeData<T>): void {}
|
124
|
+
outletUpdate(event: Event, data: TOutletChangeData<T>): void {} // eslint-disable-line no-unused-vars
|
125
125
|
|
126
126
|
getState(): T {
|
127
127
|
return null as T
|
data/static/audited_at.json
CHANGED
@@ -14,7 +14,6 @@
|
|
14
14
|
"Ariadne::ClipboardCopyComponent": "",
|
15
15
|
"Ariadne::CloseButtonComponent": "",
|
16
16
|
"Ariadne::ComboboxComponent": "",
|
17
|
-
"Ariadne::CommentComponent": "",
|
18
17
|
"Ariadne::ContainerComponent": "",
|
19
18
|
"Ariadne::Content": "",
|
20
19
|
"Ariadne::CounterComponent": "",
|
@@ -44,7 +43,6 @@
|
|
44
43
|
"Ariadne::PopoverComponent": "",
|
45
44
|
"Ariadne::ProgressBarComponent": "",
|
46
45
|
"Ariadne::RelativeTimeComponent": "",
|
47
|
-
"Ariadne::RichTextAreaComponent": "",
|
48
46
|
"Ariadne::ShowMoreButtonComponent": "",
|
49
47
|
"Ariadne::SlideoverComponent": "",
|
50
48
|
"Ariadne::SpinnerComponent": "",
|
data/static/constants.json
CHANGED
@@ -253,13 +253,6 @@
|
|
253
253
|
"div"
|
254
254
|
]
|
255
255
|
},
|
256
|
-
"Ariadne::CommentComponent": {
|
257
|
-
"DEFAULT_CLASSES": "ariadne-border-gray-300 ariadne-border ariadne-shadow ariadne-py-5 ariadne-px-5 ariadne-rounded-md ",
|
258
|
-
"DEFAULT_TAG": "div",
|
259
|
-
"TAG_OPTIONS": [
|
260
|
-
"div"
|
261
|
-
]
|
262
|
-
},
|
263
256
|
"Ariadne::ContainerComponent": {
|
264
257
|
"DEFAULT_CLASSES": "ariadne-px-4 sm:ariadne-px-6 lg:ariadne-px-8"
|
265
258
|
},
|
@@ -698,10 +691,6 @@
|
|
698
691
|
"span"
|
699
692
|
]
|
700
693
|
},
|
701
|
-
"Ariadne::RichTextAreaComponent": {
|
702
|
-
"DEFAULT_CLASSES": "",
|
703
|
-
"DEFAULT_TAG": "div"
|
704
|
-
},
|
705
694
|
"Ariadne::ShowMoreButtonComponent": {
|
706
695
|
"DEFAULT_ATTRIBUTES": {
|
707
696
|
"wrapper": {
|
data/static/statuses.json
CHANGED
@@ -14,7 +14,6 @@
|
|
14
14
|
"Ariadne::ClipboardCopyComponent": "stable",
|
15
15
|
"Ariadne::CloseButtonComponent": "stable",
|
16
16
|
"Ariadne::ComboboxComponent": "stable",
|
17
|
-
"Ariadne::CommentComponent": "stable",
|
18
17
|
"Ariadne::ContainerComponent": "stable",
|
19
18
|
"Ariadne::Content": "stable",
|
20
19
|
"Ariadne::CounterComponent": "stable",
|
@@ -44,7 +43,6 @@
|
|
44
43
|
"Ariadne::PopoverComponent": "stable",
|
45
44
|
"Ariadne::ProgressBarComponent": "stable",
|
46
45
|
"Ariadne::RelativeTimeComponent": "stable",
|
47
|
-
"Ariadne::RichTextAreaComponent": "stable",
|
48
46
|
"Ariadne::ShowMoreButtonComponent": "stable",
|
49
47
|
"Ariadne::SlideoverComponent": "stable",
|
50
48
|
"Ariadne::SpinnerComponent": "stable",
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ariadne_view_components
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.58
|
5
5
|
platform: x86_64-darwin
|
6
6
|
authors:
|
7
7
|
- Garen J. Torikian
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-07-
|
11
|
+
date: 2023-07-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tailwind_merge
|
@@ -112,6 +112,24 @@ files:
|
|
112
112
|
- LICENSE.txt
|
113
113
|
- README.md
|
114
114
|
- app/assets/builds/ariadne_view_components.css
|
115
|
+
- app/assets/javascripts/ariadne_view_components.js
|
116
|
+
- app/assets/javascripts/ariadne_view_components.js.map
|
117
|
+
- app/assets/javascripts/components/ariadne/accumulator_controller/accumulator_controller.d.ts
|
118
|
+
- app/assets/javascripts/components/ariadne/ariadne-form.d.ts
|
119
|
+
- app/assets/javascripts/components/ariadne/ariadne.d.ts
|
120
|
+
- app/assets/javascripts/components/ariadne/clipboard_copy_component/clipboard-copy-component.d.ts
|
121
|
+
- app/assets/javascripts/components/ariadne/dropdown/menu_component.d.ts
|
122
|
+
- app/assets/javascripts/components/ariadne/events_controller/events_controller.d.ts
|
123
|
+
- app/assets/javascripts/components/ariadne/options_controller/options_controller.d.ts
|
124
|
+
- app/assets/javascripts/components/ariadne/outlet_manager_controller/outlet_manager_controller.d.ts
|
125
|
+
- app/assets/javascripts/components/ariadne/slideover_component/slideover-component.d.ts
|
126
|
+
- app/assets/javascripts/components/ariadne/string_match_controller/string_match_controller.d.ts
|
127
|
+
- app/assets/javascripts/components/ariadne/synced_boolean_attributes_controller/synced_boolean_attributes_controller.d.ts
|
128
|
+
- app/assets/javascripts/components/ariadne/tab_container_component/tab-container-component.d.ts
|
129
|
+
- app/assets/javascripts/components/ariadne/tab_nav_component/tab-nav-component.d.ts
|
130
|
+
- app/assets/javascripts/components/ariadne/time_ago_component/time-ago-component.d.ts
|
131
|
+
- app/assets/javascripts/components/ariadne/toggleable_controller/toggleable_controller.d.ts
|
132
|
+
- app/assets/javascripts/components/ariadne/tooltip_component/tooltip-component.d.ts
|
115
133
|
- app/assets/stylesheets/ariadne_view_components.css
|
116
134
|
- app/assets/stylesheets/dropdown.css
|
117
135
|
- app/assets/stylesheets/prosemirror.css
|
@@ -154,8 +172,6 @@ files:
|
|
154
172
|
- app/components/ariadne/close_button_component.rb
|
155
173
|
- app/components/ariadne/combobox_component.html.erb
|
156
174
|
- app/components/ariadne/combobox_component.rb
|
157
|
-
- app/components/ariadne/comment_component.rb
|
158
|
-
- app/components/ariadne/comment_component/comment_component.html.erb
|
159
175
|
- app/components/ariadne/component.rb
|
160
176
|
- app/components/ariadne/container_component.rb
|
161
177
|
- app/components/ariadne/container_component/container_component.html.erb
|
@@ -214,11 +230,6 @@ files:
|
|
214
230
|
- app/components/ariadne/progress_bar_component.rb
|
215
231
|
- app/components/ariadne/relative_time_component.html.erb
|
216
232
|
- app/components/ariadne/relative_time_component.rb
|
217
|
-
- app/components/ariadne/rich_text_area_component.rb
|
218
|
-
- app/components/ariadne/rich_text_area_component/rich-text-area-component.d.ts
|
219
|
-
- app/components/ariadne/rich_text_area_component/rich-text-area-component.js
|
220
|
-
- app/components/ariadne/rich_text_area_component/rich-text-area-component.ts
|
221
|
-
- app/components/ariadne/rich_text_area_component/rich_text_area_component.html.erb
|
222
233
|
- app/components/ariadne/show_more_button_component.html.erb
|
223
234
|
- app/components/ariadne/show_more_button_component.rb
|
224
235
|
- app/components/ariadne/slideover_component.rb
|
@@ -323,7 +334,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
323
334
|
- !ruby/object:Gem::Version
|
324
335
|
version: '0'
|
325
336
|
requirements: []
|
326
|
-
rubygems_version: 3.4.
|
337
|
+
rubygems_version: 3.4.17
|
327
338
|
signing_key:
|
328
339
|
specification_version: 4
|
329
340
|
summary: ViewComponents for the Ariadne Design System
|
@@ -1,37 +0,0 @@
|
|
1
|
-
<%= render(Ariadne::BaseComponent.new(tag: @tag, classes: @classes, attributes: @attributes)) do %>
|
2
|
-
<%= render(Ariadne::TabContainerComponent.new(sr_label: @sr_label)) do |tab_container| %>
|
3
|
-
<%= tab_container.with_tab(id: public_tab.id, selected: public_tab.selected, classes: public_tab.classes, attributes: public_tab.attributes) do |tab| %>
|
4
|
-
<% tab.with_text { @public_tab_text } %>
|
5
|
-
<% tab.with_panel(attributes: {:"data-public" => true}) do %>
|
6
|
-
<%= ariadne_form_with(url: @url, method: @method, classes: @classes, attributes: @attributes) do |comment_box| %>
|
7
|
-
<% @hidden_fields.each do |name, value| %>
|
8
|
-
<%= hidden_field_tag name, value %>
|
9
|
-
<% end %>
|
10
|
-
<div class="ariadne-overflow-hidden ariadne-border ariadne-border-slate-300 ariadne-shadow-sm">
|
11
|
-
<%= hidden_field_tag 'message_is_public', true %>
|
12
|
-
<%= render(Ariadne::RichTextAreaComponent.new(name: :message_public_bodytext, sr_label: "Select reply type", attributes: { required: true})) %>
|
13
|
-
<% comment_box.submit { @submit } %>
|
14
|
-
</div>
|
15
|
-
<div class="ariadne-py-2 ariadne-flex ariadne-justify-end">
|
16
|
-
<%= public_submit %>
|
17
|
-
</div>
|
18
|
-
<% end %>
|
19
|
-
<% end %>
|
20
|
-
<% end %>
|
21
|
-
<%= tab_container.with_tab(id: internal_tab.id, selected: internal_tab.selected, classes: internal_tab.classes, attributes: internal_tab.attributes) do |tab| %>
|
22
|
-
<% tab.with_text { @internal_tab_text } %>
|
23
|
-
<% tab.with_panel do %>
|
24
|
-
<%= ariadne_form_with(url: @url, method: @method, classes: @classes, attributes: @attributes) do |comment_box| %>
|
25
|
-
<div class="ariadne-overflow-hidden ariadne-border ariadne-border-gray-300 ariadne-shadow-sm">
|
26
|
-
<%= hidden_field_tag 'message_is_public', false %>
|
27
|
-
<%= render(Ariadne::RichTextAreaComponent.new(name: :message_internal_bodytext, sr_label: "Select reply type", attributes: { required: true})) %>
|
28
|
-
<% comment_box.submit { @submit } %>
|
29
|
-
</div>
|
30
|
-
<div class="ariadne-py-2 ariadne-flex ariadne-justify-end">
|
31
|
-
<%= internal_submit %>
|
32
|
-
</div>
|
33
|
-
<% end %>
|
34
|
-
<% end %>
|
35
|
-
<% end %>
|
36
|
-
<% end %>
|
37
|
-
<% end %>
|